From 2b9de790a8cac64e26d620a79b305509affff7e5 Mon Sep 17 00:00:00 2001 From: Jochen Schmitt Date: Wed, 25 Aug 2010 11:19:09 +0200 Subject: [PATCH 001/318] - Rebuild for python-2.7 --- abrt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index c177aa0..22e95fd 100644 --- a/abrt.spec +++ b/abrt.spec @@ -13,9 +13,9 @@ # % define _buildid .local %if 0%{?_buildid} -%define pkg_release 0.%{?_buildid}%{?dist} +%define ?pkg_release 2%{?_buildid}%{?dist} %else -%define pkg_release 1%{?dist} +%define pkg_release 2%{?dist} %endif Summary: Automatic bug detection and reporting tool @@ -496,6 +496,9 @@ fi %defattr(-,root,root,-) %changelog +* Wed Aug 25 2010 Jochen Schmitt 1.1.13-2%{?dist} +- Rebuild for python-2.7 + * Tue Aug 10 2010 Jiri Moskovcak 1.1.13-1 - updated translation - added native systemd file rhbz#617316 (jmoskovc@redhat.com) From 07731c3737265792acde8b7b199579e51b319647 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 10 Nov 2010 19:28:22 +0100 Subject: [PATCH 002/318] fix applet to build with libnotify 0.7 --- abrt.spec | 11 ++++++++--- libnotify_07.patch | 11 +++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 libnotify_07.patch diff --git a/abrt.spec b/abrt.spec index 22e95fd..b931e17 100644 --- a/abrt.spec +++ b/abrt.spec @@ -12,10 +12,10 @@ # # % define _buildid .local -%if 0%{?_buildid} -%define ?pkg_release 2%{?_buildid}%{?dist} +%if "0%{?_buildid}" != "0" +%define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 2%{?dist} +%define pkg_release 3%{?dist} %endif Summary: Automatic bug detection and reporting tool @@ -31,6 +31,7 @@ Patch0: abrt-1.0.9-hideprefs.patch Patch1: abrt_disable_gpgcheck.diff Patch2: blacklist.patch Patch3: polkit.patch +Patch4: libnotify_07.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -242,6 +243,7 @@ Virtual package to make easy default installation on desktop environments. # general patches %patch2 -p1 -b .blacklist_mono %patch3 -p1 -b .polkit +%patch4 -p1 -b .libnotify07 %build %configure @@ -496,6 +498,9 @@ fi %defattr(-,root,root,-) %changelog +* Wed Nov 10 2010 Jiri Moskovcak 1.1.13-3 +- Rebuild for libnotify-0.7 + * Wed Aug 25 2010 Jochen Schmitt 1.1.13-2%{?dist} - Rebuild for python-2.7 diff --git a/libnotify_07.patch b/libnotify_07.patch new file mode 100644 index 0000000..9c1ff04 --- /dev/null +++ b/libnotify_07.patch @@ -0,0 +1,11 @@ +--- abrt-1.1.13/src/Applet/CCApplet.cpp 2010-08-02 15:12:39.000000000 +0200 ++++ abrt-1.1.13_/src/Applet/CCApplet.cpp 2010-11-10 19:02:04.131162987 +0100 +@@ -36,7 +36,7 @@ + static NotifyNotification *new_warn_notification() + { + NotifyNotification *notification; +- notification = notify_notification_new(_("Warning"), NULL, NULL, NULL); ++ notification = notify_notification_new(_("Warning"), NULL, NULL); + g_signal_connect(notification, "closed", G_CALLBACK(on_notify_close), NULL); + + GdkPixbuf *pixbuf = gtk_icon_theme_load_icon(gtk_icon_theme_get_default(), From 4b61da1ad02ad2e9f1e361437384ac882e8a17e3 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 17 Nov 2010 19:59:08 +0100 Subject: [PATCH 003/318] update to 1.1.14 --- .gitignore | 1 + abrt.spec | 19 ++++++++++++++----- sources | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 7e7694e..0cd6ac5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ abrt-1.1.10.tar.gz abrt-1.1.13.tar.gz +/abrt-1.1.14.tar.gz diff --git a/abrt.spec b/abrt.spec index b931e17..f608cc4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,12 +15,12 @@ %if "0%{?_buildid}" != "0" %define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 3%{?dist} +%define pkg_release 1%{?dist} %endif Summary: Automatic bug detection and reporting tool Name: abrt -Version: 1.1.13 +Version: 1.1.14 Release: %{?pkg_release} License: GPLv2+ Group: Applications/System @@ -30,7 +30,6 @@ Source1: abrt.init Patch0: abrt-1.0.9-hideprefs.patch Patch1: abrt_disable_gpgcheck.diff Patch2: blacklist.patch -Patch3: polkit.patch Patch4: libnotify_07.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel @@ -38,7 +37,6 @@ BuildRequires: curl-devel BuildRequires: rpm-devel >= 4.6 BuildRequires: sqlite-devel > 3.0 BuildRequires: desktop-file-utils -#BuildRequires: nss-devel BuildRequires: libnotify-devel BuildRequires: xmlrpc-c-devel BuildRequires: xmlrpc-c-client @@ -242,7 +240,6 @@ Virtual package to make easy default installation on desktop environments. %patch1 -p1 -b .disable_gpg_check # general patches %patch2 -p1 -b .blacklist_mono -%patch3 -p1 -b .polkit %patch4 -p1 -b .libnotify07 %build @@ -498,6 +495,18 @@ fi %defattr(-,root,root,-) %changelog +* Wed Nov 17 2010 Jiri Moskovcak 1.1.14-1 +- made howto mandatory +- fixed segv in abrt-hook-ccpp rhbz#652338 +- added warning if kernel was tainted +- make the "install debuginfo" hint selectable rhbz#644343 +- wrap howto and comments rhbz#625237 +- wrap lines in the backtrace window rhbz#625232 +- changed '*' to '•' rhbz#625236 +- make the bt viewer not-editable rhbz#621871 +- removed unneeded patches + + * Wed Nov 10 2010 Jiri Moskovcak 1.1.13-3 - Rebuild for libnotify-0.7 diff --git a/sources b/sources index f654f69..b358154 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9ec49694174ae692ac4d42475649425b abrt-1.1.13.tar.gz +4bde3133efe28e929ce3dd24ee682955 abrt-1.1.14.tar.gz From a7fad6a9958de0b6b7ab43125021d6d2765501f8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 19 Jan 2011 07:42:50 -0500 Subject: [PATCH 004/318] Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index f608cc4..2eb86e4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,7 +15,7 @@ %if "0%{?_buildid}" != "0" %define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 1%{?dist} +%define pkg_release 2%{?dist} %endif Summary: Automatic bug detection and reporting tool @@ -495,6 +495,9 @@ fi %defattr(-,root,root,-) %changelog +* Wed Jan 19 2011 Matthias Clasen 1.1.14-2 +- Rebuild against new rpm + * Wed Nov 17 2010 Jiri Moskovcak 1.1.14-1 - made howto mandatory - fixed segv in abrt-hook-ccpp rhbz#652338 From 0411cb81fe52cd09e07a6e9497b2a1b76435c54a Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 19 Jan 2011 18:20:40 +0100 Subject: [PATCH 005/318] fixed build with rpm 4.9 --- abrt.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 2eb86e4..59a5032 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,7 +15,7 @@ %if "0%{?_buildid}" != "0" %define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 2%{?dist} +%define pkg_release 3%{?dist} %endif Summary: Automatic bug detection and reporting tool @@ -31,6 +31,7 @@ Patch0: abrt-1.0.9-hideprefs.patch Patch1: abrt_disable_gpgcheck.diff Patch2: blacklist.patch Patch4: libnotify_07.patch +Patch5: abrt-1.1.14-rpm-digestalgo.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -241,6 +242,7 @@ Virtual package to make easy default installation on desktop environments. # general patches %patch2 -p1 -b .blacklist_mono %patch4 -p1 -b .libnotify07 +%patch5 -p1 -b .rpm49 %build %configure @@ -495,6 +497,9 @@ fi %defattr(-,root,root,-) %changelog +* Wed Jan 19 2011 Jiri Moskovcak 1.1.14-3 +- fixed build with rpm 4.9 (thx panu pmatilai for the patch) + * Wed Jan 19 2011 Matthias Clasen 1.1.14-2 - Rebuild against new rpm From 4a5a3ac6b44ad1f2c3f93befe22ec5dcd6493680 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 19 Jan 2011 18:38:49 +0100 Subject: [PATCH 006/318] added patch to build with rpm 4.9 --- abrt-1.1.14-rpm-digestalgo.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 abrt-1.1.14-rpm-digestalgo.patch diff --git a/abrt-1.1.14-rpm-digestalgo.patch b/abrt-1.1.14-rpm-digestalgo.patch new file mode 100644 index 0000000..d8560ff --- /dev/null +++ b/abrt-1.1.14-rpm-digestalgo.patch @@ -0,0 +1,22 @@ +diff -up abrt-1.1.14/src/Daemon/RPM.cpp.rpm49-hashalgo abrt-1.1.14/src/Daemon/RPM.cpp +--- abrt-1.1.14/src/Daemon/RPM.cpp.rpm49-hashalgo 2010-11-15 14:46:06.000000000 +0200 ++++ abrt-1.1.14/src/Daemon/RPM.cpp 2011-01-18 10:57:57.000000000 +0200 +@@ -112,7 +112,6 @@ bool CheckHash(const char* pPackage, con + if (header != NULL) + { + rpmfi fi = rpmfiNew(ts, header, RPMTAG_BASENAMES, RPMFI_NOHEADER); +- pgpHashAlgo hashAlgo; + std::string headerHash; + char computedHash[1024] = ""; + +@@ -120,8 +119,8 @@ bool CheckHash(const char* pPackage, con + { + if (strcmp(pPath, rpmfiFN(fi)) == 0) + { +- headerHash = rpmfiFDigestHex(fi, &hashAlgo); +- rpmDoDigest(hashAlgo, pPath, 1, (unsigned char*) computedHash, NULL); ++ headerHash = rpmfiFDigestHex(fi, NULL); ++ rpmDoDigest(rpmfiDigestAlgo(fi), pPath, 1, (unsigned char*) computedHash, NULL); + ret = (headerHash != "" && headerHash == computedHash); + break; + } From 775393942e5b198d64d7f593439f5d6763ca0d5a Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Sun, 6 Feb 2011 19:34:27 +0100 Subject: [PATCH 007/318] update to 1.1.17 --- .gitignore | 1 + abrt-1.1.14-rpm-digestalgo.patch | 22 ------- abrt.spec | 50 +++++++++++---- libnotify_07.patch | 11 ---- polkit.patch | 104 ------------------------------- sources | 2 +- 6 files changed, 40 insertions(+), 150 deletions(-) delete mode 100644 abrt-1.1.14-rpm-digestalgo.patch delete mode 100644 libnotify_07.patch delete mode 100644 polkit.patch diff --git a/.gitignore b/.gitignore index 0cd6ac5..d41aa06 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ abrt-1.1.10.tar.gz abrt-1.1.13.tar.gz /abrt-1.1.14.tar.gz +/abrt-1.1.17.tar.gz diff --git a/abrt-1.1.14-rpm-digestalgo.patch b/abrt-1.1.14-rpm-digestalgo.patch deleted file mode 100644 index d8560ff..0000000 --- a/abrt-1.1.14-rpm-digestalgo.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -up abrt-1.1.14/src/Daemon/RPM.cpp.rpm49-hashalgo abrt-1.1.14/src/Daemon/RPM.cpp ---- abrt-1.1.14/src/Daemon/RPM.cpp.rpm49-hashalgo 2010-11-15 14:46:06.000000000 +0200 -+++ abrt-1.1.14/src/Daemon/RPM.cpp 2011-01-18 10:57:57.000000000 +0200 -@@ -112,7 +112,6 @@ bool CheckHash(const char* pPackage, con - if (header != NULL) - { - rpmfi fi = rpmfiNew(ts, header, RPMTAG_BASENAMES, RPMFI_NOHEADER); -- pgpHashAlgo hashAlgo; - std::string headerHash; - char computedHash[1024] = ""; - -@@ -120,8 +119,8 @@ bool CheckHash(const char* pPackage, con - { - if (strcmp(pPath, rpmfiFN(fi)) == 0) - { -- headerHash = rpmfiFDigestHex(fi, &hashAlgo); -- rpmDoDigest(hashAlgo, pPath, 1, (unsigned char*) computedHash, NULL); -+ headerHash = rpmfiFDigestHex(fi, NULL); -+ rpmDoDigest(rpmfiDigestAlgo(fi), pPath, 1, (unsigned char*) computedHash, NULL); - ret = (headerHash != "" && headerHash == computedHash); - break; - } diff --git a/abrt.spec b/abrt.spec index 59a5032..ac75762 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,12 +15,12 @@ %if "0%{?_buildid}" != "0" %define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 3%{?dist} +%define pkg_release 1%{?dist} %endif Summary: Automatic bug detection and reporting tool Name: abrt -Version: 1.1.14 +Version: 1.1.17 Release: %{?pkg_release} License: GPLv2+ Group: Applications/System @@ -30,8 +30,6 @@ Source1: abrt.init Patch0: abrt-1.0.9-hideprefs.patch Patch1: abrt_disable_gpgcheck.diff Patch2: blacklist.patch -Patch4: libnotify_07.patch -Patch5: abrt-1.1.14-rpm-digestalgo.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -241,8 +239,6 @@ Virtual package to make easy default installation on desktop environments. %patch1 -p1 -b .disable_gpg_check # general patches %patch2 -p1 -b .blacklist_mono -%patch4 -p1 -b .libnotify07 -%patch5 -p1 -b .rpm49 %build %configure @@ -283,8 +279,10 @@ desktop-file-install \ rm -rf $RPM_BUILD_ROOT %pre -getent group abrt >/dev/null || groupadd -f --system abrt -getent passwd abrt >/dev/null || useradd --system -g abrt -d /etc/abrt -s /sbin/nologin abrt +#uidgid pair 173:173 reserved in setup rhbz#670231 +%define abrt_gid_uid 173 +getent group abrt >/dev/null || groupadd -f -g %{abrt_gid_uid} --system abrt +getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d /etc/abrt -s /sbin/nologin abrt exit 0 %post @@ -360,7 +358,6 @@ fi %{_sbindir}/%{name}d %{_bindir}/%{name}-debuginfo-install %{_bindir}/%{name}-handle-upload -%{_bindir}/%{name}-backtrace %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-%{name}.conf @@ -373,7 +370,6 @@ fi %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins %dir %{_libdir}/%{name} -%{_mandir}/man1/%{name}-backtrace.1.gz %{_mandir}/man8/abrtd.8.gz %{_mandir}/man5/%{name}.conf.5.gz #%{_mandir}/man5/pyhook.conf.5.gz @@ -497,6 +493,37 @@ fi %defattr(-,root,root,-) %changelog +* Sat Feb 05 2011 Jiri Moskovcak 1.1.17-1 +- rewritten abrt-debuginfo-install script to use the yum API +- GUI: added search box to backtrace view rhbz#612017 (jmoskovc@redhat.com) +- fixed some gui warnings rhbz#671488 (jmoskovc@redhat.com) +- btparser/dupechecker improvements: + - Better handling of glibc architecture-specific functions (kklic@redhat.com) + - support format of thread header: "Thread 8 (LWP 6357):" (kklic@redhat.com) + +* Fri Feb 04 2011 Jiri Moskovcak 1.1.16-1 +- rhtsupport: added list of attachments to comment rhbz#668875 +- rhtsupport: stop consuming non-standard header rhbz#670492 +- Resolves: #670492, #668875 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-2 +- add a gui/uid to useradd/groupadd command (reserved in setup rhbz#670231) +- Resolves: #650975 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-1 +- removed unused files (jmoskovc@redhat.com) +- update po files (jmoskovc@redhat.com) +- removed some unused files (jmoskovc@redhat.com) +- pass old pattern to ccpp hook and use it (dvlasenk@redhat.com) +- GUI: added warning when gnome-keyring can't be accessed rhbz#576866 (jmoskovc@redhat.com) +- 666893 - Unable to make sense of XML-RPC response from server (npajkovs@redhat.com) +- PyHook: ignore SystemExit exception rhbz#636913 (jmoskovc@redhat.com) +- 665405 - ABRT's usage of sos does not grab /var/log/messages (npajkovs@redhat.com) +- add a note in report if kernel is tainted (npajkovs@redhat.com) +- KerneloopsScanner.cpp: make a room for NULL byte (npajkovs@redhat.com) +- fix multicharacter warring (npajkovs@redhat.com) +- open help page instead of about rhbz#666267 + * Wed Jan 19 2011 Jiri Moskovcak 1.1.14-3 - fixed build with rpm 4.9 (thx panu pmatilai for the patch) @@ -514,11 +541,10 @@ fi - make the bt viewer not-editable rhbz#621871 - removed unneeded patches - * Wed Nov 10 2010 Jiri Moskovcak 1.1.13-3 - Rebuild for libnotify-0.7 -* Wed Aug 25 2010 Jochen Schmitt 1.1.13-2%{?dist} +* Wed Aug 25 2010 Jochen Schmitt 1.1.13-2 - Rebuild for python-2.7 * Tue Aug 10 2010 Jiri Moskovcak 1.1.13-1 diff --git a/libnotify_07.patch b/libnotify_07.patch deleted file mode 100644 index 9c1ff04..0000000 --- a/libnotify_07.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- abrt-1.1.13/src/Applet/CCApplet.cpp 2010-08-02 15:12:39.000000000 +0200 -+++ abrt-1.1.13_/src/Applet/CCApplet.cpp 2010-11-10 19:02:04.131162987 +0100 -@@ -36,7 +36,7 @@ - static NotifyNotification *new_warn_notification() - { - NotifyNotification *notification; -- notification = notify_notification_new(_("Warning"), NULL, NULL, NULL); -+ notification = notify_notification_new(_("Warning"), NULL, NULL); - g_signal_connect(notification, "closed", G_CALLBACK(on_notify_close), NULL); - - GdkPixbuf *pixbuf = gtk_icon_theme_load_icon(gtk_icon_theme_get_default(), diff --git a/polkit.patch b/polkit.patch deleted file mode 100644 index ebabe4a..0000000 --- a/polkit.patch +++ /dev/null @@ -1,104 +0,0 @@ -diff -urp abrt-1.1.13/lib/Plugins/CCpp.cpp abrt-1.1.13_nopolkit/lib/Plugins/CCpp.cpp ---- abrt-1.1.13/lib/Plugins/CCpp.cpp 2010-07-28 15:35:14.000000000 +0200 -+++ abrt-1.1.13_nopolkit/lib/Plugins/CCpp.cpp 2010-08-10 15:21:18.569491108 +0200 -@@ -28,7 +28,9 @@ - #include "abrt_exception.h" - #include "debug_dump.h" - #include "comm_layer_inner.h" --#include "Polkit.h" -+#if 0 -+ #include "Polkit.h" -+#endif - #include "backtrace.h" - #include "CCpp_sha1.h" - -@@ -675,7 +677,7 @@ string CAnalyzerCCpp::GetGlobalUUID(cons - return create_hash(hash_base.c_str()); - } - } -- -+#if 0 - static bool DebuginfoCheckPolkit(uid_t uid) - { - fflush(NULL); -@@ -704,6 +706,7 @@ static bool DebuginfoCheckPolkit(uid_t u - log("UID %d is not authorized to install debuginfos", uid); - return false; - } -+#endif - - void CAnalyzerCCpp::CreateReport(const char *pDebugDumpDir, int force) - { -@@ -738,7 +741,7 @@ void CAnalyzerCCpp::CreateReport(const c - dd.Close(); /* do not keep dir locked longer than needed */ - - string build_ids; -- if (m_bInstallDebugInfo && DebuginfoCheckPolkit(xatoi_u(UID.c_str()))) -+ if (m_bInstallDebugInfo) - { - if (m_nDebugInfoCacheMB > 0) - trim_debuginfo_cache(m_nDebugInfoCacheMB); -diff -urp abrt-1.1.13/lib/Utils/Makefile.am abrt-1.1.13_nopolkit/lib/Utils/Makefile.am ---- abrt-1.1.13/lib/Utils/Makefile.am 2010-08-04 17:15:16.000000000 +0200 -+++ abrt-1.1.13_nopolkit/lib/Utils/Makefile.am 2010-08-10 14:54:21.779492300 +0200 -@@ -56,8 +56,7 @@ libABRTdUtils_la_SOURCES = \ - $(HEADER_DIR)/abrt_xmlrpc.h abrt_xmlrpc.cpp \ - abrt_rh_support.h abrt_rh_support.cpp \ - abrt_curl.h abrt_curl.cpp \ -- $(HEADER_DIR)/plugin.h Plugin.cpp \ -- Polkit.h Polkit.cpp -+ $(HEADER_DIR)/plugin.h Plugin.cpp - - libABRTdUtils_la_CPPFLAGS = \ - -Wall -Werror \ -Only in abrt-1.1.13/: po -diff -urp abrt-1.1.13/src/Daemon/PluginManager.cpp abrt-1.1.13_nopolkit/src/Daemon/PluginManager.cpp ---- abrt-1.1.13/src/Daemon/PluginManager.cpp 2010-07-19 17:44:32.000000000 +0200 -+++ abrt-1.1.13_nopolkit/src/Daemon/PluginManager.cpp 2010-08-10 15:20:18.288241242 +0200 -@@ -22,7 +22,9 @@ - #include "abrtlib.h" - #include "abrt_exception.h" - #include "comm_layer_inner.h" --#include "Polkit.h" -+#ifdef PLUGIN_DYNAMIC_LOAD_UNLOAD -+ #include "Polkit.h" -+#endif - #include "PluginManager.h" - - using namespace std; -diff -urp abrt-1.1.13/src/Daemon/Settings.cpp abrt-1.1.13_nopolkit/src/Daemon/Settings.cpp ---- abrt-1.1.13/src/Daemon/Settings.cpp 2010-07-22 14:07:45.000000000 +0200 -+++ abrt-1.1.13_nopolkit/src/Daemon/Settings.cpp 2010-08-10 15:20:18.293241459 +0200 -@@ -19,7 +19,10 @@ - #include "Settings.h" - #include "abrtlib.h" - #include "abrt_types.h" --#include "Polkit.h" -+ -+#if 0 -+ #include "Polkit.h" -+#endif - - #define SECTION_COMMON "Common" - #define SECTION_ANALYZER_ACTIONS_AND_REPORTERS "AnalyzerActionsAndReporters" -@@ -525,10 +528,10 @@ map_abrt_settings_t GetSettings() - - return ABRTSettings; - } -- - /* dbus call to change some .conf file data */ - void SetSettings(const map_abrt_settings_t& pSettings, const char *dbus_sender) - { -+#if 0 - int polkit_result; - - polkit_result = polkit_check_authorization(dbus_sender, -@@ -539,7 +542,7 @@ void SetSettings(const map_abrt_settings - return; - } - log("user %s succesfully authorized", dbus_sender); -- -+#endif - map_abrt_settings_t::const_iterator it = pSettings.find(SECTION_COMMON); - map_abrt_settings_t::const_iterator end = pSettings.end(); - if (it != end) diff --git a/sources b/sources index b358154..3ac8690 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4bde3133efe28e929ce3dd24ee682955 abrt-1.1.14.tar.gz +71e8ff8bc5616a44ac38d07365b68452 abrt-1.1.17.tar.gz From c54f20c8679be5f38447387236c1b0c455a4d249 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 18:11:08 -0600 Subject: [PATCH 008/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ac75762..417db01 100644 --- a/abrt.spec +++ b/abrt.spec @@ -21,7 +21,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 1.1.17 -Release: %{?pkg_release} +Release: %{?pkg_release}.1 License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -493,6 +493,9 @@ fi %defattr(-,root,root,-) %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.1.17-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sat Feb 05 2011 Jiri Moskovcak 1.1.17-1 - rewritten abrt-debuginfo-install script to use the yum API - GUI: added search box to backtrace view rhbz#612017 (jmoskovc@redhat.com) From 2c2eaf0026ea7e55eb83e64e9ed28686152782ec Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 18 Feb 2011 10:11:34 +0100 Subject: [PATCH 009/318] removed gnome-python2-vfs dependency --- abrt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index ac75762..6bc19ac 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,7 +15,7 @@ %if "0%{?_buildid}" != "0" %define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 1%{?dist} +%define pkg_release 2%{?dist} %endif Summary: Automatic bug detection and reporting tool @@ -80,7 +80,7 @@ Summary: %{name}'s gui Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: dbus-python, pygtk2, pygtk2-libglade, -Requires: gnome-python2-gnomevfs, gnome-python2-gnomekeyring +Requires: gnome-python2-gnomekeyring # only if gtk2 version < 2.17: #Requires: python-sexy # we used to have abrt-applet, now abrt-gui includes it: @@ -493,6 +493,9 @@ fi %defattr(-,root,root,-) %changelog +* Fri Feb 18 2011 Jiri Moskovcak 1.1.17-2 +- removed gnome-python2-vfs dependency + * Sat Feb 05 2011 Jiri Moskovcak 1.1.17-1 - rewritten abrt-debuginfo-install script to use the yum API - GUI: added search box to backtrace view rhbz#612017 (jmoskovc@redhat.com) From 3a42d823cc3a157a54add40335f8d0b6f96b5aa5 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 21 Apr 2011 18:24:33 +0200 Subject: [PATCH 010/318] update to 2.0.0 Conflicts: abrt.spec --- .gitignore | 1 + abrt-ccpp.init | 151 +++++++++++++ abrt.spec | 398 +++++++++++++++++++++------------- remove_libreport_python.patch | 6 + settings_warning.patch | 22 ++ sources | 2 +- 6 files changed, 423 insertions(+), 157 deletions(-) create mode 100644 abrt-ccpp.init create mode 100644 remove_libreport_python.patch create mode 100644 settings_warning.patch diff --git a/.gitignore b/.gitignore index d41aa06..fd245ec 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ abrt-1.1.10.tar.gz abrt-1.1.13.tar.gz /abrt-1.1.14.tar.gz /abrt-1.1.17.tar.gz +/abrt-2.0.0.tar.gz diff --git a/abrt-ccpp.init b/abrt-ccpp.init new file mode 100644 index 0000000..480cb1e --- /dev/null +++ b/abrt-ccpp.init @@ -0,0 +1,151 @@ +#!/bin/bash +# Install abrt coredump hook +# +# chkconfig: 35 82 16 +# description: Installs coredump handler which saves segfault data +### BEGIN INIT INFO +# Provides: abrt-ccpp +# Required-Start: $abrtd +# Default-Stop: 0 1 2 6 +# Default-Start: 3 5 +# Short-Description: Installs coredump handler which saves segfault data +# Description: Installs coredump handler which saves segfault data +### END INIT INFO + +# Source function library. +. /etc/rc.d/init.d/functions + +# For debugging +dry_run=false +verbose=false + +# We don't have pid files, therefore have to use +# a flag file in /var/lock/subsys to enable GUI service tools +# to figure out our status +LOCK="/var/lock/subsys/abrt-ccpp" + +PATTERN_FILE="/proc/sys/kernel/core_pattern" +SAVED_PATTERN_FILE="/var/run/abrt/saved_core_pattern" +HOOK_BIN="/usr/libexec/abrt-hook-ccpp" +PATTERN="|$HOOK_BIN /var/spool/abrt %s %c %p %u %g %t %h %e" + +# core_pipe_limit specifies how many dump_helpers can run at the same time +# 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +# process will be available for dump_helper. +# 4 - means that 4 dump_helpers can run at the same time (the rest will also +# run, but they will fail to read /proc/). +# +# This should be enough for ABRT, we can miss some crashes, but what are +# the odds that more processes crash at the same time? And moreover, +# do people want to save EVERY ONE of the crashes when they have +# a crash storm? I don't think so. +# The value of 4 has been recommended by nhorman. +# +CORE_PIPE_LIMIT_FILE="/proc/sys/kernel/core_pipe_limit" +CORE_PIPE_LIMIT="4" + +RETVAL=0 + +check() { + # Check that we're a privileged user + [ "`id -u`" = 0 ] || exit 4 +} + +start() { + check + + cur=`cat "$PATTERN_FILE"` + cur_first=`printf "%s" "$cur" | sed 's/ .*//'` + + $verbose && printf "cur:'%s'\n" "$cur" + # Is it already installed? + if test x"$cur_first" != x"|$HOOK_BIN"; then # no + # It is not installed + printf "%s\n" "$cur" >"$SAVED_PATTERN_FILE" + OLD_PATTERN="" + # Does old pattern start with '|'? + if test x"${cur#|}" = x"$cur"; then # no + # Encode it as hex string, NUL terminated + OLD_PATTERN=`printf "%s" "$cur" | od -tx1 | sed 's/000[^ ]*//' | xargs | sed 's/ //g'` + $verbose && printf "OLD_PATTERN:'%s'\n" "$OLD_PATTERN" + OLD_PATTERN=" ${OLD_PATTERN}00" + fi + # Install new handler + $verbose && printf "Installing to %s:'%s'\n" "$PATTERN_FILE" "${PATTERN}${OLD_PATTERN}" + $dry_run || echo "${PATTERN}${OLD_PATTERN}" >"$PATTERN_FILE" + $dry_run || touch -- "$LOCK" + + # Check core_pipe_limit and change it if it's 0, + # otherwise the abrt-hook-ccpp won't be able to read /proc/ + # of the crashing process + if test x"`cat "$CORE_PIPE_LIMIT_FILE"`" = x"0"; then + echo "$CORE_PIPE_LIMIT" >"$CORE_PIPE_LIMIT_FILE" + fi + fi + return $RETVAL +} + +stop() { + check + + if test -f "$SAVED_PATTERN_FILE"; then + $verbose && printf "Restoring to %s:'%s'\n" "$PATTERN_FILE" "`cat "$SAVED_PATTERN_FILE"`" + $dry_run || cat "$SAVED_PATTERN_FILE" >"$PATTERN_FILE" + fi + $dry_run || rm -f -- "$LOCK" + return $RETVAL +} + +restart() { + stop + start +} + +reload() { + restart +} + +case "$1" in +start) + start + ;; +stop) + stop + ;; +reload) + reload + ;; +force-reload) + echo "$0: Unimplemented feature." + RETVAL=3 + ;; +restart) + restart + ;; +condrestart) + cur=`cat "$PATTERN_FILE"` + cur_first=`printf "%s" "$cur" | sed 's/ .*//'` + # Is it already installed? + if test x"$cur_first" = x"|$HOOK_BIN"; then # yes + $verbose && printf "Installed, re-installing\n" + restart + fi + ;; +status) + cur=`cat "$PATTERN_FILE"` + cur_first=`printf "%s" "$cur" | sed 's/ .*//'` + # Is it already installed? + if test x"$cur_first" = x"|$HOOK_BIN"; then # yes + $verbose && printf "Installed\n" + RETVAL=0 + else + $verbose && printf "Not installed\n" + RETVAL=3 # "stopped normally" + fi + ;; +*) + echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload}" + RETVAL=2 +esac + +exit $RETVAL diff --git a/abrt.spec b/abrt.spec index bd87f0f..58da316 100644 --- a/abrt.spec +++ b/abrt.spec @@ -6,60 +6,103 @@ %else %define with_systemd 0 %endif + # please modify the "_buildid" define in a way that identifies # that the built package isn't the stock distribution package, -# for example, by setting the define to ".local" or ".bz123456" +# for example, by setting abbreviation sha1 hash "238f49f" # -# % define _buildid .local +# % define _buildid git238f49f %if "0%{?_buildid}" != "0" %define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 2%{?dist} +%define pkg_release 1%{?dist} %endif Summary: Automatic bug detection and reporting tool Name: abrt -Version: 1.1.17 +Version: 2.0.0 Release: %{?pkg_release} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt.init -Patch0: abrt-1.0.9-hideprefs.patch -Patch1: abrt_disable_gpgcheck.diff -Patch2: blacklist.patch +Source2: abrt-ccpp.init +Patch0: remove_libreport_python.patch +Patch1: settings_warning.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel BuildRequires: rpm-devel >= 4.6 -BuildRequires: sqlite-devel > 3.0 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel BuildRequires: xmlrpc-c-devel -BuildRequires: xmlrpc-c-client BuildRequires: file-devel BuildRequires: python-devel BuildRequires: gettext BuildRequires: libxml2-devel -BuildRequires: polkit-devel -BuildRequires: libtar-devel, bzip2-devel, zlib-devel +BuildRequires: libtar-devel BuildRequires: intltool -BuildRequires: bison +BuildRequires: libtool +BuildRequires: nss-devel +BuildRequires: texinfo + +# for rhel6 +%if 0%{?rhel} >= 6 +BuildRequires: gnome-keyring-devel +%else +BuildRequires: libgnome-keyring-devel +%endif + %if %{?with_systemd} Requires: systemd-units %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} +Requires: libreport Requires(pre): shadow-utils -Obsoletes: abrt-plugin-sqlite3 +Obsoletes: abrt-plugin-sqlite3 > 0.0.1 +# required for transition from 1.1.13, can be removed after some time +Obsoletes: abrt-plugin-runapp > 0.0.1 +Obsoletes: abrt-plugin-filetransfer > 0.0.1 +Obsoletes: abrt-plugin-sosreport > 0.0.1 %description %{name} is a tool to help users to detect defects in applications and to create a bug report with all informations needed by maintainer to fix it. It uses plugin system to extend its functionality. +%package -n libreport +Summary: Libraries for reporting crashes to different targets. +Group: System Environment/Libraries + +%description -n libreport +Libraries providing API for reporting different problems in applications +to different bug targets like bugzilla, ftp, trac, etc... + +%package -n libreport-devel +Summary: Development libraries and headers for libreport. +Group: Development/Libraries + +%description -n libreport-devel +Development libraries and headers for libreport. + +#%package -n libreport-python +#Summary: Python bindings for report-libs. +## Is group correct here? - +#Group: System Environment/Libraries + +#%description -n libreport-python +#Python bindings for report-libs. + +%package -n libreport-gtk +Summary: GTK frontend for libreport +Group: User Interface/Desktops + +%description -n libreport-gtk +Applications for reporting bugs using libreport backend. + %package libs Summary: Libraries for %{name} Group: System Environment/Libraries @@ -70,7 +113,7 @@ Libraries for %{name}. %package devel Summary: Development libraries for %{name} Group: Development/Libraries -Requires: %{name}-libs = %{version}-%{release} +Requires: abrt-libs = %{version}-%{release} %description devel Development libraries and headers for %{name}. @@ -79,10 +122,7 @@ Development libraries and headers for %{name}. Summary: %{name}'s gui Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} -Requires: dbus-python, pygtk2, pygtk2-libglade, -Requires: gnome-python2-gnomekeyring -# only if gtk2 version < 2.17: -#Requires: python-sexy +Requires: libreport-gtk # we used to have abrt-applet, now abrt-gui includes it: Provides: abrt-applet = %{version}-%{release} Obsoletes: abrt-applet < 0.0.5 @@ -94,8 +134,7 @@ GTK+ wizard for convenient bug reporting. %package addon-ccpp Summary: %{name}'s C/C++ addon Group: System Environment/Libraries -Requires: elfutils -Requires: yum-utils +Requires: elfutils, cpio Requires: %{name} = %{version}-%{release} %description addon-ccpp @@ -107,9 +146,9 @@ Summary: %{name}'s kerneloops addon Group: System Environment/Libraries Requires: curl Requires: %{name} = %{version}-%{release} -Obsoletes: kerneloops -Obsoletes: abrt-plugin-kerneloops -Obsoletes: abrt-plugin-kerneloopsreporter +Obsoletes: kerneloops > 0.0.1 +Obsoletes: abrt-plugin-kerneloops > 0.0.1 +Obsoletes: abrt-plugin-kerneloopsreporter > 0.0.1 %description addon-kerneloops This package contains plugin for collecting kernel crash information @@ -134,23 +173,6 @@ Requires: mailx The simple reporter plugin which sends a report via mailx to a specified email address. -%package plugin-runapp -Summary: %{name}'s runapp plugin -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} - -%description plugin-runapp -Plugin to run external programs. - -%package plugin-sosreport -Summary: %{name}'s sosreport plugin -Group: System Environment/Libraries -Requires: sos -Requires: %{name} = %{version}-%{release} - -%description plugin-sosreport -Plugin to include an sosreport in an abrt report. - %package plugin-bugzilla Summary: %{name}'s bugzilla plugin Group: System Environment/Libraries @@ -163,9 +185,9 @@ Plugin to report bugs into the bugzilla. Summary: %{name}'s RHTSupport plugin Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -Obsoletes: abrt-plugin-catcut -Obsoletes: abrt-plugin-rhfastcheck -Obsoletes: abrt-plugin-rhticket +Obsoletes: abrt-plugin-catcut > 0.0.1 +Obsoletes: abrt-plugin-rhfastcheck > 0.0.1 +Obsoletes: abrt-plugin-rhticket > 0.0.1 %description plugin-rhtsupport Plugin to report bugs into RH support system. @@ -174,24 +196,17 @@ Plugin to report bugs into RH support system. Summary: %{name}'s reportuploader plugin Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -Obsoletes: abrt-plugin-ticketuploader +Obsoletes: abrt-plugin-ticketuploader > 0.0.1 %description plugin-reportuploader Plugin to report bugs into anonymous FTP site associated with ticketing system. -%package plugin-filetransfer -Summary: %{name}'s File Transfer plugin -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} - -%description plugin-filetransfer -Plugin to uploading files to a server. - %package addon-python Summary: %{name}'s addon for catching and analyzing Python exceptions Group: System Environment/Libraries +Requires: python Requires: %{name} = %{version}-%{release} -Obsoletes: gnome-python2-bugbuddy +Obsoletes: gnome-python2-bugbuddy > 0.0.1 Provides: gnome-python2-bugbuddy %description addon-python @@ -202,9 +217,9 @@ uncaught exception in python programs. Summary: %{name}'s command line interface Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} -Requires: %{name}-addon-kerneloops -Requires: %{name}-addon-ccpp, %{name}-addon-python -Requires: %{name}-plugin-bugzilla, %{name}-plugin-logger, %{name}-plugin-runapp +Requires: abrt-addon-kerneloops +Requires: abrt-addon-ccpp, abrt-addon-python +Requires: abrt-plugin-bugzilla, abrt-plugin-logger %description cli This package contains simple command line client for controlling abrt daemon over @@ -219,28 +234,42 @@ Group: User Interface/Desktops # Installing abrt-desktop should result in the abrt which works without # any tweaking in abrt.conf (IOW: all plugins mentioned there must be installed) Requires: %{name} = %{version}-%{release} -Requires: %{name}-addon-kerneloops -Requires: %{name}-addon-ccpp, %{name}-addon-python +Requires: abrt-addon-kerneloops +Requires: abrt-addon-ccpp, abrt-addon-python # Default config of addon-ccpp requires gdb Requires: gdb >= 7.0-3 -Requires: %{name}-gui -Requires: %{name}-plugin-logger, %{name}-plugin-bugzilla, %{name}-plugin-runapp -#Requires: %{name}-plugin-firefox -Obsoletes: bug-buddy +Requires: abrt-gui +Requires: abrt-plugin-logger, abrt-plugin-bugzilla +#Requires: abrt-plugin-firefox +Obsoletes: bug-buddy > 0.0.1 Provides: bug-buddy %description desktop Virtual package to make easy default installation on desktop environments. +%package retrace-server +Summary: %{name}'s retrace server using HTTP protocol +Group: System Environment/Daemons +Requires: abrt-addon-ccpp +Requires: gdb >= 7.0-3 +Requires: httpd, mod_wsgi, mod_ssl, python-webob +Requires: mock, xz, elfutils, createrepo +%{?el6:Requires: python-argparse} +Requires(preun): /sbin/install-info +Requires(post): /sbin/install-info + +%description retrace-server +The retrace server provides a coredump analysis and backtrace +generation service over a network using HTTP protocol. + %prep %setup -q -%patch0 -p1 -b .hideprefs -# rawhide packages are not signed, so we need to disable the gpg check -%patch1 -p1 -b .disable_gpg_check -# general patches -%patch2 -p1 -b .blacklist_mono +%patch0 -p1 -b .libreport_py +# FIXME remove when settings check is implemented +%patch1 -p1 -b .warning %build +autoconf %configure sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -252,18 +281,15 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} %find_lang %{name} -#rm -rf $RPM_BUILD_ROOT/%{_libdir}/lib*.la -#rm -rf $RPM_BUILD_ROOT/%{_libdir}/%{name}/lib*.la # remove all .la and .a files find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_initrddir}/abrtd -# /var/cache/%{name} is to be removed in 1.3.x timeframe -mkdir -p $RPM_BUILD_ROOT/var/cache/%{name} -mkdir -p $RPM_BUILD_ROOT/var/cache/%{name}-di -mkdir -p $RPM_BUILD_ROOT/var/run/%{name} -mkdir -p $RPM_BUILD_ROOT/var/spool/%{name} -mkdir -p $RPM_BUILD_ROOT/var/spool/%{name}-upload +install -m 755 %SOURCE2 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-ccpp +mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di +mkdir -p $RPM_BUILD_ROOT/var/run/abrt +mkdir -p $RPM_BUILD_ROOT/var/spool/abrt +mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload desktop-file-install \ --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ @@ -273,7 +299,10 @@ desktop-file-install \ desktop-file-install \ --dir ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart \ - src/Applet/%{name}-applet.desktop + src/applet/abrt-applet.desktop + +# After everything is installed, remove info dir +rm -f %{buildroot}%{_infodir}/dir %clean rm -rf $RPM_BUILD_ROOT @@ -287,29 +316,50 @@ exit 0 %post if [ $1 -eq 1 ]; then -/sbin/chkconfig --add %{name}d +/sbin/chkconfig --add abrtd fi #systemd %if %{?with_systemd} #if [ $1 -eq 1 ]; then # Enable (but don't start) the units by default - /bin/systemctl enable %{name}d.service >/dev/null 2>&1 || : + /bin/systemctl enable abrtd.service >/dev/null 2>&1 || : #fi %endif +%post addon-ccpp +#if [ $1 -eq 1 ]; then +/sbin/chkconfig --add abrt-ccpp +#fi +#systemd: TODO + +%post retrace-server +/sbin/install-info %{_infodir}/abrt-retrace-server %{_infodir}/dir 2> /dev/null || : + %preun if [ "$1" -eq "0" ] ; then - service %{name}d stop >/dev/null 2>&1 - /sbin/chkconfig --del %{name}d + service abrtd stop >/dev/null 2>&1 + /sbin/chkconfig --del abrtd fi #systemd %if %{?with_systemd} if [ "$1" -eq "0" ] ; then - /bin/systemctl stop %{name}d.service >/dev/null 2>&1 || : - /bin/systemctl disable %{name}d.service >/dev/null 2>&1 || : + /bin/systemctl stop abrtd.service >/dev/null 2>&1 || : + /bin/systemctl disable abrtd.service >/dev/null 2>&1 || : fi %endif +%preun addon-ccpp +if [ "$1" -eq "0" ] ; then + service abrt-ccpp stop >/dev/null 2>&1 + /sbin/chkconfig --del abrt-ccpp +fi +#systemd: TODO + +%preun retrace-server +if [ "$1" = 0 ]; then + /sbin/install-info --delete %{_infodir}/abrt-retrace-server %{_infodir}/dir 2> /dev/null || : +fi + %postun #systemd %if %{?with_systemd} @@ -338,151 +388,172 @@ fi %posttrans if [ "$1" -eq "0" ]; then - service %{name}d condrestart >/dev/null 2>&1 || : + service abrtd condrestart >/dev/null 2>&1 || : fi #systemd %if %{?with_systemd} if [ "$1" -eq "0" ]; then - /bin/systemctl try-restart %{name}d.service >/dev/null 2>&1 || : + /bin/systemctl try-restart abrtd.service >/dev/null 2>&1 || : fi %endif +%posttrans addon-ccpp +if [ "$1" -eq "0" ]; then + #service abrt-ccpp condrestart >/dev/null 2>&1 || : + # this is a tmp hack to set-up the ccpp hook when updating + # from 1.x to 2.x without restarting + service abrt-ccpp restart >/dev/null 2>&1 || : +fi +#systemd: TODO + %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING #systemd %if %{?with_systemd} -/lib/systemd/system/%{name}d.service +/lib/systemd/system/abrtd.service %endif -%{_sbindir}/%{name}d -%{_bindir}/%{name}-debuginfo-install -%{_bindir}/%{name}-handle-upload -%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf +%{_sbindir}/abrtd +%{_sbindir}/abrt-server +%{_bindir}/abrt-handle-upload +%{_bindir}/abrt-handle-crashdump +%{_bindir}/abrt-action-save-package-data +%{_bindir}/abrt-retrace-client +%config(noreplace) %{_sysconfdir}/%{name}/abrt.conf +%config(noreplace) %{_sysconfdir}/%{name}/abrt_event.conf %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys -%config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-%{name}.conf -%{_initrddir}/%{name}d -# /var/cache/%{name} is to be removed in 1.3.x timeframe -%dir %attr(0755, abrt, abrt) %{_localstatedir}/cache/%{name} +%config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf +%{_initrddir}/abrtd %dir %attr(0755, abrt, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload -%dir /var/run/%{name} +%dir %attr(0775, abrt, abrt) %{_localstatedir}/run/%{name} %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins -%dir %{_libdir}/%{name} +%dir %{_sysconfdir}/%{name}/events.d +#%dir %{_libdir}/%{name} %{_mandir}/man8/abrtd.8.gz %{_mandir}/man5/%{name}.conf.5.gz -#%{_mandir}/man5/pyhook.conf.5.gz +# {_mandir}/man5/pyhook.conf.5.gz %{_mandir}/man7/%{name}-plugins.7.gz -%{_datadir}/polkit-1/actions/org.fedoraproject.abrt.policy %{_datadir}/dbus-1/system-services/com.redhat.abrt.service -%config(noreplace) %{_sysconfdir}/%{name}/plugins/SQLite3.conf -%{_libdir}/%{name}/libSQLite3.so* -%{_mandir}/man7/%{name}-SQLite3.7.gz + +%files -n libreport +%defattr(-,root,root,-) +%{_libdir}/libreport.so.* + +%files -n libreport-devel +%defattr(-,root,root,-) +%{_includedir}/report/* +%{_libdir}/libreport.so + +#%files -n libreport-python +#%defattr(-,root,root,-) +#%{python_sitearch}/report/* + +%files -n libreport-gtk +%defattr(-,root,root,-) +%{_bindir}/bug-reporting-wizard +%{_libdir}/libreportgtk.so.* %files libs %defattr(-,root,root,-) -%{_libdir}/lib*.so.* +%{_libdir}/libabrt*.so.* +%{_libdir}/libbtparser.so.* %files devel %defattr(-,root,root,-) -%{_includedir}/* -%{_libdir}/lib*.so +%{_includedir}/abrt/* +%{_libdir}/libabrt*.so +%{_libdir}/libbtparser.so +#FIXME: this should go to libreportgtk-devel package +%{_libdir}/libreportgtk.so* %{_libdir}/pkgconfig/* %doc doc/abrt-plugin doc/howto-write-reporter %files gui %defattr(-,root,root,-) -%{_bindir}/%{name}-gui +%{_bindir}/abrt-gui %dir %{_datadir}/%{name} # all glade, gtkbuilder and py files for gui -%{_datadir}/%{name}/*.py* -%{_datadir}/%{name}/*.glade %{_datadir}/applications/fedora-%{name}.desktop %{_datadir}/icons/hicolor/*/apps/* %{_datadir}/icons/hicolor/*/status/* %{_datadir}/%{name}/icons/hicolor/*/status/* -%{_bindir}/%{name}-applet -%{_sysconfdir}/xdg/autostart/%{name}-applet.desktop +%{_bindir}/abrt-applet +#%{_bindir}/test-report +%{_sysconfdir}/xdg/autostart/abrt-applet.desktop %files addon-ccpp %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf -%dir %{_localstatedir}/cache/%{name}-di -%{_libdir}/%{name}/libCCpp.so* +%dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di +%{_initrddir}/abrt-ccpp %{_libexecdir}/abrt-hook-ccpp +%{_bindir}/abrt-action-analyze-c +%{_bindir}/abrt-action-trim-files +%attr(2755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo +%{_bindir}/abrt-action-install-debuginfo.py* +%{_bindir}/abrt-action-generate-backtrace +%{_bindir}/abrt-action-analyze-backtrace +%{_bindir}/abrt-action-list-dsos.py* +%{_sysconfdir}/%{name}/events.d/ccpp_events.conf +%{_sysconfdir}/%{name}/events/analyze_LocalGDB.xml +%{_sysconfdir}/%{name}/events/reanalyze_LocalGDB.xml +%{_sysconfdir}/%{name}/events/analyze_RetraceServer.xml +%{_sysconfdir}/%{name}/events/reanalyze_RetraceServer.xml %files addon-kerneloops %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/Kerneloops.conf -%{_bindir}/dumpoops -%{_libdir}/%{name}/libKerneloops.so* -%{_libdir}/%{name}/libKerneloopsScanner.so* -%{_mandir}/man7/%{name}-KerneloopsScanner.7.gz -%{_libdir}/%{name}/libKerneloopsReporter.so* -%{_libdir}/%{name}/KerneloopsReporter.glade -%{_mandir}/man7/%{name}-KerneloopsReporter.7.gz +%{_sysconfdir}/%{name}/events/report_Kerneloops.xml +%{_sysconfdir}/%{name}/events.d/koops_events.conf +%{_mandir}/man7/abrt-KerneloopsReporter.7.gz +%{_bindir}/abrt-dump-oops +%{_bindir}/abrt-action-analyze-oops +%{_bindir}/abrt-action-kerneloops %files plugin-logger %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/Logger.conf -%{_libdir}/%{name}/libLogger.so* -%{_libdir}/%{name}/Logger.glade -%{_mandir}/man7/%{name}-Logger.7.gz +%{_sysconfdir}/%{name}/events/report_Logger.conf +%{_mandir}/man7/abrt-Logger.7.gz +%{_bindir}/abrt-action-print %files plugin-mailx %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/Mailx.conf -%{_libdir}/%{name}/libMailx.so* -%{_libdir}/%{name}/Mailx.glade -%{_mandir}/man7/%{name}-Mailx.7.gz - -%files plugin-runapp -%defattr(-,root,root,-) -%{_libdir}/%{name}/libRunApp.so* -%{_mandir}/man7/%{name}-RunApp.7.gz - -%files plugin-sosreport -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/SOSreport.conf -%{_libdir}/%{name}/libSOSreport.so* - +%{_sysconfdir}/%{name}/events/report_Mailx.xml +%{_sysconfdir}/%{name}/events.d/mailx_events.conf +%{_mandir}/man7/abrt-Mailx.7.gz +%{_bindir}/abrt-action-mailx %files plugin-bugzilla %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/Bugzilla.conf -%{_libdir}/%{name}/libBugzilla.so* -%{_libdir}/%{name}/Bugzilla.glade -%{_mandir}/man7/%{name}-Bugzilla.7.gz +%{_sysconfdir}/%{name}/events/report_Bugzilla.xml +%config(noreplace) %{_sysconfdir}/%{name}/events/report_Bugzilla.conf +# FIXME: remove with the old gui +%{_mandir}/man7/abrt-Bugzilla.7.gz +%{_bindir}/abrt-action-bugzilla %files plugin-rhtsupport %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/RHTSupport.conf -%{_libdir}/%{name}/libRHTSupport.so* -%{_libdir}/%{name}/RHTSupport.glade -#%{_mandir}/man7/%{name}-RHTSupport.7.gz +%{_sysconfdir}/%{name}/events/report_RHTSupport.xml +# {_mandir}/man7/abrt-RHTSupport.7.gz +%{_bindir}/abrt-action-rhtsupport %files plugin-reportuploader %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/ReportUploader.conf -%{_libdir}/%{name}/libReportUploader.so* -%{_libdir}/%{name}/ReportUploader.glade -%{_mandir}/man7/%{name}-ReportUploader.7.gz - -%files plugin-filetransfer -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/FileTransfer.conf -%{_libdir}/%{name}/libFileTransfer.so* -%{_mandir}/man7/%{name}-FileTransfer.7.gz +%config(noreplace) %{_sysconfdir}/%{name}/plugins/Upload.conf +%{_mandir}/man7/abrt-Upload.7.gz +%{_bindir}/abrt-action-upload %files addon-python %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/Python.conf -%{_libdir}/%{name}/libPython.so* +%{_bindir}/abrt-action-analyze-python %{python_site}/*.py* %{python_site}/abrt.pth - %files cli %defattr(-,root,root,-) %{_bindir}/abrt-cli @@ -492,7 +563,22 @@ fi %files desktop %defattr(-,root,root,-) +%files retrace-server +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/%{name}/retrace.conf +%config(noreplace) %{_sysconfdir}/httpd/conf.d/retrace_httpd.conf +%config(noreplace) %{_sysconfdir}/yum.repos.d/retrace.repo +%{_bindir}/abrt-retrace-worker +%{_datadir}/abrt-retrace/*.py* +%{_datadir}/abrt-retrace/*.wsgi +%{_infodir}/abrt-retrace-server* + %changelog +* Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 +- update to the latest upstream version +- many improvements +- FIXME: add closed bugzillas + * Fri Feb 18 2011 Jiri Moskovcak 1.1.17-2 - removed gnome-python2-vfs dependency @@ -647,7 +733,7 @@ fi * Wed Jul 21 2010 David Malcolm - 1.1.5-1.1 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild -* Thu Jun 10 2010 Jiri Moskovcak 1.1.5-1 +* Wed Jun 09 2010 Jiri Moskovcak 1.1.5-1 - GUI: polished the reporter assistant (jmoskovc@redhat.com) - Logger reporter: do not store useless info (vda.linux@googlemail.com) - ccpp hook: add SaveBinaryImage option which saves of the crashed binary (vda.linux@googlemail.com) diff --git a/remove_libreport_python.patch b/remove_libreport_python.patch new file mode 100644 index 0000000..e472af3 --- /dev/null +++ b/remove_libreport_python.patch @@ -0,0 +1,6 @@ +diff -u -r abrt-1.2.0/src/Makefile.am abrt-1.2.0_/src/Makefile.am +--- abrt-1.2.0/src/Makefile.am 2011-03-14 17:51:12.000000000 +0100 ++++ abrt-1.2.0_/src/Makefile.am 2011-03-16 15:32:36.989851003 +0100 +@@ -1 +1 @@ +-SUBDIRS = include lib report-python hooks btparser daemon applet gtk-helpers gui-gtk cli plugins gui-wizard-gtk retrace ++SUBDIRS = include lib hooks btparser daemon applet gtk-helpers gui-gtk cli plugins gui-wizard-gtk retrace diff --git a/settings_warning.patch b/settings_warning.patch new file mode 100644 index 0000000..f146ef7 --- /dev/null +++ b/settings_warning.patch @@ -0,0 +1,22 @@ +diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c +index 31c7bb2..e08dc4e 100644 +--- a/src/gui-wizard-gtk/wizard.c ++++ b/src/gui-wizard-gtk/wizard.c +@@ -1268,6 +1268,17 @@ static void add_pages(void) + config_btn = GTK_WIDGET(gtk_builder_get_object(builder, "button_cfg2")); + if (config_btn) + g_signal_connect(G_OBJECT(config_btn), "clicked", G_CALLBACK(on_show_event_list_cb), NULL); ++ ++ //hack to warn user about settings - will be removed before F15 GOLD ++ GtkWidget *settings_warning_eb = gtk_event_box_new(); ++ GtkWidget *settings_warning_lbl = gtk_label_new(_("Please make sure you configured the reporters.")); ++ gtk_container_add(GTK_CONTAINER(settings_warning_eb), settings_warning_lbl); ++ gtk_box_pack_start(GTK_BOX(pages[PAGENO_REPORTER_SELECTOR].page_widget), settings_warning_eb, false, false, 0); ++ GdkColor bg_color; ++ gdk_color_parse("red", &bg_color); ++ gtk_widget_modify_bg(settings_warning_eb, GTK_STATE_NORMAL, &bg_color); ++ gtk_widget_show_all(settings_warning_eb); ++ + } + + void create_assistant() diff --git a/sources b/sources index 3ac8690..cfd6877 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -71e8ff8bc5616a44ac38d07365b68452 abrt-1.1.17.tar.gz +c4b486d64d0d908f56785e51be756ebc abrt-2.0.0.tar.gz From d8e5ec2fca80b5618f6725f46ffedc644bbd7b14 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 29 Mar 2011 14:54:02 +0200 Subject: [PATCH 011/318] use %ghost on files in /var/run and /var/lock rhbz#656542 --- abrt.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/abrt.spec b/abrt.spec index 58da316..219b37b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -428,6 +428,8 @@ fi %dir %attr(0755, abrt, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload %dir %attr(0775, abrt, abrt) %{_localstatedir}/run/%{name} +%ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket +%ghost %attr(0644, -, -) %{_localstatedir}/run/abrtd.pid %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins %dir %{_sysconfdir}/%{name}/events.d @@ -574,6 +576,9 @@ fi %{_infodir}/abrt-retrace-server* %changelog +* Tue Mar 29 2011 Jiri Moskovcak 2.0.0-2 +- use %ghost on files in /var/run and /var/lock rhbz#656542 + * Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 - update to the latest upstream version - many improvements From 97a2ff687821788c7433a9901ba6706ee7a51214 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 21 Apr 2011 18:27:15 +0200 Subject: [PATCH 012/318] update to 2.0.1 Conflicts: abrt.spec --- .gitignore | 1 + abrt-1.0.9-hideprefs.patch | 11 -------- abrt.spec | 51 +++++++++++++++++++++++++++++--------- allow_bz_for_koops.patch | 7 ++++++ settings_warning.patch | 22 ---------------- sources | 2 +- 6 files changed, 48 insertions(+), 46 deletions(-) delete mode 100644 abrt-1.0.9-hideprefs.patch create mode 100644 allow_bz_for_koops.patch delete mode 100644 settings_warning.patch diff --git a/.gitignore b/.gitignore index fd245ec..ab83d5f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ abrt-1.1.13.tar.gz /abrt-1.1.14.tar.gz /abrt-1.1.17.tar.gz /abrt-2.0.0.tar.gz +/abrt-2.0.1.tar.gz diff --git a/abrt-1.0.9-hideprefs.patch b/abrt-1.0.9-hideprefs.patch deleted file mode 100644 index 668f092..0000000 --- a/abrt-1.0.9-hideprefs.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- abrt-1.0.9/src/Gui/ccgui.glade 2010-03-31 10:34:14.000000000 +0200 -+++ abrt-1.0.9_hideprefs/src/Gui/ccgui.glade 2010-03-31 21:39:27.653364662 +0200 -@@ -102,7 +102,7 @@ - - - gtk-preferences -- True -+ False - True - True - True diff --git a/abrt.spec b/abrt.spec index 219b37b..d4a3afc 100644 --- a/abrt.spec +++ b/abrt.spec @@ -21,7 +21,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.0 +Version: 2.0.1 Release: %{?pkg_release} License: GPLv2+ Group: Applications/System @@ -30,7 +30,8 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt.init Source2: abrt-ccpp.init Patch0: remove_libreport_python.patch -Patch1: settings_warning.patch +Patch1: blacklist.patch +Patch2: allow_bz_for_koops.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -253,7 +254,7 @@ Group: System Environment/Daemons Requires: abrt-addon-ccpp Requires: gdb >= 7.0-3 Requires: httpd, mod_wsgi, mod_ssl, python-webob -Requires: mock, xz, elfutils, createrepo +Requires: mock, xz, elfutils, createrepo, rsync %{?el6:Requires: python-argparse} Requires(preun): /sbin/install-info Requires(post): /sbin/install-info @@ -265,8 +266,8 @@ generation service over a network using HTTP protocol. %prep %setup -q %patch0 -p1 -b .libreport_py -# FIXME remove when settings check is implemented -%patch1 -p1 -b .warning +%patch1 -p1 -b .blacklist +%patch2 -p1 -b bz_for_oops %build autoconf @@ -289,6 +290,9 @@ install -m 755 %SOURCE2 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-ccpp mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt +mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-retrace +mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-retrace +mkdir -p $RPM_BUILD_ROOT/var/log/abrt-retrace mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload desktop-file-install \ @@ -334,6 +338,7 @@ fi %post retrace-server /sbin/install-info %{_infodir}/abrt-retrace-server %{_infodir}/dir 2> /dev/null || : +/usr/sbin/usermod -G mock apache 2> /dev/null || : %preun if [ "$1" -eq "0" ] ; then @@ -433,6 +438,7 @@ fi %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins %dir %{_sysconfdir}/%{name}/events.d +%dir %{_sysconfdir}/%{name}/events #%dir %{_libdir}/%{name} %{_mandir}/man8/abrtd.8.gz %{_mandir}/man5/%{name}.conf.5.gz @@ -467,9 +473,10 @@ fi %defattr(-,root,root,-) %{_includedir}/abrt/* %{_libdir}/libabrt*.so +%{_includedir}/btparser/* %{_libdir}/libbtparser.so #FIXME: this should go to libreportgtk-devel package -%{_libdir}/libreportgtk.so* +%{_libdir}/libreportgtk.so %{_libdir}/pkgconfig/* %doc doc/abrt-plugin doc/howto-write-reporter @@ -509,7 +516,7 @@ fi %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/Kerneloops.conf %{_sysconfdir}/%{name}/events/report_Kerneloops.xml -%{_sysconfdir}/%{name}/events.d/koops_events.conf +%config(noreplace) %{_sysconfdir}/%{name}/events.d/koops_events.conf %{_mandir}/man7/abrt-KerneloopsReporter.7.gz %{_bindir}/abrt-dump-oops %{_bindir}/abrt-action-analyze-oops @@ -524,7 +531,7 @@ fi %files plugin-mailx %defattr(-,root,root,-) %{_sysconfdir}/%{name}/events/report_Mailx.xml -%{_sysconfdir}/%{name}/events.d/mailx_events.conf +%config(noreplace) %{_sysconfdir}/%{name}/events.d/mailx_events.conf %{_mandir}/man7/abrt-Mailx.7.gz %{_bindir}/abrt-action-mailx @@ -540,6 +547,7 @@ fi %files plugin-rhtsupport %defattr(-,root,root,-) %{_sysconfdir}/%{name}/events/report_RHTSupport.xml +%config(noreplace) %{_sysconfdir}/%{name}/events.d/rhtsupport_events.conf # {_mandir}/man7/abrt-RHTSupport.7.gz %{_bindir}/abrt-action-rhtsupport @@ -553,7 +561,7 @@ fi %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/Python.conf %{_bindir}/abrt-action-analyze-python -%{python_site}/*.py* +%{python_site}/abrt*.py* %{python_site}/abrt.pth %files cli @@ -570,14 +578,33 @@ fi %config(noreplace) %{_sysconfdir}/%{name}/retrace.conf %config(noreplace) %{_sysconfdir}/httpd/conf.d/retrace_httpd.conf %config(noreplace) %{_sysconfdir}/yum.repos.d/retrace.repo -%{_bindir}/abrt-retrace-worker +%dir %attr(0775, apache, abrt) %{_localstatedir}/spool/abrt-retrace +%dir %attr(0755, abrt, abrt) %{_localstatedir}/cache/abrt-retrace +%dir %attr(0755, abrt, abrt) %{_localstatedir}/log/abrt-retrace +%caps(cap_setuid=ep) %{_bindir}/abrt-retrace-worker +%{_bindir}/abrt-retrace-cleanup +%{_bindir}/abrt-retrace-reposync +%{_bindir}/coredump2packages +%{python_site}/retrace.py* %{_datadir}/abrt-retrace/*.py* +%{_datadir}/abrt-retrace/plugins/*.py* %{_datadir}/abrt-retrace/*.wsgi %{_infodir}/abrt-retrace-server* %changelog -* Tue Mar 29 2011 Jiri Moskovcak 2.0.0-2 -- use %ghost on files in /var/run and /var/lock rhbz#656542 +* Wed Apr 20 2011 Jiri Moskovcak 2.0.1-1 +- updated to 2.0.1 +- updated translation +- allowed reporting oops to bugzilla +- added warning when the plugin settings are wrong +- added help text in plugins settings +- the plugin settings dialog is translatable +- improved dir rescanning logic in abrt-gui +- fixed icons for child dialogs +- retrace-client: human readable messages instead of http codes +- save envirnment variables when app crashes +- fixed gpg/pgp check +- revert to the old icon * Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 - update to the latest upstream version diff --git a/allow_bz_for_koops.patch b/allow_bz_for_koops.patch new file mode 100644 index 0000000..711cfe9 --- /dev/null +++ b/allow_bz_for_koops.patch @@ -0,0 +1,7 @@ +--- abrt-2.0.1/src/plugins/koops_events.conf 2011-03-30 21:10:14.000000000 +0200 ++++ abrt-2.0.1_/src/plugins/koops_events.conf 2011-04-20 14:43:46.460859863 +0200 +@@ -9,3 +9,4 @@ + + # report + EVENT=report_Kerneloops analyzer=Kerneloops abrt-action-kerneloops ++EVENT=report_Bugzilla analyzer=Kerneloops abrt-action-bugzilla diff --git a/settings_warning.patch b/settings_warning.patch deleted file mode 100644 index f146ef7..0000000 --- a/settings_warning.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c -index 31c7bb2..e08dc4e 100644 ---- a/src/gui-wizard-gtk/wizard.c -+++ b/src/gui-wizard-gtk/wizard.c -@@ -1268,6 +1268,17 @@ static void add_pages(void) - config_btn = GTK_WIDGET(gtk_builder_get_object(builder, "button_cfg2")); - if (config_btn) - g_signal_connect(G_OBJECT(config_btn), "clicked", G_CALLBACK(on_show_event_list_cb), NULL); -+ -+ //hack to warn user about settings - will be removed before F15 GOLD -+ GtkWidget *settings_warning_eb = gtk_event_box_new(); -+ GtkWidget *settings_warning_lbl = gtk_label_new(_("Please make sure you configured the reporters.")); -+ gtk_container_add(GTK_CONTAINER(settings_warning_eb), settings_warning_lbl); -+ gtk_box_pack_start(GTK_BOX(pages[PAGENO_REPORTER_SELECTOR].page_widget), settings_warning_eb, false, false, 0); -+ GdkColor bg_color; -+ gdk_color_parse("red", &bg_color); -+ gtk_widget_modify_bg(settings_warning_eb, GTK_STATE_NORMAL, &bg_color); -+ gtk_widget_show_all(settings_warning_eb); -+ - } - - void create_assistant() diff --git a/sources b/sources index cfd6877..1f0bee7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c4b486d64d0d908f56785e51be756ebc abrt-2.0.0.tar.gz +ead5853a19b070f548a887755fb015f1 abrt-2.0.1.tar.gz From a4fa2d6195a30cbf3e3048231b8a157169ae612f Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 21 Apr 2011 18:17:18 +0200 Subject: [PATCH 013/318] don't allow sending unusable backtrace, versioned libreport deps --- abrt.spec | 10 ++++++++-- low_bt_rating.patch | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 low_bt_rating.patch diff --git a/abrt.spec b/abrt.spec index d4a3afc..2b55811 100644 --- a/abrt.spec +++ b/abrt.spec @@ -16,7 +16,7 @@ %if "0%{?_buildid}" != "0" %define pkg_release 0.%{?_buildid}%{?dist} %else -%define pkg_release 1%{?dist} +%define pkg_release 2%{?dist} %endif Summary: Automatic bug detection and reporting tool @@ -32,6 +32,7 @@ Source2: abrt-ccpp.init Patch0: remove_libreport_python.patch Patch1: blacklist.patch Patch2: allow_bz_for_koops.patch +Patch3: low_bt_rating.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -61,7 +62,7 @@ Requires: systemd-units %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} -Requires: libreport +Requires: libreport = %{version}-%{release} Requires(pre): shadow-utils Obsoletes: abrt-plugin-sqlite3 > 0.0.1 # required for transition from 1.1.13, can be removed after some time @@ -268,6 +269,7 @@ generation service over a network using HTTP protocol. %patch0 -p1 -b .libreport_py %patch1 -p1 -b .blacklist %patch2 -p1 -b bz_for_oops +%patch3 -p1 -b low_rating %build autoconf @@ -592,6 +594,10 @@ fi %{_infodir}/abrt-retrace-server* %changelog +* Thu Apr 21 2011 Jiri Moskovcak 2.0.1-2 +- don't allow reporting of backtrace with rating = 0 rhbz#672023 +- use versioned deps on libreport + * Wed Apr 20 2011 Jiri Moskovcak 2.0.1-1 - updated to 2.0.1 - updated translation diff --git a/low_bt_rating.patch b/low_bt_rating.patch new file mode 100644 index 0000000..537aa9b --- /dev/null +++ b/low_bt_rating.patch @@ -0,0 +1,20 @@ +commit 884c0aed054302cb1cbb71c2b21c12df92a7e6e4 +Author: Karel Klic +Date: Thu Apr 21 08:59:38 2011 +0200 + + Do not allow to submit backtraces with rating 0 (or some other unexpected rating). + +diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c +index 44dc11b..0a57f04 100644 +--- a/src/gui-wizard-gtk/wizard.c ++++ b/src/gui-wizard-gtk/wizard.c +@@ -1005,8 +1005,7 @@ static void check_backtrace_and_allow_send(void) //TODO: rename, this checks rat + add_warning(_("The backtrace is incomplete, please make sure you provide the steps to reproduce.")); + warn = true; + break; +- case '2': +- case '1': ++ default: + //FIXME: see CreporterAssistant: 394 for ideas + add_warning(_("Reporting disabled because the backtrace is unusable.")); + send = false; From cb37c9bf299b3de90545e60b8f2eb97c229e3488 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 21 Apr 2011 18:47:57 +0200 Subject: [PATCH 014/318] fixed the problem with debuginfo install permissions rhbz#692064 --- abrt.spec | 3 ++- blacklist.patch | 29 ++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/abrt.spec b/abrt.spec index 2b55811..5d23b5b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -503,7 +503,8 @@ fi %{_libexecdir}/abrt-hook-ccpp %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files -%attr(2755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo +%attr(4755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo +%{_bindir}/abrt-action-analyzecore.py* %{_bindir}/abrt-action-install-debuginfo.py* %{_bindir}/abrt-action-generate-backtrace %{_bindir}/abrt-action-analyze-backtrace diff --git a/blacklist.patch b/blacklist.patch index cccc80b..cc5c51c 100644 --- a/blacklist.patch +++ b/blacklist.patch @@ -1,22 +1,21 @@ ---- abrt-1.1.10/src/Daemon/abrt.conf 2010-07-27 16:16:45.376241759 +0200 -+++ abrt-1.1.10_rhel6/src/Daemon/abrt.conf 2010-07-27 16:16:32.988241693 +0200 -@@ -16,7 +16,7 @@ - - # Blacklisted executable paths (shell patterns) - # --BlackListedPaths = /usr/share/doc/*, */example* -+BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer, /usr/lib/xulrunner-*/plugin-container - - # Which database plugin to use - # ---- abrt-1.1.10/src/Daemon/abrt.conf 2010-07-26 14:00:36.914502040 +0200 -+++ abrt-1.1.10_/src/Daemon/abrt.conf 2010-07-26 14:01:07.597502575 +0200 -@@ -8,7 +8,7 @@ +diff -urp abrt-2.0.0/src/daemon/abrt.conf abrt-2.0.0_/src/daemon/abrt.conf +--- abrt-2.0.0/src/daemon/abrt.conf 2011-03-23 18:11:00.000000000 +0100 ++++ abrt-2.0.0_/src/daemon/abrt.conf 2011-03-30 15:40:51.160618948 +0200 +@@ -8,7 +8,7 @@ OpenGPGCheck = yes # Blacklisted packages # --BlackList = nspluginwrapper, valgrind, strace +-BlackList = nspluginwrapper,valgrind,strace +BlackList = nspluginwrapper, valgrind, strace, mono-core # Process crashes in executables which do not belong to any package? # +@@ -16,7 +16,7 @@ ProcessUnpackaged = no + + # Blacklisted executable paths (shell patterns) + # +-BlackListedPaths = /usr/share/doc/*,*/example* ++BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer, /usr/lib/xulrunner-*/plugin-container + + # Enable this if you want abrtd to auto-unpack crashdump tarballs which appear + # in this directory (for example, uploaded via ftp, scp etc). From 0082787aa1ed7fe94ed3ec84688b28676d5d6d90 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 5 May 2011 18:26:52 +0200 Subject: [PATCH 015/318] update to 2.0.2 --- .gitignore | 1 + abrt-oops.init | 91 ++++++++++++++++++++++++++++++ abrt.spec | 138 +++++++++++++++++++++++++++++++++++++-------- retrace_addr.patch | 19 +++++++ sources | 2 +- 5 files changed, 227 insertions(+), 24 deletions(-) create mode 100644 abrt-oops.init create mode 100644 retrace_addr.patch diff --git a/.gitignore b/.gitignore index ab83d5f..fe925cd 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ abrt-1.1.13.tar.gz /abrt-1.1.17.tar.gz /abrt-2.0.0.tar.gz /abrt-2.0.1.tar.gz +/abrt-2.0.2.tar.gz diff --git a/abrt-oops.init b/abrt-oops.init new file mode 100644 index 0000000..8c1c7bf --- /dev/null +++ b/abrt-oops.init @@ -0,0 +1,91 @@ +#!/bin/bash +# Start ABRT kernel log watcher +# +# chkconfig: 35 82 16 +# description: Watches system log for oops messages, creates ABRT dump directories for each oops +### BEGIN INIT INFO +# Provides: abrt-oops +# Required-Start: $abrtd +# Default-Stop: 0 1 2 6 +# Default-Start: 3 5 +# Short-Description: Watches system log for oops messages, creates ABRT dump directories for each oops +# Description: Watches system log for oops messages, creates ABRT dump directories for each oops +### END INIT INFO + +# Source function library. +. /etc/rc.d/init.d/functions + +# For debugging +dry_run=false +verbose=false + +# We don't have pid files, therefore have to use +# a flag file in /var/lock/subsys to enable GUI service tools +# to figure out our status +LOCK="/var/lock/subsys/abrt-oops" + +RETVAL=0 + +check() { + # Check that we're a privileged user + [ "`id -u`" = 0 ] || exit 4 +} + +start() { + check + killall abrt-dump-oops 2>/dev/null + setsid abrt-dump-oops -d /var/spool/abrt -rwx /var/log/messages /dev/null 2>&1 & + $dry_run || touch -- "$LOCK" + return $RETVAL +} + +stop() { + check + killall abrt-dump-oops + $dry_run || rm -f -- "$LOCK" + return $RETVAL +} + +restart() { + stop + start +} + +reload() { + restart +} + +case "$1" in +start) + start + ;; +stop) + stop + ;; +reload) + reload + ;; +force-reload) + echo "$0: Unimplemented feature." + RETVAL=3 + ;; +restart) + restart + ;; +condrestart) + # Is it already running? + if test -f "$LOCK"; then # yes + $verbose && printf "Running, restarting\n" + restart + fi + ;; +status) + status abrt-dump-oops + RETVAL=$? + ;; +*) + echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload}" + RETVAL=2 +esac + +exit $RETVAL diff --git a/abrt.spec b/abrt.spec index 5d23b5b..36c7459 100644 --- a/abrt.spec +++ b/abrt.spec @@ -7,32 +7,21 @@ %define with_systemd 0 %endif -# please modify the "_buildid" define in a way that identifies -# that the built package isn't the stock distribution package, -# for example, by setting abbreviation sha1 hash "238f49f" -# -# % define _buildid git238f49f - -%if "0%{?_buildid}" != "0" -%define pkg_release 0.%{?_buildid}%{?dist} -%else -%define pkg_release 2%{?dist} -%endif - Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.1 -Release: %{?pkg_release} +Version: 2.0.2 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt.init Source2: abrt-ccpp.init +Source3: abrt-oops.init Patch0: remove_libreport_python.patch Patch1: blacklist.patch Patch2: allow_bz_for_koops.patch -Patch3: low_bt_rating.patch +Patch3: retrace_addr.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -49,6 +38,8 @@ BuildRequires: intltool BuildRequires: libtool BuildRequires: nss-devel BuildRequires: texinfo +BuildRequires: asciidoc +BuildRequires: xmlto # for rhel6 %if 0%{?rhel} >= 6 @@ -101,6 +92,7 @@ Development libraries and headers for libreport. %package -n libreport-gtk Summary: GTK frontend for libreport Group: User Interface/Desktops +Requires: libreport = %{version}-%{release} %description -n libreport-gtk Applications for reporting bugs using libreport backend. @@ -124,7 +116,7 @@ Development libraries and headers for %{name}. Summary: %{name}'s gui Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} -Requires: libreport-gtk +Requires: libreport-gtk = %{version}-%{release} # we used to have abrt-applet, now abrt-gui includes it: Provides: abrt-applet = %{version}-%{release} Obsoletes: abrt-applet < 0.0.5 @@ -269,7 +261,7 @@ generation service over a network using HTTP protocol. %patch0 -p1 -b .libreport_py %patch1 -p1 -b .blacklist %patch2 -p1 -b bz_for_oops -%patch3 -p1 -b low_rating +%patch3 -p1 -b retrace_addr %build autoconf @@ -289,6 +281,7 @@ find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_initrddir}/abrtd install -m 755 %SOURCE2 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-ccpp +install -m 755 %SOURCE3 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-oops mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt @@ -333,10 +326,22 @@ fi %endif %post addon-ccpp +chown -R abrt:abrt %{_localstatedir}/cache/abrt-di #if [ $1 -eq 1 ]; then /sbin/chkconfig --add abrt-ccpp #fi -#systemd: TODO + +%if %{?with_systemd} +if [ "$1" -eq "0" ] ; then + /bin/systemctl stop abrt-ccpp.service >/dev/null 2>&1 || : + /bin/systemctl disable abrt-ccpp.service >/dev/null 2>&1 || : +fi +%endif + +%post addon-kerneloops +if [ $1 -eq 1 ]; then + /sbin/chkconfig --add abrt-oops +fi %post retrace-server /sbin/install-info %{_infodir}/abrt-retrace-server %{_infodir}/dir 2> /dev/null || : @@ -360,7 +365,26 @@ if [ "$1" -eq "0" ] ; then service abrt-ccpp stop >/dev/null 2>&1 /sbin/chkconfig --del abrt-ccpp fi -#systemd: TODO +#systemd (not tested): +%if %{?with_systemd} +if [ "$1" -eq "0" ] ; then + /bin/systemctl stop abrt-ccpp.service >/dev/null 2>&1 || : + /bin/systemctl disable abrt-ccpp.service >/dev/null 2>&1 || : +fi +%endif + +%preun addon-kerneloops +if [ "$1" -eq "0" ] ; then + service abrt-oops stop >/dev/null 2>&1 + /sbin/chkconfig --del abrt-oops +fi +#systemd (not tested): +%if %{?with_systemd} +if [ "$1" -eq "0" ] ; then + /bin/systemctl stop abrt-oops.service >/dev/null 2>&1 || : + /bin/systemctl disable abrt-oops.service >/dev/null 2>&1 || : +fi +%endif %preun retrace-server if [ "$1" = 0 ]; then @@ -411,8 +435,26 @@ if [ "$1" -eq "0" ]; then # from 1.x to 2.x without restarting service abrt-ccpp restart >/dev/null 2>&1 || : fi -#systemd: TODO +#systemd +%if %{?with_systemd} +if [ "$1" -eq "0" ]; then + /bin/systemctl try-restart abrt-ccpp.service >/dev/null 2>&1 || : +fi +%endif + +%posttrans addon-kerneloops +if [ "$1" -eq "0" ]; then + # this is a tmp hack to set-up the ccpp hook when updating + # from 1.x to 2.x without restarting + service abrt-oops restart >/dev/null 2>&1 || : +fi +#systemd +%if %{?with_systemd} +if [ "$1" -eq "0" ]; then + /bin/systemctl try-restart abrt-oops.service >/dev/null 2>&1 || : +fi +%endif %files -f %{name}.lang %defattr(-,root,root,-) @@ -443,9 +485,10 @@ fi %dir %{_sysconfdir}/%{name}/events #%dir %{_libdir}/%{name} %{_mandir}/man8/abrtd.8.gz -%{_mandir}/man5/%{name}.conf.5.gz +%{_mandir}/man5/abrt.conf.5.gz +%{_mandir}/man5/abrt_event.conf.5.gz # {_mandir}/man5/pyhook.conf.5.gz -%{_mandir}/man7/%{name}-plugins.7.gz +%{_mandir}/man7/abrt-plugins.7.gz %{_datadir}/dbus-1/system-services/com.redhat.abrt.service %files -n libreport @@ -504,7 +547,7 @@ fi %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files %attr(4755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo -%{_bindir}/abrt-action-analyzecore.py* +%{_bindir}/abrt-action-analyze-core.py* %{_bindir}/abrt-action-install-debuginfo.py* %{_bindir}/abrt-action-generate-backtrace %{_bindir}/abrt-action-analyze-backtrace @@ -514,12 +557,16 @@ fi %{_sysconfdir}/%{name}/events/reanalyze_LocalGDB.xml %{_sysconfdir}/%{name}/events/analyze_RetraceServer.xml %{_sysconfdir}/%{name}/events/reanalyze_RetraceServer.xml +%{_mandir}/man*/abrt-action-trim-files.* +%{_mandir}/man*/abrt-action-generate-backtrace.* +%{_mandir}/man*/abrt-action-analyze-backtrace.* %files addon-kerneloops %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/Kerneloops.conf %{_sysconfdir}/%{name}/events/report_Kerneloops.xml %config(noreplace) %{_sysconfdir}/%{name}/events.d/koops_events.conf +%{_initrddir}/abrt-oops %{_mandir}/man7/abrt-KerneloopsReporter.7.gz %{_bindir}/abrt-dump-oops %{_bindir}/abrt-action-analyze-oops @@ -530,12 +577,14 @@ fi %{_sysconfdir}/%{name}/events/report_Logger.conf %{_mandir}/man7/abrt-Logger.7.gz %{_bindir}/abrt-action-print +%{_mandir}/man*/abrt-action-print.* %files plugin-mailx %defattr(-,root,root,-) %{_sysconfdir}/%{name}/events/report_Mailx.xml %config(noreplace) %{_sysconfdir}/%{name}/events.d/mailx_events.conf %{_mandir}/man7/abrt-Mailx.7.gz +%{_mandir}/man*/abrt-action-mailx.* %{_bindir}/abrt-action-mailx %files plugin-bugzilla @@ -595,6 +644,49 @@ fi %{_infodir}/abrt-retrace-server* %changelog +* Thu May 05 2011 Jiri Moskovcak 2.0.2-1 +- updated translation +- new icons (thanks to Lapo Calamandrei) +- changed address of retrace01 to retrace +- fixed problem with not trusted ssl certificate #695977 +- #692713 Dialogue Box Buttons Wrong Way Around +- #695452 abrt crashing when trying to generate backtrace +- #698458 RFE: report separators between reports in abrt.log +- #699098 999 futile attempts to delete excess debuginfo +- #691881 GUI doesn't sort by last occurrence by default, and doesn't remember that sort order if you set it and restart the app +- #698418 Can't access '/var/spool/abrt/ccpp-2011-04-18-11:53:22-2661': Permission denied +- #698934 abrt-applet segfault on abrtd restart +- #695450 Retrace client - show meaningful message on failure +- #616407 RFE: Change abrt to catch TRAP signal crashes +- #584352 running service abrtd a non-root user doesn't show error +- retrace client: fail on servers with problematic SSL certificates (kklic@redhat.com) +- retrace-client: Load system-wide certificates. Move NSS init/shutdown to main, as it shouldn't be run multiple times. (kklic@redhat.com) +- abrt-cli: update manpage. Closes #243 (dvlasenk@redhat.com) +- move abrt-handle-crashdump to abrt-cli package. No code changes (dvlasenk@redhat.com) +- add abrt-action-print manpage. Closes #238 (dvlasenk@redhat.com) +- add abrt-action-trim-files manpage. Closes #241 (dvlasenk@redhat.com) +- added abrt-action-generate-backtrace manpage (dvlasenk@redhat.com) +- add abrt-action-analyze-backtrace manpage. Closes #227 (dvlasenk@redhat.com) +- retrace server: do not create zombie workers (mtoman@redhat.com) +- btparser: Remove top frame with address 0x0000 (jump to NULL) during normalization to avoid incorrect backtrace ratings (rhbz#639049) (kklic@redhat.com) +- abrt-gui: better list refreshing. Closes #251 (dvlasenk@redhat.com) +- fix for spurious "Lock file 'DIR/.lock' is locked by process PID" message (dvlasenk@redhat.com) +- Asciidoc manpage support; abrt-action-mailx manpage (kklic@redhat.com) +- list-dsos: don't list the same library multiple times (jmoskovc@redhat.com) +- call abrt-action-trim-files from abrt-action-install-debuginfo (dvlasenk@redhat.com) +- list-dsos: added package install time trac#123 (jmoskovc@redhat.com) +- retrace client: handle messages in HTTP body (mtoman@redhat.com) +- retrace server: remove chroot on failure (mtoman@redhat.com) +- spec: use versioned deps on libreport (jmoskovc@redhat.com) +- generate abrt version from git (npajkovs@redhat.com) +- abrt-action-trim-files needs to be suided rhbz#699098 (jmoskovc@redhat.com) +- gui: suppress printing dumpdir access errors (bz#698418) (mlichvar@redhat.com) +- Do not leave dump dir locked by abrt-action-generate-backtrace. (kklic@redhat.com) +- wizard: expand explanatory text on 1st screen. Closes 201 (dvlasenk@redhat.com) +- gui: fixed the OK and CANCEL buttons order in event config dialog (jmoskovc@redhat.com) +- Make abrt-action-list-dsos.py take -m maps -o dsos params; and abrt-action-analyze-core.py to take -o build_ids param (dvlasenk@redhat.com) +- abrt-action-install-debuginfo.py: don't die on some Yum exceptions. closes bz#681281 (dvlasenk@redhat.com) + * Thu Apr 21 2011 Jiri Moskovcak 2.0.1-2 - don't allow reporting of backtrace with rating = 0 rhbz#672023 - use versioned deps on libreport diff --git a/retrace_addr.patch b/retrace_addr.patch new file mode 100644 index 0000000..21c94bc --- /dev/null +++ b/retrace_addr.patch @@ -0,0 +1,19 @@ +commit 1886eee8e109daa5e8db4e0938533b6dcff17b3f +Author: Karel Klic +Date: Thu May 5 17:39:07 2011 +0200 + + URL retrace01.fpo.org -> retrace.fpo.org + +diff --git a/src/plugins/analyze_RetraceServer.xml.in b/src/plugins/analyze_RetraceServer.xml.in +index f91bf76..497fa13 100644 +--- a/src/plugins/analyze_RetraceServer.xml.in ++++ b/src/plugins/analyze_RetraceServer.xml.in +@@ -9,7 +9,7 @@ + + diff --git a/sources b/sources index 1f0bee7..2b87354 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ead5853a19b070f548a887755fb015f1 abrt-2.0.1.tar.gz +1fb7c2a297dccf206043f764676ead2c abrt-2.0.2.tar.gz From 3c86bd28e8158a2d5ead2c147e4ce771f801652f Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 6 May 2011 13:05:02 +0200 Subject: [PATCH 016/318] flush messages in retrace client --- abrt.spec | 7 ++++++- retrace_client_flush.patch | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 retrace_client_flush.patch diff --git a/abrt.spec b/abrt.spec index 36c7459..a77833c 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -22,6 +22,7 @@ Patch0: remove_libreport_python.patch Patch1: blacklist.patch Patch2: allow_bz_for_koops.patch Patch3: retrace_addr.patch +Patch4: retrace_client_flush.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -262,6 +263,7 @@ generation service over a network using HTTP protocol. %patch1 -p1 -b .blacklist %patch2 -p1 -b bz_for_oops %patch3 -p1 -b retrace_addr +%patch4 -p1 -b flush_messages %build autoconf @@ -644,6 +646,9 @@ fi %{_infodir}/abrt-retrace-server* %changelog +* Fri May 06 2011 Jiri Moskovcak 2.0.2-2 +- flush messages in retrace client + * Thu May 05 2011 Jiri Moskovcak 2.0.2-1 - updated translation - new icons (thanks to Lapo Calamandrei) diff --git a/retrace_client_flush.patch b/retrace_client_flush.patch new file mode 100644 index 0000000..11a62ec --- /dev/null +++ b/retrace_client_flush.patch @@ -0,0 +1,18 @@ +commit a74f116ad098343282f5be157fd59e4e4aba4705 +Author: Michal Toman +Date: Fri May 6 11:25:55 2011 +0200 + + retrace client: flush stdout after each status message in batch mode + +diff --git a/src/plugins/abrt-retrace-client.c b/src/plugins/abrt-retrace-client.c +index 5ade792..1d46a8c 100644 +--- a/src/plugins/abrt-retrace-client.c ++++ b/src/plugins/abrt-retrace-client.c +@@ -844,6 +844,7 @@ static int run_batch(bool delete_temp_archive) + sleep(10); + status(task_id, task_password, &task_status, &status_message); + puts(status_message); ++ fflush(stdout); + } + if (0 == strcmp(task_status, "FINISHED_SUCCESS")) + { From 1a8f58d7cc2697c23881109a41bcea5bea94bab3 Mon Sep 17 00:00:00 2001 From: Christopher Aillon Date: Fri, 6 May 2011 15:35:10 -0700 Subject: [PATCH 017/318] Update icon cache scriptlet per packaging guidelines See http://fedoraproject.org/wiki/Packaging:ScriptletSnippets#Icon_Cache --- abrt.spec | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/abrt.spec b/abrt.spec index a77833c..f90d0a9 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -403,20 +403,16 @@ fi %endif %post gui -# update icon cache -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ]; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : -fi +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %postun gui -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ]; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans @@ -458,6 +454,9 @@ if [ "$1" -eq "0" ]; then fi %endif +%posttrans gui +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING @@ -646,6 +645,9 @@ fi %{_infodir}/abrt-retrace-server* %changelog +* Fri May 06 2011 Christopher Aillon - 2.0.2-3 +- Update icon cache scriptlet per packaging guidelines + * Fri May 06 2011 Jiri Moskovcak 2.0.2-2 - flush messages in retrace client From 619e30432ad949e0bcd1046d0c062613b795be47 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Sun, 8 May 2011 21:27:35 +0200 Subject: [PATCH 018/318] fixed prgname in gui apps - fixes problem with lowres icons in gnome3 --- abrt.spec | 8 +++++++- prgname.patch | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 prgname.patch diff --git a/abrt.spec b/abrt.spec index f90d0a9..d3413e1 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -23,6 +23,7 @@ Patch1: blacklist.patch Patch2: allow_bz_for_koops.patch Patch3: retrace_addr.patch Patch4: retrace_client_flush.patch +Patch5: prgname.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -264,6 +265,7 @@ generation service over a network using HTTP protocol. %patch2 -p1 -b bz_for_oops %patch3 -p1 -b retrace_addr %patch4 -p1 -b flush_messages +%patch5 -p1 -b prgname %build autoconf @@ -645,6 +647,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_infodir}/abrt-retrace-server* %changelog +* Sun May 08 2011 Jiri Moskovcak 2.0.2-4 +- fixed prgname, fixes problem where Gnome3 shows lowres icons instead + nice highres ones + * Fri May 06 2011 Christopher Aillon - 2.0.2-3 - Update icon cache scriptlet per packaging guidelines diff --git a/prgname.patch b/prgname.patch new file mode 100644 index 0000000..2b003ee --- /dev/null +++ b/prgname.patch @@ -0,0 +1,51 @@ +commit e4200116d227ac159d45d84bfbdbaf85d188c4bb +Author: Denys Vlasenko +Date: Fri May 6 22:27:40 2011 +0200 + + reinstated g_set_prgname("abrt") + + Signed-off-by: Denys Vlasenko + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index e965a3b..aff8284 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -221,7 +221,7 @@ int main(int argc, char** argv) + + /* Parse options */ + int opt; +- while ((opt = getopt(argc, argv, "dv")) != -1) ++ while ((opt = getopt(argc, argv, "v")) != -1) + { + switch (opt) + { +diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c +index e9b175a..39d9f7e 100644 +--- a/src/gui-gtk/main.c ++++ b/src/gui-gtk/main.c +@@ -204,6 +204,8 @@ int main(int argc, char **argv) + * desktops which uses the name to find the corresponding .desktop file + * trac#180 + */ ++ g_set_prgname("abrt"); ++ + gtk_init(&argc, &argv); + + /* Can't keep these strings/structs static: _() doesn't support that */ +diff --git a/src/gui-wizard-gtk/main.c b/src/gui-wizard-gtk/main.c +index d1341b4..cdcf9e4 100644 +--- a/src/gui-wizard-gtk/main.c ++++ b/src/gui-wizard-gtk/main.c +@@ -69,6 +69,12 @@ int main(int argc, char **argv) + textdomain(PACKAGE); + #endif + ++ /* without this the name is set to argv[0] which confuses ++ * desktops which uses the name to find the corresponding .desktop file ++ * trac#180 ++ */ ++ g_set_prgname("abrt"); ++ + gtk_init(&argc, &argv); + + /* Can't keep these strings/structs static: _() doesn't support that */ From 2ab5b1900ea85c8966b480115e41aee42636ce1d Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Fri, 13 May 2011 18:42:30 +0200 Subject: [PATCH 019/318] Do not force service startup in %posttrans, as it breaks live media creation (rhbz#704415) --- abrt.spec | 42 ++++++++---------------------------------- 1 file changed, 8 insertions(+), 34 deletions(-) diff --git a/abrt.spec b/abrt.spec index d3413e1..296fe76 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -418,43 +418,13 @@ if [ $1 -eq 0 ] ; then fi %posttrans -if [ "$1" -eq "0" ]; then - service abrtd condrestart >/dev/null 2>&1 || : -fi -#systemd -%if %{?with_systemd} -if [ "$1" -eq "0" ]; then - /bin/systemctl try-restart abrtd.service >/dev/null 2>&1 || : -fi -%endif +service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp -if [ "$1" -eq "0" ]; then - #service abrt-ccpp condrestart >/dev/null 2>&1 || : - # this is a tmp hack to set-up the ccpp hook when updating - # from 1.x to 2.x without restarting - service abrt-ccpp restart >/dev/null 2>&1 || : -fi - -#systemd -%if %{?with_systemd} -if [ "$1" -eq "0" ]; then - /bin/systemctl try-restart abrt-ccpp.service >/dev/null 2>&1 || : -fi -%endif +service abrt-ccpp condrestart >/dev/null 2>&1 || : %posttrans addon-kerneloops -if [ "$1" -eq "0" ]; then - # this is a tmp hack to set-up the ccpp hook when updating - # from 1.x to 2.x without restarting - service abrt-oops restart >/dev/null 2>&1 || : -fi -#systemd -%if %{?with_systemd} -if [ "$1" -eq "0" ]; then - /bin/systemctl try-restart abrt-oops.service >/dev/null 2>&1 || : -fi -%endif +service abrt-oops condrestart >/dev/null 2>&1 || : %posttrans gui gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : @@ -647,6 +617,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_infodir}/abrt-retrace-server* %changelog +* Fri May 13 2011 Karel Klíč - 2.0.2-5 +- Do not force service startup in %%posttrans, as it breaks live media + creation (rhbz#704415) + * Sun May 08 2011 Jiri Moskovcak 2.0.2-4 - fixed prgname, fixes problem where Gnome3 shows lowres icons instead nice highres ones From c86d72c550e3950885d6e8b0281e03be49e1cdad Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 21 Jun 2011 13:34:25 +0200 Subject: [PATCH 020/318] new upstream version - 2.0.3 --- .gitignore | 1 + abrt.spec | 332 +++++++++++++++++++++-------------------------------- sources | 2 +- 3 files changed, 132 insertions(+), 203 deletions(-) diff --git a/.gitignore b/.gitignore index fe925cd..3ca2637 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ abrt-1.1.13.tar.gz /abrt-2.0.0.tar.gz /abrt-2.0.1.tar.gz /abrt-2.0.2.tar.gz +/abrt-2.0.3.tar.gz diff --git a/abrt.spec b/abrt.spec index 296fe76..5648541 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1,16 +1,16 @@ -%{!?python_site: %define python_site %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} +%{!?python_site: %global python_site %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} # platform-dependent -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%if 0%{?fedora} >= 14 - %define with_systemd 1 +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%if 0%{?fedora} >= 16 + %bcond_without systemd %else - %define with_systemd 0 + %bcond_with systemd %endif Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.2 -Release: 5%{?dist} +Version: 2.0.3 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -18,12 +18,8 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt.init Source2: abrt-ccpp.init Source3: abrt-oops.init -Patch0: remove_libreport_python.patch -Patch1: blacklist.patch -Patch2: allow_bz_for_koops.patch -Patch3: retrace_addr.patch -Patch4: retrace_client_flush.patch -Patch5: prgname.patch +Patch0: blacklist.patch +Patch1: allow_bz_for_koops.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: curl-devel @@ -31,7 +27,6 @@ BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel BuildRequires: xmlrpc-c-devel -BuildRequires: file-devel BuildRequires: python-devel BuildRequires: gettext BuildRequires: libxml2-devel @@ -39,9 +34,10 @@ BuildRequires: libtar-devel BuildRequires: intltool BuildRequires: libtool BuildRequires: nss-devel -BuildRequires: texinfo BuildRequires: asciidoc BuildRequires: xmlto +BuildRequires: libreport-devel +BuildRequires: btparser-devel # for rhel6 %if 0%{?rhel} >= 6 @@ -50,12 +46,11 @@ BuildRequires: gnome-keyring-devel BuildRequires: libgnome-keyring-devel %endif -%if %{?with_systemd} +%if %{with systemd} Requires: systemd-units %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} -Requires: libreport = %{version}-%{release} Requires(pre): shadow-utils Obsoletes: abrt-plugin-sqlite3 > 0.0.1 # required for transition from 1.1.13, can be removed after some time @@ -68,37 +63,6 @@ Obsoletes: abrt-plugin-sosreport > 0.0.1 to create a bug report with all informations needed by maintainer to fix it. It uses plugin system to extend its functionality. -%package -n libreport -Summary: Libraries for reporting crashes to different targets. -Group: System Environment/Libraries - -%description -n libreport -Libraries providing API for reporting different problems in applications -to different bug targets like bugzilla, ftp, trac, etc... - -%package -n libreport-devel -Summary: Development libraries and headers for libreport. -Group: Development/Libraries - -%description -n libreport-devel -Development libraries and headers for libreport. - -#%package -n libreport-python -#Summary: Python bindings for report-libs. -## Is group correct here? - -#Group: System Environment/Libraries - -#%description -n libreport-python -#Python bindings for report-libs. - -%package -n libreport-gtk -Summary: GTK frontend for libreport -Group: User Interface/Desktops -Requires: libreport = %{version}-%{release} - -%description -n libreport-gtk -Applications for reporting bugs using libreport backend. - %package libs Summary: Libraries for %{name} Group: System Environment/Libraries @@ -118,7 +82,7 @@ Development libraries and headers for %{name}. Summary: %{name}'s gui Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} -Requires: libreport-gtk = %{version}-%{release} +BuildRequires: libreport-gtk-devel # we used to have abrt-applet, now abrt-gui includes it: Provides: abrt-applet = %{version}-%{release} Obsoletes: abrt-applet < 0.0.5 @@ -213,6 +177,7 @@ uncaught exception in python programs. Summary: %{name}'s command line interface Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} +Requires: libreport-cli Requires: abrt-addon-kerneloops Requires: abrt-addon-ccpp, abrt-addon-python Requires: abrt-plugin-bugzilla, abrt-plugin-logger @@ -243,29 +208,10 @@ Provides: bug-buddy %description desktop Virtual package to make easy default installation on desktop environments. -%package retrace-server -Summary: %{name}'s retrace server using HTTP protocol -Group: System Environment/Daemons -Requires: abrt-addon-ccpp -Requires: gdb >= 7.0-3 -Requires: httpd, mod_wsgi, mod_ssl, python-webob -Requires: mock, xz, elfutils, createrepo, rsync -%{?el6:Requires: python-argparse} -Requires(preun): /sbin/install-info -Requires(post): /sbin/install-info - -%description retrace-server -The retrace server provides a coredump analysis and backtrace -generation service over a network using HTTP protocol. - %prep %setup -q -%patch0 -p1 -b .libreport_py -%patch1 -p1 -b .blacklist -%patch2 -p1 -b bz_for_oops -%patch3 -p1 -b retrace_addr -%patch4 -p1 -b flush_messages -%patch5 -p1 -b prgname +%patch0 -p1 -b .blacklist +%patch1 -p1 -b bz_for_oops %build autoconf @@ -283,16 +229,17 @@ make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} # remove all .la and .a files find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} +%if ! %{with systemd} install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_initrddir}/abrtd install -m 755 %SOURCE2 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-ccpp install -m 755 %SOURCE3 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-oops +%endif mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt -mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-retrace -mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-retrace -mkdir -p $RPM_BUILD_ROOT/var/log/abrt-retrace mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload +# compat before we split abrt-cli and report-cli +ln -s %{_bindir}/report-cli $RPM_BUILD_ROOT/%{_bindir}/abrt-cli desktop-file-install \ --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ @@ -319,92 +266,85 @@ exit 0 %post if [ $1 -eq 1 ]; then -/sbin/chkconfig --add abrtd -fi -#systemd -%if %{?with_systemd} -#if [ $1 -eq 1 ]; then -# Enable (but don't start) the units by default - /bin/systemctl enable abrtd.service >/dev/null 2>&1 || : -#fi +%if %{with systemd} + # Enable (but don't start) the units by default + /bin/systemctl enable abrtd.service >/dev/null 2>&1 || : +%else + /sbin/chkconfig --add abrtd %endif +fi %post addon-ccpp +# this is required for transition from 1.1.x to 2.x +# because /cache/abrt-di/* was created under root with root:root +# so 2.x fails when it tries to extract debuginfo there.. chown -R abrt:abrt %{_localstatedir}/cache/abrt-di -#if [ $1 -eq 1 ]; then -/sbin/chkconfig --add abrt-ccpp -#fi - -%if %{?with_systemd} -if [ "$1" -eq "0" ] ; then - /bin/systemctl stop abrt-ccpp.service >/dev/null 2>&1 || : - /bin/systemctl disable abrt-ccpp.service >/dev/null 2>&1 || : -fi +if [ $1 -eq 1 ]; then +%if %{with systemd} + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : +%else + /sbin/chkconfig --add abrt-ccpp %endif +fi %post addon-kerneloops if [ $1 -eq 1 ]; then +%if %{with systemd} + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : +%else /sbin/chkconfig --add abrt-oops +%endif fi -%post retrace-server -/sbin/install-info %{_infodir}/abrt-retrace-server %{_infodir}/dir 2> /dev/null || : -/usr/sbin/usermod -G mock apache 2> /dev/null || : - %preun if [ "$1" -eq "0" ] ; then - service abrtd stop >/dev/null 2>&1 - /sbin/chkconfig --del abrtd -fi -#systemd -%if %{?with_systemd} -if [ "$1" -eq "0" ] ; then - /bin/systemctl stop abrtd.service >/dev/null 2>&1 || : - /bin/systemctl disable abrtd.service >/dev/null 2>&1 || : -fi +%if %{with systemd} + /bin/systemctl --no-reload disable abrtd.service > /dev/null 2>&1 || : + /bin/systemctl stop abrtd.service >/dev/null 2>&1 || : +%else + service abrtd stop >/dev/null 2>&1 + /sbin/chkconfig --del abrtd %endif +fi %preun addon-ccpp if [ "$1" -eq "0" ] ; then - service abrt-ccpp stop >/dev/null 2>&1 - /sbin/chkconfig --del abrt-ccpp -fi -#systemd (not tested): -%if %{?with_systemd} -if [ "$1" -eq "0" ] ; then +%if %{with systemd} + /bin/systemctl --no-reload disable abrt-ccpp.service >/dev/null 2>&1 || : /bin/systemctl stop abrt-ccpp.service >/dev/null 2>&1 || : - /bin/systemctl disable abrt-ccpp.service >/dev/null 2>&1 || : -fi +%else + service abrt-ccpp stop >/dev/null 2>&1 + /sbin/chkconfig --del abrt-ccpp %endif +fi %preun addon-kerneloops if [ "$1" -eq "0" ] ; then +%if %{with systemd} + /bin/systemctl --no-reload abrt-oops.service >/dev/null 2>&1 || : + /bin/systemctl stop abrt-oops.service >/dev/null 2>&1 || : +%else service abrt-oops stop >/dev/null 2>&1 /sbin/chkconfig --del abrt-oops -fi -#systemd (not tested): -%if %{?with_systemd} -if [ "$1" -eq "0" ] ; then - /bin/systemctl stop abrt-oops.service >/dev/null 2>&1 || : - /bin/systemctl disable abrt-oops.service >/dev/null 2>&1 || : -fi %endif - -%preun retrace-server -if [ "$1" = 0 ]; then - /sbin/install-info --delete %{_infodir}/abrt-retrace-server %{_infodir}/dir 2> /dev/null || : fi +%if %{with systemd} %postun -#systemd -%if %{?with_systemd} -if [ $1 -ge 1 ] ; then -# On upgrade, reload init system configuration if we changed unit files - /bin/systemctl daemon-reload >/dev/null 2>&1 || : -fi +/bin/systemctl daemon-reload >/dev/null 2>&1 || : + +%postun addon-kerneloops +/bin/systemctl daemon-reload >/dev/null 2>&1 || : + +%postun addon-ccpp +/bin/systemctl daemon-reload >/dev/null 2>&1 || : + %endif %post gui +# update icon cache touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %post libs -p /sbin/ldconfig @@ -432,71 +372,48 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING -#systemd -%if %{?with_systemd} +%if %{with systemd} /lib/systemd/system/abrtd.service +%else +%{_initrddir}/abrtd %endif %{_sbindir}/abrtd %{_sbindir}/abrt-server %{_bindir}/abrt-handle-upload -%{_bindir}/abrt-handle-crashdump %{_bindir}/abrt-action-save-package-data %{_bindir}/abrt-retrace-client %config(noreplace) %{_sysconfdir}/%{name}/abrt.conf -%config(noreplace) %{_sysconfdir}/%{name}/abrt_event.conf %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys +%config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf -%{_initrddir}/abrtd +%config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf %dir %attr(0755, abrt, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload %dir %attr(0775, abrt, abrt) %{_localstatedir}/run/%{name} %ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket %ghost %attr(0644, -, -) %{_localstatedir}/run/abrtd.pid + %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins -%dir %{_sysconfdir}/%{name}/events.d -%dir %{_sysconfdir}/%{name}/events #%dir %{_libdir}/%{name} %{_mandir}/man8/abrtd.8.gz %{_mandir}/man5/abrt.conf.5.gz %{_mandir}/man5/abrt_event.conf.5.gz # {_mandir}/man5/pyhook.conf.5.gz %{_mandir}/man7/abrt-plugins.7.gz +%{_mandir}/man1/abrt-retrace-client.1.gz %{_datadir}/dbus-1/system-services/com.redhat.abrt.service -%files -n libreport -%defattr(-,root,root,-) -%{_libdir}/libreport.so.* - -%files -n libreport-devel -%defattr(-,root,root,-) -%{_includedir}/report/* -%{_libdir}/libreport.so - -#%files -n libreport-python -#%defattr(-,root,root,-) -#%{python_sitearch}/report/* - -%files -n libreport-gtk -%defattr(-,root,root,-) -%{_bindir}/bug-reporting-wizard -%{_libdir}/libreportgtk.so.* - %files libs %defattr(-,root,root,-) %{_libdir}/libabrt*.so.* -%{_libdir}/libbtparser.so.* %files devel %defattr(-,root,root,-) %{_includedir}/abrt/* %{_libdir}/libabrt*.so -%{_includedir}/btparser/* -%{_libdir}/libbtparser.so #FIXME: this should go to libreportgtk-devel package -%{_libdir}/libreportgtk.so %{_libdir}/pkgconfig/* -%doc doc/abrt-plugin doc/howto-write-reporter %files gui %defattr(-,root,root,-) @@ -515,71 +432,78 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di +%if %{with systemd} +/lib/systemd/system/abrt-ccpp.service +%else %{_initrddir}/abrt-ccpp +%endif %{_libexecdir}/abrt-hook-ccpp %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files -%attr(4755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo +%attr(4755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo-to-abrt-cache %{_bindir}/abrt-action-analyze-core.py* -%{_bindir}/abrt-action-install-debuginfo.py* +%{_bindir}/abrt-action-install-debuginfo %{_bindir}/abrt-action-generate-backtrace %{_bindir}/abrt-action-analyze-backtrace %{_bindir}/abrt-action-list-dsos.py* -%{_sysconfdir}/%{name}/events.d/ccpp_events.conf -%{_sysconfdir}/%{name}/events/analyze_LocalGDB.xml -%{_sysconfdir}/%{name}/events/reanalyze_LocalGDB.xml -%{_sysconfdir}/%{name}/events/analyze_RetraceServer.xml -%{_sysconfdir}/%{name}/events/reanalyze_RetraceServer.xml +%{_sbindir}/abrt-install-ccpp-hook +%{_sysconfdir}/libreport/events.d/ccpp_events.conf +%{_sysconfdir}/libreport/events/analyze_LocalGDB.xml +%{_sysconfdir}/libreport/events/analyze_RetraceServer.xml +%{_sysconfdir}/libreport/events/analyze_xsession_errors.xml %{_mandir}/man*/abrt-action-trim-files.* %{_mandir}/man*/abrt-action-generate-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* +%{_mandir}/man*/abrt-action-list-dsos.* %files addon-kerneloops %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/Kerneloops.conf -%{_sysconfdir}/%{name}/events/report_Kerneloops.xml -%config(noreplace) %{_sysconfdir}/%{name}/events.d/koops_events.conf +%config(noreplace) %{_sysconfdir}/libreport/plugins/Kerneloops.conf +%{_sysconfdir}/libreport/events/report_Kerneloops.xml +%config(noreplace) %{_sysconfdir}/libreport/events.d/koops_events.conf +%if %{with systemd} +/lib/systemd/system/abrt-oops.service +%else %{_initrddir}/abrt-oops -%{_mandir}/man7/abrt-KerneloopsReporter.7.gz +%endif +%{_mandir}/man*/abrt-action-kerneloops.* %{_bindir}/abrt-dump-oops %{_bindir}/abrt-action-analyze-oops %{_bindir}/abrt-action-kerneloops %files plugin-logger %defattr(-,root,root,-) -%{_sysconfdir}/%{name}/events/report_Logger.conf -%{_mandir}/man7/abrt-Logger.7.gz +%{_sysconfdir}/libreport/events/report_Logger.conf %{_bindir}/abrt-action-print %{_mandir}/man*/abrt-action-print.* %files plugin-mailx %defattr(-,root,root,-) -%{_sysconfdir}/%{name}/events/report_Mailx.xml -%config(noreplace) %{_sysconfdir}/%{name}/events.d/mailx_events.conf -%{_mandir}/man7/abrt-Mailx.7.gz +%{_sysconfdir}/libreport/events/report_Mailx.xml +%config(noreplace) %{_sysconfdir}/libreport/events.d/mailx_events.conf %{_mandir}/man*/abrt-action-mailx.* %{_bindir}/abrt-action-mailx %files plugin-bugzilla %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/Bugzilla.conf -%{_sysconfdir}/%{name}/events/report_Bugzilla.xml -%config(noreplace) %{_sysconfdir}/%{name}/events/report_Bugzilla.conf +%config(noreplace) %{_sysconfdir}/libreport/plugins/Bugzilla.conf +%{_sysconfdir}/libreport/events/report_Bugzilla.xml +%config(noreplace) %{_sysconfdir}/libreport/events/report_Bugzilla.conf # FIXME: remove with the old gui -%{_mandir}/man7/abrt-Bugzilla.7.gz +%{_mandir}/man1/abrt-action-bugzilla.1.gz %{_bindir}/abrt-action-bugzilla %files plugin-rhtsupport %defattr(-,root,root,-) -%{_sysconfdir}/%{name}/events/report_RHTSupport.xml -%config(noreplace) %{_sysconfdir}/%{name}/events.d/rhtsupport_events.conf +%{_sysconfdir}/libreport/events/report_RHTSupport.xml +%config(noreplace) %{_sysconfdir}/libreport/events.d/rhtsupport_events.conf # {_mandir}/man7/abrt-RHTSupport.7.gz %{_bindir}/abrt-action-rhtsupport %files plugin-reportuploader %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/Upload.conf -%{_mandir}/man7/abrt-Upload.7.gz +%config(noreplace) %{_sysconfdir}/libreport/plugins/Upload.conf +%{_mandir}/man*/abrt-action-upload.* %{_bindir}/abrt-action-upload %files addon-python @@ -592,31 +516,17 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files cli %defattr(-,root,root,-) %{_bindir}/abrt-cli -%{_mandir}/man1/abrt-cli.1.gz -%{_sysconfdir}/bash_completion.d/abrt-cli.bash %files desktop %defattr(-,root,root,-) -%files retrace-server -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/retrace.conf -%config(noreplace) %{_sysconfdir}/httpd/conf.d/retrace_httpd.conf -%config(noreplace) %{_sysconfdir}/yum.repos.d/retrace.repo -%dir %attr(0775, apache, abrt) %{_localstatedir}/spool/abrt-retrace -%dir %attr(0755, abrt, abrt) %{_localstatedir}/cache/abrt-retrace -%dir %attr(0755, abrt, abrt) %{_localstatedir}/log/abrt-retrace -%caps(cap_setuid=ep) %{_bindir}/abrt-retrace-worker -%{_bindir}/abrt-retrace-cleanup -%{_bindir}/abrt-retrace-reposync -%{_bindir}/coredump2packages -%{python_site}/retrace.py* -%{_datadir}/abrt-retrace/*.py* -%{_datadir}/abrt-retrace/plugins/*.py* -%{_datadir}/abrt-retrace/*.wsgi -%{_infodir}/abrt-retrace-server* - %changelog +* Mon Jun 20 2011 Jiri Moskovcak - 2.0.3-1 +- new upstream release + +* Fri May 20 2011 Jiri Moskovcak - 2.0.2-6 +- make abrt-ccpp and abrt-oops start on boot + * Fri May 13 2011 Karel Klíč - 2.0.2-5 - Do not force service startup in %%posttrans, as it breaks live media creation (rhbz#704415) @@ -692,6 +602,24 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - fixed gpg/pgp check - revert to the old icon +* Fri Apr 15 2011 Jiri Moskovcak 2.0.0-5 +- fixed problem with abrt-action-debuginfo-install rhbz#692064 + +* Thu Mar 31 2011 Jiri Moskovcak 2.0.0-4 +- fixed prgname in wizard rhbz#692442 + +* Wed Mar 30 2011 Jiri Moskovcak 2.0.0-3 +- fixed notification persistence in gnome3 (again) +- fixed wrong group:user on /var/cache/abrt-di afte rupdate from abrt 1.x #692064 +- added mono-core to blacklist + +* Tue Mar 29 2011 Jiri Moskovcak 2.0.0-2 +- use %ghost on files in /var/run and /var/lock rhbz#656542 +- fixed notification persistence in gnome3 +- added analyze selector to CLI +- refuse reporting to bz without backtrace or hash +- use g_set_prgname to set the prgname of abrt-gui trac#180 + * Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 - update to the latest upstream version - many improvements diff --git a/sources b/sources index 2b87354..7440165 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1fb7c2a297dccf206043f764676ead2c abrt-2.0.2.tar.gz +8adb9d85d11dc1fcef43fbebfa129bbd abrt-2.0.3.tar.gz From a420795f354c8979ba79f47fd48e3b0a099387ec Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 21 Jul 2011 20:44:27 +0200 Subject: [PATCH 021/318] fixed problems with wrong obsoletes/provides rhbz#723376 --- ...reporter-children-with-LIBREPORT_GET.patch | 40 ++ ...in-window-in-2-panes-reported-not-re.patch | 354 ++++++++++++++++++ ...rgotten-abrt-action-kerneloops-files.patch | 268 +++++++++++++ ...all-debuginfo-ask-before-downloading.patch | 71 ++++ abrt.spec | 138 ++----- blacklist.patch | 12 +- low_bt_rating.patch | 20 - prgname.patch | 51 --- remove_libreport_python.patch | 6 - retrace_addr.patch | 19 - retrace_client_flush.patch | 18 - 11 files changed, 770 insertions(+), 227 deletions(-) create mode 100644 0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch create mode 100644 0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch create mode 100644 0003-remove-forgotten-abrt-action-kerneloops-files.patch create mode 100644 0004-install-debuginfo-ask-before-downloading.patch delete mode 100644 low_bt_rating.patch delete mode 100644 prgname.patch delete mode 100644 remove_libreport_python.patch delete mode 100644 retrace_addr.patch delete mode 100644 retrace_client_flush.patch diff --git a/0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch b/0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch new file mode 100644 index 0000000..6205f10 --- /dev/null +++ b/0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch @@ -0,0 +1,40 @@ +From 1f52667a18026dba4050368e5d2501ec6145e071 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Thu, 21 Jul 2011 09:50:56 +0200 +Subject: [PATCH 1/4] abrt-gui: launch reporter children with LIBREPORT_GETPID + +By using LIBREPORT_NOWAIT | LIBREPORT_GETPID in abt-gui, +we make it so that reporter's SIGCHLD reaches abrt-gui +and lets it refresh the list. + +Signed-off-by: Denys Vlasenko +--- + src/gui-gtk/main.c | 5 ++--- + 1 files changed, 2 insertions(+), 3 deletions(-) + +diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c +index b62e8c0..1409191 100644 +--- a/src/gui-gtk/main.c ++++ b/src/gui-gtk/main.c +@@ -204,7 +204,7 @@ static void on_row_activated_cb(GtkTreeView *treeview, GtkTreePath *path, GtkTre + gtk_tree_model_get_value(store, &iter, COLUMN_DUMP_DIR, &d_dir); + + const char *dirname = g_value_get_string(&d_dir); +- report_problem_in_dir(dirname, LIBREPORT_ANALYZE | LIBREPORT_NOWAIT); ++ report_problem_in_dir(dirname, LIBREPORT_ANALYZE | LIBREPORT_NOWAIT | LIBREPORT_GETPID); + } + } + } +@@ -293,8 +293,7 @@ static void on_button_send_cb(GtkWidget *button, gpointer data) + /* why it doesn't want to hide before report ends? */ + gtk_widget_destroy(s_report_window); + +- int status = report_problem_in_memory(pd, LIBREPORT_NOWAIT); +- VERB1 log("Reporting finished with status %i", status); ++ report_problem_in_memory(pd, LIBREPORT_NOWAIT | LIBREPORT_GETPID); + free_problem_data(pd); + } + +-- +1.7.6 + diff --git a/0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch b/0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch new file mode 100644 index 0000000..dd973e2 --- /dev/null +++ b/0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch @@ -0,0 +1,354 @@ +From 3f3655980007d39e0377e76a49fd2937f43f0be7 Mon Sep 17 00:00:00 2001 +From: Jiri Moskovcak +Date: Thu, 21 Jul 2011 11:02:11 +0200 +Subject: [PATCH 2/4] gui: split the main window in 2 panes - + reported/not-reported + +--- + src/gui-gtk/main.c | 215 ++++++++++++++++++++++++++++++++++++++++++++-------- + 1 files changed, 182 insertions(+), 33 deletions(-) + +diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c +index 1409191..776e85a 100644 +--- a/src/gui-gtk/main.c ++++ b/src/gui-gtk/main.c +@@ -32,7 +32,9 @@ static const char help_uri[] = "http://docs.fedoraproject.org/en-US/" + "Fedora/14/html/Deployment_Guide/ch-abrt.html"; + + static GtkListStore *s_dumps_list_store; ++static GtkListStore *s_reported_dumps_list_store; + static GtkWidget *s_treeview; ++static GtkWidget *s_reported_treeview; + static GtkWidget *g_main_window; + static GtkWidget *s_report_window; + +@@ -40,13 +42,38 @@ enum + { + COLUMN_SOURCE, + COLUMN_REASON, +- COLUMN_DIRNAME, + COLUMN_LATEST_CRASH_STR, + COLUMN_LATEST_CRASH, + COLUMN_DUMP_DIR, ++ COLUMN_REPORTED_TO, + NUM_COLUMNS + }; + ++//FIXME: maybe we can use strrchr and make this faster... ++static char *get_last_line(const char* msg) ++{ ++ const char *curr_end = NULL; ++ const char *start = msg; ++ const char *end = msg; ++ ++ while((curr_end = strchr(end, '\n')) != NULL) ++ { ++ end = curr_end; ++ curr_end = strchr(end+1, '\n'); ++ if (curr_end == NULL || strchr(end+2, '\n') == NULL) ++ break; ++ ++ start = end+1; ++ end = curr_end; ++ } ++ ++ //fix the case where reported_to has only 1 line without \n ++ if (end == msg) ++ end = end + strlen(msg); ++ ++ return xstrndup(start, end - start); ++} ++ + static void add_directory_to_dirlist(const char *dirname) + { + /* Silently ignore *any* errors, not only EACCES. +@@ -67,21 +94,11 @@ static void add_directory_to_dirlist(const char *dirname) + { + time_t t = strtol(time_str, NULL, 10); /* atoi won't work past 2038! */ + struct tm *ptm = localtime(&t); +- size_t time_len = strftime(time_buf, sizeof(time_buf)-1, "%Y-%m-%m %H:%M", ptm); ++ size_t time_len = strftime(time_buf, sizeof(time_buf)-1, "%Y-%m-%d %H:%M", ptm); + time_buf[time_len] = '\0'; + } + free(time_str); + +- /* +- char *msg = dd_load_text_ext(dd, FILENAME_REPORTED_TO, 0 +- | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE +- | DD_FAIL_QUIETLY_ENOENT +- | DD_FAIL_QUIETLY_EACCES +- ); +- const char *reported = (msg ? GTK_STOCK_YES : GTK_STOCK_NO); +- free(msg); +- */ +- + char *reason = dd_load_text(dd, FILENAME_REASON); + + /* the source of the problem: +@@ -102,18 +119,38 @@ static void add_directory_to_dirlist(const char *dirname) + ); + } + ++ char *msg = dd_load_text_ext(dd, FILENAME_REPORTED_TO, 0 ++ | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE ++ | DD_FAIL_QUIETLY_ENOENT ++ | DD_FAIL_QUIETLY_EACCES ++ ); ++ ++ ++ GtkListStore *list_store; ++ ++ char *subm_status = NULL; ++ if (msg) ++ { ++ list_store = s_reported_dumps_list_store; ++ subm_status = get_last_line(msg); ++ } ++ else ++ list_store = s_dumps_list_store; + + GtkTreeIter iter; +- gtk_list_store_append(s_dumps_list_store, &iter); +- gtk_list_store_set(s_dumps_list_store, &iter, ++ gtk_list_store_append(list_store, &iter); ++ gtk_list_store_set(list_store, &iter, + COLUMN_SOURCE, source, + COLUMN_REASON, reason, +- COLUMN_DIRNAME, dd->dd_dirname, + //OPTION: time format + COLUMN_LATEST_CRASH_STR, time_buf, + COLUMN_LATEST_CRASH, time, + COLUMN_DUMP_DIR, dirname, ++ COLUMN_REPORTED_TO, msg ? subm_status : NULL, + -1); ++ /* this is safe, subm_status is either null or malloced string from get_last_line */ ++ free(subm_status); ++ free(msg); + free(reason); + + dd_close(dd); +@@ -123,6 +160,7 @@ static void add_directory_to_dirlist(const char *dirname) + static void rescan_dirs_and_add_to_dirlist(void) + { + gtk_list_store_clear(s_dumps_list_store); ++ gtk_list_store_clear(s_reported_dumps_list_store); + scan_dirs_and_add_to_dirlist(); + } + +@@ -232,7 +270,7 @@ static void delete_report(GtkTreeView *treeview) + VERB1 log("Deleting '%s'", dump_dir_name); + if (delete_dump_dir_possibly_using_abrtd(dump_dir_name) == 0) + { +- gtk_list_store_remove(s_dumps_list_store, &iter); ++ gtk_list_store_remove(GTK_LIST_STORE(store), &iter); + } + else + { +@@ -262,7 +300,9 @@ static gint on_key_press_event_cb(GtkTreeView *treeview, GdkEventKey *key, gpoin + + static void on_btn_delete_cb(GtkButton *button, gpointer unused) + { ++ /* delete from both treeviews */ + delete_report(GTK_TREE_VIEW(s_treeview)); ++ delete_report(GTK_TREE_VIEW(s_reported_treeview)); + } + + static void on_menu_help_cb(GtkMenuItem *menuitem, gpointer unused) +@@ -421,6 +461,50 @@ static void add_columns(GtkTreeView *treeview) + gtk_tree_view_append_column(treeview, column); + } + ++static void add_columns_reported(GtkTreeView *treeview) ++{ ++ GtkCellRenderer *renderer; ++ GtkTreeViewColumn *column; ++ ++ renderer = gtk_cell_renderer_text_new(); ++ column = gtk_tree_view_column_new_with_attributes(_("Source"), ++ renderer, ++ "text", ++ COLUMN_SOURCE, ++ NULL); ++ gtk_tree_view_column_set_resizable(column, TRUE); ++ gtk_tree_view_column_set_sort_column_id(column, COLUMN_SOURCE); ++ gtk_tree_view_append_column(treeview, column); ++ ++ renderer = gtk_cell_renderer_text_new(); ++ column = gtk_tree_view_column_new_with_attributes(_("Problem"), ++ renderer, ++ "text", ++ COLUMN_REASON, ++ NULL); ++ gtk_tree_view_column_set_resizable(column, TRUE); ++ gtk_tree_view_column_set_sort_column_id(column, COLUMN_REASON); ++ gtk_tree_view_append_column(treeview, column); ++ ++ renderer = gtk_cell_renderer_text_new(); ++ column = gtk_tree_view_column_new_with_attributes(_("Date Submitted"), ++ renderer, ++ "text", ++ COLUMN_LATEST_CRASH_STR, ++ NULL); ++ gtk_tree_view_column_set_sort_column_id(column, COLUMN_LATEST_CRASH); ++ gtk_tree_view_append_column(treeview, column); ++ ++ renderer = gtk_cell_renderer_text_new(); ++ column = gtk_tree_view_column_new_with_attributes(_("Submision Result"), ++ renderer, ++ "text", ++ COLUMN_REPORTED_TO, ++ NULL); ++ //gtk_tree_view_column_set_sort_column_id(column, COLUMN_LATEST_CRASH); ++ gtk_tree_view_append_column(treeview, column); ++} ++ + static GtkWidget *create_menu(void) + { + /* main bar */ +@@ -476,40 +560,102 @@ static GtkWidget *create_main_window(void) + gtk_window_set_default_icon_name("abrt"); + + GtkWidget *main_vbox = gtk_vbox_new(false, 0); ++ /* add menu */ ++ gtk_box_pack_start(GTK_BOX(main_vbox), create_menu(), false, false, 0); + +- /* Scrolled region inside main window */ +- GtkWidget *scroll_win = gtk_scrolled_window_new(NULL, NULL); +- gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll_win), ++ GtkWidget *not_subm_vbox = gtk_vbox_new(false, 0); ++ gtk_container_set_border_width(GTK_CONTAINER(not_subm_vbox), 10); ++ GtkWidget *subm_vbox = gtk_vbox_new(false, 0); ++ gtk_container_set_border_width(GTK_CONTAINER(subm_vbox), 10); ++ ++ /* Scrolled region for not reported problems inside main window*/ ++ GtkWidget *new_problems_scroll_win = gtk_scrolled_window_new(NULL, NULL); ++ gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(new_problems_scroll_win), + GTK_SHADOW_ETCHED_IN); +- gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_win), ++ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(new_problems_scroll_win), + GTK_POLICY_AUTOMATIC, + GTK_POLICY_AUTOMATIC); + +- gtk_box_pack_start(GTK_BOX(main_vbox), create_menu(), false, false, 0); +- gtk_box_pack_start(GTK_BOX(main_vbox), scroll_win, true, true, 0); +- gtk_container_add(GTK_CONTAINER(g_main_window), main_vbox); ++ GtkWidget *not_subm_lbl = gtk_label_new(_("Not submitted reports")); ++ gtk_misc_set_alignment(GTK_MISC(not_subm_lbl), 0, 0); ++ gtk_label_set_markup(GTK_LABEL(not_subm_lbl), _("Not submitted reports")); ++ ++ /* add label for not submitted tree view */ ++ gtk_box_pack_start(GTK_BOX(not_subm_vbox), not_subm_lbl, false, false, 0); ++ gtk_box_pack_start(GTK_BOX(not_subm_vbox), new_problems_scroll_win, true, true, 0); ++ gtk_box_pack_start(GTK_BOX(main_vbox), not_subm_vbox, true, true, 0); + + /* Tree view inside scrolled region */ + s_treeview = gtk_tree_view_new(); + g_object_set(s_treeview, "rules-hint", 1, NULL); /* use alternating colors */ + add_columns(GTK_TREE_VIEW(s_treeview)); +- gtk_container_add(GTK_CONTAINER(scroll_win), s_treeview); ++ gtk_container_add(GTK_CONTAINER(new_problems_scroll_win), s_treeview); + + /* Create data store for the list and attach it */ +- s_dumps_list_store = gtk_list_store_new(NUM_COLUMNS, G_TYPE_STRING, /* source */ ++ s_dumps_list_store = gtk_list_store_new(NUM_COLUMNS, ++ G_TYPE_STRING, /* source */ ++ G_TYPE_STRING, /* executable */ ++ G_TYPE_STRING, /* time */ ++ G_TYPE_INT, /* unix time - used for sort */ ++ G_TYPE_STRING, /* dump dir path */ ++ G_TYPE_STRING); /* reported_to */ ++ ++ ++ //FIXME: configurable!! ++ gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(s_dumps_list_store), ++ COLUMN_LATEST_CRASH, ++ GTK_SORT_DESCENDING); ++ ++ gtk_tree_view_set_model(GTK_TREE_VIEW(s_treeview), GTK_TREE_MODEL(s_dumps_list_store)); ++ ++ /* Double click/Enter handler */ ++ g_signal_connect(s_treeview, "row-activated", G_CALLBACK(on_row_activated_cb), NULL); ++ /* Delete handler */ ++ g_signal_connect(s_treeview, "key-press-event", G_CALLBACK(on_key_press_event_cb), NULL); ++ ++ /* scrolled region for reported problems */ ++ GtkWidget *reported_problems_scroll_win = gtk_scrolled_window_new(NULL, NULL); ++ gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(reported_problems_scroll_win), ++ GTK_SHADOW_ETCHED_IN); ++ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(reported_problems_scroll_win), ++ GTK_POLICY_AUTOMATIC, ++ GTK_POLICY_AUTOMATIC); ++ ++ GtkWidget *subm_lbl = gtk_label_new(_("Submitted reports")); ++ /* align to left */ ++ gtk_misc_set_alignment(GTK_MISC(subm_lbl), 0, 0); ++ gtk_label_set_markup(GTK_LABEL(subm_lbl), _("Submitted reports")); ++ ++ ++ /* add label for submitted tree view */ ++ gtk_box_pack_start(GTK_BOX(subm_vbox), subm_lbl, false, false, 0); ++ gtk_box_pack_start(GTK_BOX(subm_vbox), reported_problems_scroll_win, true, true, 0); ++ gtk_box_pack_start(GTK_BOX(main_vbox), subm_vbox, true, true, 0); ++ ++ /* Tree view inside scrolled region */ ++ s_reported_treeview = gtk_tree_view_new(); ++ g_object_set(s_reported_treeview, "rules-hint", 1, NULL); /* use alternating colors */ ++ add_columns_reported(GTK_TREE_VIEW(s_reported_treeview)); ++ gtk_container_add(GTK_CONTAINER(reported_problems_scroll_win), s_reported_treeview); ++ ++ /* Create data store for the list and attach it */ ++ s_reported_dumps_list_store = gtk_list_store_new(NUM_COLUMNS, ++ G_TYPE_STRING, /* source */ + G_TYPE_STRING, /* executable */ +- G_TYPE_STRING, /* hostname */ + G_TYPE_STRING, /* time */ + G_TYPE_INT, /* unix time - used for sort */ + G_TYPE_STRING, /* dump dir path */ +- G_TYPE_STRING);/* row background */ ++ G_TYPE_STRING); /* reported_to */ ++ + + //FIXME: configurable!! +- gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(s_dumps_list_store), ++ gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(s_reported_dumps_list_store), + COLUMN_LATEST_CRASH, + GTK_SORT_DESCENDING); + +- gtk_tree_view_set_model(GTK_TREE_VIEW(s_treeview), GTK_TREE_MODEL(s_dumps_list_store)); ++ ++ gtk_tree_view_set_model(GTK_TREE_VIEW(s_reported_treeview), GTK_TREE_MODEL(s_reported_dumps_list_store)); ++ + + /* buttons are homogenous so set size only for one button and it will + * work for the rest buttons in same gtk_hbox_new() */ +@@ -518,20 +664,23 @@ static GtkWidget *create_main_window(void) + + GtkWidget *btn_delete = gtk_button_new_from_stock(GTK_STOCK_DELETE); + +- GtkWidget *hbox_report_delete = gtk_hbox_new(true, 4); ++ GtkWidget *hbox_report_delete = gtk_hbox_new(true, 0); + gtk_box_pack_start(GTK_BOX(hbox_report_delete), btn_delete, true, true, 0); +- gtk_box_pack_start(GTK_BOX(hbox_report_delete), btn_report, true, true, 0); ++ gtk_box_pack_start(GTK_BOX(hbox_report_delete), btn_report, true, true, 10); + + GtkWidget *halign = gtk_alignment_new(1, 0, 0, 0); + gtk_container_add(GTK_CONTAINER(halign), hbox_report_delete); + + gtk_box_pack_start(GTK_BOX(main_vbox), halign, false, false, 10); + ++ /* put the main_vbox to main window */ ++ gtk_container_add(GTK_CONTAINER(g_main_window), main_vbox); ++ + /* Double click/Enter handler */ +- g_signal_connect(s_treeview, "row-activated", G_CALLBACK(on_row_activated_cb), NULL); ++ g_signal_connect(s_reported_treeview, "row-activated", G_CALLBACK(on_row_activated_cb), NULL); + g_signal_connect(btn_report, "clicked", G_CALLBACK(on_btn_report_cb), NULL); + /* Delete handler */ +- g_signal_connect(s_treeview, "key-press-event", G_CALLBACK(on_key_press_event_cb), NULL); ++ g_signal_connect(s_reported_treeview, "key-press-event", G_CALLBACK(on_key_press_event_cb), NULL); + g_signal_connect(btn_delete, "clicked", G_CALLBACK(on_btn_delete_cb), NULL); + /* Quit when user closes the main window */ + g_signal_connect(g_main_window, "destroy", gtk_main_quit, NULL); +-- +1.7.6 + diff --git a/0003-remove-forgotten-abrt-action-kerneloops-files.patch b/0003-remove-forgotten-abrt-action-kerneloops-files.patch new file mode 100644 index 0000000..84575e1 --- /dev/null +++ b/0003-remove-forgotten-abrt-action-kerneloops-files.patch @@ -0,0 +1,268 @@ +From 89de28a3510c6e7a30ca053caea35ccabfbde75a Mon Sep 17 00:00:00 2001 +From: Miroslav Lichvar +Date: Thu, 21 Jul 2011 15:34:50 +0200 +Subject: [PATCH 3/4] remove forgotten abrt-action-kerneloops files + +--- + src/plugins/abrt-action-kerneloops.c | 173 -------------------------------- + src/plugins/abrt-action-kerneloops.txt | 68 ------------- + 2 files changed, 0 insertions(+), 241 deletions(-) + delete mode 100644 src/plugins/abrt-action-kerneloops.c + delete mode 100644 src/plugins/abrt-action-kerneloops.txt + +diff --git a/src/plugins/abrt-action-kerneloops.c b/src/plugins/abrt-action-kerneloops.c +deleted file mode 100644 +index a117266..0000000 +--- a/src/plugins/abrt-action-kerneloops.c ++++ /dev/null +@@ -1,173 +0,0 @@ +-/* +- Copyright (C) 2010 ABRT team +- Copyright (C) 2010 RedHat Inc +- +- This program is free software; you can redistribute it and/or modify +- it under the terms of the GNU General Public License as published by +- the Free Software Foundation; either version 2 of the License, or +- (at your option) any later version. +- +- This program is distributed in the hope that it will be useful, +- but WITHOUT ANY WARRANTY; without even the implied warranty of +- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +- GNU General Public License for more details. +- +- Authors: +- Anton Arapov +- Arjan van de Ven +- */ +-#include +-#include "abrtlib.h" +- +-/* helpers */ +-static size_t writefunction(void *ptr, size_t size, size_t nmemb, void *stream) +-{ +- size *= nmemb; +-/* +- char *c, *c1, *c2; +- +- log("received: '%*.*s'", (int)size, (int)size, (char*)ptr); +- c = (char*)xzalloc(size + 1); +- memcpy(c, ptr, size); +- c1 = strstr(c, "201 "); +- if (c1) +- { +- c1 += 4; +- c2 = strchr(c1, '\n'); +- if (c2) +- *c2 = 0; +- } +- free(c); +-*/ +- +- return size; +-} +- +-/* Send oops data to kerneloops.org-style site, using HTTP POST */ +-/* Returns 0 on success */ +-static CURLcode http_post_to_kerneloops_site(const char *url, const char *oopsdata) +-{ +- CURLcode ret; +- CURL *handle; +- struct curl_httppost *post = NULL; +- struct curl_httppost *last = NULL; +- +- handle = curl_easy_init(); +- if (!handle) +- error_msg_and_die("Can't create curl handle"); +- +- curl_easy_setopt(handle, CURLOPT_URL, url); +- +- curl_formadd(&post, &last, +- CURLFORM_COPYNAME, "oopsdata", +- CURLFORM_COPYCONTENTS, oopsdata, +- CURLFORM_END); +- curl_formadd(&post, &last, +- CURLFORM_COPYNAME, "pass_on_allowed", +- CURLFORM_COPYCONTENTS, "yes", +- CURLFORM_END); +- +- curl_easy_setopt(handle, CURLOPT_HTTPPOST, post); +- curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, writefunction); +- +- ret = curl_easy_perform(handle); +- +- curl_formfree(post); +- curl_easy_cleanup(handle); +- +- return ret; +-} +- +-static void report_to_kerneloops( +- const char *dump_dir_name, +- map_string_h *settings) +-{ +- problem_data_t *problem_data = create_problem_data_for_reporting(dump_dir_name); +- if (!problem_data) +- xfunc_die(); /* create_problem_data_for_reporting already emitted error msg */ +- +- const char *backtrace = get_problem_item_content_or_NULL(problem_data, FILENAME_BACKTRACE); +- if (!backtrace) +- error_msg_and_die("Error sending kernel oops due to missing backtrace"); +- +- const char *env = getenv("KerneloopsReporter_SubmitURL"); +- const char *submitURL = (env ? env : get_map_string_item_or_empty(settings, "SubmitURL")); +- if (!submitURL[0]) +- submitURL = "http://submit.kerneloops.org/submitoops.php"; +- +- log(_("Submitting oops report to %s"), submitURL); +- +- CURLcode ret = http_post_to_kerneloops_site(submitURL, backtrace); +- if (ret != CURLE_OK) +- error_msg_and_die("Kernel oops has not been sent due to %s", curl_easy_strerror(ret)); +- +- free_problem_data(problem_data); +- +- /* Server replies with: +- * 200 thank you for submitting the kernel oops information +- * RemoteIP: 34192fd15e34bf60fac6a5f01bba04ddbd3f0558 +- * - no URL or bug ID apparently... +- */ +- struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); +- if (dd) +- { +- char *msg = xasprintf("kerneloops: URL=%s", submitURL); +- add_reported_to(dd, msg); +- free(msg); +- dd_close(dd); +- } +- +- log("Kernel oops report was uploaded"); +-} +- +-int main(int argc, char **argv) +-{ +- abrt_init(argv); +- +- map_string_h *settings = new_map_string(); +- const char *dump_dir_name = "."; +- GList *conf_file = NULL; +- +- /* Can't keep these strings/structs static: _() doesn't support that */ +- const char *program_usage_string = _( +- "\b [-v] [-c CONFFILE]... -d DIR\n" +- "\n" +- "Reports kernel oops to kerneloops.org (or similar) site.\n" +- "\n" +- "Files with names listed in $EXCLUDE_FROM_REPORT are not included\n" +- "into the tarball.\n" +- "\n" +- "CONFFILE lines should have 'PARAM = VALUE' format.\n" +- "Recognized string parameter: SubmitURL.\n" +- "Parameter can be overridden via $KerneloopsReporter_SubmitURL." +- ); +- enum { +- OPT_v = 1 << 0, +- OPT_d = 1 << 1, +- OPT_c = 1 << 2, +- }; +- /* Keep enum above and order of options below in sync! */ +- struct options program_options[] = { +- OPT__VERBOSE(&g_verbose), +- OPT_STRING('d', NULL, &dump_dir_name, "DIR" , _("Dump directory")), +- OPT_LIST( 'c', NULL, &conf_file , "FILE", _("Configuration file")), +- OPT_END() +- }; +- /*unsigned opts =*/ parse_opts(argc, argv, program_options, program_usage_string); +- +- export_abrt_envvars(0); +- +- while (conf_file) +- { +- char *fn = (char *)conf_file->data; +- VERB1 log("Loading settings from '%s'", fn); +- load_conf_file(fn, settings, /*skip key w/o values:*/ true); +- VERB3 log("Loaded '%s'", fn); +- conf_file = g_list_remove(conf_file, fn); +- } +- +- report_to_kerneloops(dump_dir_name, settings); +- +- free_map_string(settings); +- return 0; +-} +diff --git a/src/plugins/abrt-action-kerneloops.txt b/src/plugins/abrt-action-kerneloops.txt +deleted file mode 100644 +index 468287f..0000000 +--- a/src/plugins/abrt-action-kerneloops.txt ++++ /dev/null +@@ -1,68 +0,0 @@ +-abrt-action-kerneloops(1) +-========================= +- +-NAME +----- +-abrt-action-kerneloops - Reports kernel oops to kerneloops.org (or similar) +-site. +- +-SYNOPSIS +--------- +-'abrt-action-kerneloops' [-v] [-c CONFFILE]... [ -d DIR ] +- +-DESCRIPTION +------------ +-The tool is used to report the crash to the Kerneloops tracker. +- +-Configuration file +-~~~~~~~~~~~~~~~~~~ +-Configuration file contains entries in a format "Option = Value". +- +-The options are: +- +-'SubmitURL':: +- The URL of the kerneloops tracker, the default is +- "http://submit.kerneloops.org/submitoops.php". +- +-Integration with ABRT events +-~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +-'abrt-action-kerneloops' can be used as a reporter, to allow users to report +-problems to the Kerneloops tracker. This usage is pre-configured in +-/etc/libreport/events.d/koops_event.conf: +- +------------- +-EVENT=report_Kerneloops analyzer=Kerneloops abrt-action-kerneloops +------------- +- +-It can be also used automatically and immediately without user interaction. +-When this is desired, modify the event configuration file to run the tool on +-the 'post-create' event: +- +------------- +-EVENT=post-create analyzer=Kerneloops abrt-action-kerneloops +------------- +- +-OPTIONS +-------- +--v:: +- Be more verbose. Can be given multiple times. +- +--d DIR:: +- Path to dump directory. +- +--c CONFFILE:: +- Path to configration file. When used in ABRT event system, the file +- contains site-wide configuration. Users can change the values via +- environment variables. +- +-ENVIRONMENT VARIABLES +---------------------- +-Environment variables take precedence over values provided in +-the configuration file. +- +-'KerneloopsReporter_SubmitURL':: +- The URL of the kerneloops tracker. +- +-AUTHORS +-------- +-* ABRT team +-- +1.7.6 + diff --git a/0004-install-debuginfo-ask-before-downloading.patch b/0004-install-debuginfo-ask-before-downloading.patch new file mode 100644 index 0000000..90f2f74 --- /dev/null +++ b/0004-install-debuginfo-ask-before-downloading.patch @@ -0,0 +1,71 @@ +From 90893a0c84a594337ca22fa83f364f5b4a7fb1b2 Mon Sep 17 00:00:00 2001 +From: Michal Toman +Date: Thu, 21 Jul 2011 16:48:08 +0200 +Subject: [PATCH 4/4] install-debuginfo: ask before downloading + +--- + src/plugins/abrt-action-install-debuginfo | 34 ++++++---------------------- + 1 files changed, 8 insertions(+), 26 deletions(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo b/src/plugins/abrt-action-install-debuginfo +index 2ad0790..31aab2c 100644 +--- a/src/plugins/abrt-action-install-debuginfo ++++ b/src/plugins/abrt-action-install-debuginfo +@@ -11,6 +11,7 @@ import errno + import time + import getopt + import shutil ++import reportclient + from subprocess import Popen, PIPE + from yum import _, YumBase + from yum.callbacks import DownloadBaseCallback +@@ -74,22 +75,6 @@ def unmute_stdout(): + else: + print "ERR: unmute called without mute?" + +-def ask_yes_no(prompt, retries=4): +- while True: +- try: +- response = raw_input(prompt) +- except EOFError: +- log1("got eof, probably executed from helper, assuming - yes") +- return True +- if response in (_("y")): # for translators -> y/Y as yes +- return True +- if response in ("", _("n")): # for translators -> N/n as no +- return False +- retries = retries - 1 +- if retries < 0: +- break +- return False +- + # TODO: unpack just required debuginfo and not entire rpm? + # ..that can lead to: foo.c No such file and directory + # files is not used... +@@ -286,16 +271,13 @@ class DebugInfoDownload(YumBase): + print _("Can't find packages for %u debuginfo files") % len(not_found) + if verbose != 0 or total_pkgs != 0: + print _("Packages to download: %u") % total_pkgs +- print _("Downloading %.2fMb, installed size: %.2fMb") % ( +- todownload_size / (1024**2), +- installed_size / (1024**2) +- ) +- +- # ask only if we have terminal, because for now we don't have a way +- # how to pass the question to gui and the response back +- if noninteractive == False and sys.stdout.isatty(): +- if not ask_yes_no(_("Is this ok? [y/N] ")): +- return RETURN_OK ++ question = _("Downloading %.2fMb, installed size: %.2fMb. Continue?") % ( ++ todownload_size / (1024**2), ++ installed_size / (1024**2) ++ ) ++ if not reportclient.ask_yes_no(question): ++ print _("Download cancelled by user") ++ return RETURN_OK + + for pkg, files in package_files_dict.iteritems(): + dnlcb.downloaded_pkgs = downloaded_pkgs +-- +1.7.6 + diff --git a/abrt.spec b/abrt.spec index 5648541..239c5cb 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1,7 +1,7 @@ %{!?python_site: %global python_site %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} # platform-dependent %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%if 0%{?fedora} >= 16 +%if 0%{?fedora} >= 14 %bcond_without systemd %else %bcond_with systemd @@ -9,7 +9,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.3 +Version: 2.0.4 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -18,25 +18,25 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt.init Source2: abrt-ccpp.init Source3: abrt-oops.init -Patch0: blacklist.patch -Patch1: allow_bz_for_koops.patch +Patch0: 0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch +Patch1: 0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch +Patch2: 0004-install-debuginfo-ask-before-downloading.patch +Patch3: blacklist.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel -BuildRequires: curl-devel BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel -BuildRequires: xmlrpc-c-devel +#why? BuildRequires: file-devel BuildRequires: python-devel BuildRequires: gettext BuildRequires: libxml2-devel -BuildRequires: libtar-devel BuildRequires: intltool BuildRequires: libtool BuildRequires: nss-devel BuildRequires: asciidoc BuildRequires: xmlto -BuildRequires: libreport-devel +BuildRequires: libreport-devel >= 2.0.5-2 BuildRequires: btparser-devel # for rhel6 @@ -106,60 +106,13 @@ Summary: %{name}'s kerneloops addon Group: System Environment/Libraries Requires: curl Requires: %{name} = %{version}-%{release} +Requires: libreport-plugin-kerneloops Obsoletes: kerneloops > 0.0.1 Obsoletes: abrt-plugin-kerneloops > 0.0.1 Obsoletes: abrt-plugin-kerneloopsreporter > 0.0.1 %description addon-kerneloops -This package contains plugin for collecting kernel crash information -and reporter plugin which sends this information to specified server, -usually to kerneloops.org. - -%package plugin-logger -Summary: %{name}'s logger reporter plugin -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} - -%description plugin-logger -The simple reporter plugin which writes a report to a specified file. - -%package plugin-mailx -Summary: %{name}'s mailx reporter plugin -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} -Requires: mailx - -%description plugin-mailx -The simple reporter plugin which sends a report via mailx to a specified -email address. - -%package plugin-bugzilla -Summary: %{name}'s bugzilla plugin -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} - -%description plugin-bugzilla -Plugin to report bugs into the bugzilla. - -%package plugin-rhtsupport -Summary: %{name}'s RHTSupport plugin -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} -Obsoletes: abrt-plugin-catcut > 0.0.1 -Obsoletes: abrt-plugin-rhfastcheck > 0.0.1 -Obsoletes: abrt-plugin-rhticket > 0.0.1 - -%description plugin-rhtsupport -Plugin to report bugs into RH support system. - -%package plugin-reportuploader -Summary: %{name}'s reportuploader plugin -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} -Obsoletes: abrt-plugin-ticketuploader > 0.0.1 - -%description plugin-reportuploader -Plugin to report bugs into anonymous FTP site associated with ticketing system. +This package contains plugin for collecting kernel crash information. %package addon-python Summary: %{name}'s addon for catching and analyzing Python exceptions @@ -180,7 +133,7 @@ Requires: %{name} = %{version}-%{release} Requires: libreport-cli Requires: abrt-addon-kerneloops Requires: abrt-addon-ccpp, abrt-addon-python -Requires: abrt-plugin-bugzilla, abrt-plugin-logger +Requires: libreport-plugin-bugzilla, libreport-plugin-logger %description cli This package contains simple command line client for controlling abrt daemon over @@ -200,7 +153,7 @@ Requires: abrt-addon-ccpp, abrt-addon-python # Default config of addon-ccpp requires gdb Requires: gdb >= 7.0-3 Requires: abrt-gui -Requires: abrt-plugin-logger, abrt-plugin-bugzilla +Requires: libreport-plugin-logger, libreport-plugin-bugzilla #Requires: abrt-plugin-firefox Obsoletes: bug-buddy > 0.0.1 Provides: bug-buddy @@ -210,8 +163,10 @@ Virtual package to make easy default installation on desktop environments. %prep %setup -q -%patch0 -p1 -b .blacklist -%patch1 -p1 -b bz_for_oops +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 %build autoconf @@ -383,10 +338,12 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-save-package-data %{_bindir}/abrt-retrace-client %config(noreplace) %{_sysconfdir}/%{name}/abrt.conf +%config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf +%config(noreplace) %{_sysconfdir}/libreport/events.d/smolt_event.conf %dir %attr(0755, abrt, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload %dir %attr(0775, abrt, abrt) %{_localstatedir}/run/%{name} @@ -441,16 +398,17 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files %attr(4755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo-to-abrt-cache -%{_bindir}/abrt-action-analyze-core.py* +%{_bindir}/abrt-action-analyze-core %{_bindir}/abrt-action-install-debuginfo %{_bindir}/abrt-action-generate-backtrace %{_bindir}/abrt-action-analyze-backtrace -%{_bindir}/abrt-action-list-dsos.py* +%{_bindir}/abrt-action-list-dsos %{_sbindir}/abrt-install-ccpp-hook -%{_sysconfdir}/libreport/events.d/ccpp_events.conf +%{_sysconfdir}/libreport/events.d/ccpp_event.conf %{_sysconfdir}/libreport/events/analyze_LocalGDB.xml %{_sysconfdir}/libreport/events/analyze_RetraceServer.xml %{_sysconfdir}/libreport/events/analyze_xsession_errors.xml +%{_sysconfdir}/libreport/events/analyze_Smolt.xml %{_mandir}/man*/abrt-action-trim-files.* %{_mandir}/man*/abrt-action-generate-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* @@ -458,57 +416,20 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files addon-kerneloops %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/libreport/plugins/Kerneloops.conf -%{_sysconfdir}/libreport/events/report_Kerneloops.xml -%config(noreplace) %{_sysconfdir}/libreport/events.d/koops_events.conf +%config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf %if %{with systemd} /lib/systemd/system/abrt-oops.service %else %{_initrddir}/abrt-oops %endif -%{_mandir}/man*/abrt-action-kerneloops.* %{_bindir}/abrt-dump-oops %{_bindir}/abrt-action-analyze-oops -%{_bindir}/abrt-action-kerneloops - -%files plugin-logger -%defattr(-,root,root,-) -%{_sysconfdir}/libreport/events/report_Logger.conf -%{_bindir}/abrt-action-print -%{_mandir}/man*/abrt-action-print.* - -%files plugin-mailx -%defattr(-,root,root,-) -%{_sysconfdir}/libreport/events/report_Mailx.xml -%config(noreplace) %{_sysconfdir}/libreport/events.d/mailx_events.conf -%{_mandir}/man*/abrt-action-mailx.* -%{_bindir}/abrt-action-mailx - -%files plugin-bugzilla -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/libreport/plugins/Bugzilla.conf -%{_sysconfdir}/libreport/events/report_Bugzilla.xml -%config(noreplace) %{_sysconfdir}/libreport/events/report_Bugzilla.conf -# FIXME: remove with the old gui -%{_mandir}/man1/abrt-action-bugzilla.1.gz -%{_bindir}/abrt-action-bugzilla - -%files plugin-rhtsupport -%defattr(-,root,root,-) -%{_sysconfdir}/libreport/events/report_RHTSupport.xml -%config(noreplace) %{_sysconfdir}/libreport/events.d/rhtsupport_events.conf -# {_mandir}/man7/abrt-RHTSupport.7.gz -%{_bindir}/abrt-action-rhtsupport - -%files plugin-reportuploader -%defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/libreport/plugins/Upload.conf -%{_mandir}/man*/abrt-action-upload.* -%{_bindir}/abrt-action-upload +%{_mandir}/man1/abrt-action-analyze-oops.1* %files addon-python %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/%{name}/plugins/Python.conf +#%config(noreplace) %{_sysconfdir}/%{name}/plugins/Python.conf +%{_sysconfdir}/libreport/events.d/python_event.conf %{_bindir}/abrt-action-analyze-python %{python_site}/abrt*.py* %{python_site}/abrt.pth @@ -521,6 +442,13 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Thu Jul 21 2011 Jiri Moskovcak - 2.0.4-1 +- new upstream version +- resolves wrong provs/obsolete rhbz#723376 +- split main UI into two panes +- debuginfo-install script asks before downloading +- Resolves: #723376 + * Mon Jun 20 2011 Jiri Moskovcak - 2.0.3-1 - new upstream release diff --git a/blacklist.patch b/blacklist.patch index cc5c51c..47d8daf 100644 --- a/blacklist.patch +++ b/blacklist.patch @@ -1,7 +1,6 @@ -diff -urp abrt-2.0.0/src/daemon/abrt.conf abrt-2.0.0_/src/daemon/abrt.conf ---- abrt-2.0.0/src/daemon/abrt.conf 2011-03-23 18:11:00.000000000 +0100 -+++ abrt-2.0.0_/src/daemon/abrt.conf 2011-03-30 15:40:51.160618948 +0200 -@@ -8,7 +8,7 @@ OpenGPGCheck = yes +--- abrt-2.0.4/src/daemon/abrt-action-save-package-data.conf 2011-07-15 13:10:46.000000000 +0200 ++++ abrt-2.0.4_/src/daemon/abrt-action-save-package-data.conf 2011-07-19 15:12:43.661630657 +0200 +@@ -7,7 +7,7 @@ # Blacklisted packages # @@ -10,12 +9,9 @@ diff -urp abrt-2.0.0/src/daemon/abrt.conf abrt-2.0.0_/src/daemon/abrt.conf # Process crashes in executables which do not belong to any package? # -@@ -16,7 +16,7 @@ ProcessUnpackaged = no +@@ -15,4 +15,4 @@ # Blacklisted executable paths (shell patterns) # -BlackListedPaths = /usr/share/doc/*,*/example* +BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer, /usr/lib/xulrunner-*/plugin-container - - # Enable this if you want abrtd to auto-unpack crashdump tarballs which appear - # in this directory (for example, uploaded via ftp, scp etc). diff --git a/low_bt_rating.patch b/low_bt_rating.patch deleted file mode 100644 index 537aa9b..0000000 --- a/low_bt_rating.patch +++ /dev/null @@ -1,20 +0,0 @@ -commit 884c0aed054302cb1cbb71c2b21c12df92a7e6e4 -Author: Karel Klic -Date: Thu Apr 21 08:59:38 2011 +0200 - - Do not allow to submit backtraces with rating 0 (or some other unexpected rating). - -diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c -index 44dc11b..0a57f04 100644 ---- a/src/gui-wizard-gtk/wizard.c -+++ b/src/gui-wizard-gtk/wizard.c -@@ -1005,8 +1005,7 @@ static void check_backtrace_and_allow_send(void) //TODO: rename, this checks rat - add_warning(_("The backtrace is incomplete, please make sure you provide the steps to reproduce.")); - warn = true; - break; -- case '2': -- case '1': -+ default: - //FIXME: see CreporterAssistant: 394 for ideas - add_warning(_("Reporting disabled because the backtrace is unusable.")); - send = false; diff --git a/prgname.patch b/prgname.patch deleted file mode 100644 index 2b003ee..0000000 --- a/prgname.patch +++ /dev/null @@ -1,51 +0,0 @@ -commit e4200116d227ac159d45d84bfbdbaf85d188c4bb -Author: Denys Vlasenko -Date: Fri May 6 22:27:40 2011 +0200 - - reinstated g_set_prgname("abrt") - - Signed-off-by: Denys Vlasenko - -diff --git a/src/applet/applet.c b/src/applet/applet.c -index e965a3b..aff8284 100644 ---- a/src/applet/applet.c -+++ b/src/applet/applet.c -@@ -221,7 +221,7 @@ int main(int argc, char** argv) - - /* Parse options */ - int opt; -- while ((opt = getopt(argc, argv, "dv")) != -1) -+ while ((opt = getopt(argc, argv, "v")) != -1) - { - switch (opt) - { -diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c -index e9b175a..39d9f7e 100644 ---- a/src/gui-gtk/main.c -+++ b/src/gui-gtk/main.c -@@ -204,6 +204,8 @@ int main(int argc, char **argv) - * desktops which uses the name to find the corresponding .desktop file - * trac#180 - */ -+ g_set_prgname("abrt"); -+ - gtk_init(&argc, &argv); - - /* Can't keep these strings/structs static: _() doesn't support that */ -diff --git a/src/gui-wizard-gtk/main.c b/src/gui-wizard-gtk/main.c -index d1341b4..cdcf9e4 100644 ---- a/src/gui-wizard-gtk/main.c -+++ b/src/gui-wizard-gtk/main.c -@@ -69,6 +69,12 @@ int main(int argc, char **argv) - textdomain(PACKAGE); - #endif - -+ /* without this the name is set to argv[0] which confuses -+ * desktops which uses the name to find the corresponding .desktop file -+ * trac#180 -+ */ -+ g_set_prgname("abrt"); -+ - gtk_init(&argc, &argv); - - /* Can't keep these strings/structs static: _() doesn't support that */ diff --git a/remove_libreport_python.patch b/remove_libreport_python.patch deleted file mode 100644 index e472af3..0000000 --- a/remove_libreport_python.patch +++ /dev/null @@ -1,6 +0,0 @@ -diff -u -r abrt-1.2.0/src/Makefile.am abrt-1.2.0_/src/Makefile.am ---- abrt-1.2.0/src/Makefile.am 2011-03-14 17:51:12.000000000 +0100 -+++ abrt-1.2.0_/src/Makefile.am 2011-03-16 15:32:36.989851003 +0100 -@@ -1 +1 @@ --SUBDIRS = include lib report-python hooks btparser daemon applet gtk-helpers gui-gtk cli plugins gui-wizard-gtk retrace -+SUBDIRS = include lib hooks btparser daemon applet gtk-helpers gui-gtk cli plugins gui-wizard-gtk retrace diff --git a/retrace_addr.patch b/retrace_addr.patch deleted file mode 100644 index 21c94bc..0000000 --- a/retrace_addr.patch +++ /dev/null @@ -1,19 +0,0 @@ -commit 1886eee8e109daa5e8db4e0938533b6dcff17b3f -Author: Karel Klic -Date: Thu May 5 17:39:07 2011 +0200 - - URL retrace01.fpo.org -> retrace.fpo.org - -diff --git a/src/plugins/analyze_RetraceServer.xml.in b/src/plugins/analyze_RetraceServer.xml.in -index f91bf76..497fa13 100644 ---- a/src/plugins/analyze_RetraceServer.xml.in -+++ b/src/plugins/analyze_RetraceServer.xml.in -@@ -9,7 +9,7 @@ - - diff --git a/retrace_client_flush.patch b/retrace_client_flush.patch deleted file mode 100644 index 11a62ec..0000000 --- a/retrace_client_flush.patch +++ /dev/null @@ -1,18 +0,0 @@ -commit a74f116ad098343282f5be157fd59e4e4aba4705 -Author: Michal Toman -Date: Fri May 6 11:25:55 2011 +0200 - - retrace client: flush stdout after each status message in batch mode - -diff --git a/src/plugins/abrt-retrace-client.c b/src/plugins/abrt-retrace-client.c -index 5ade792..1d46a8c 100644 ---- a/src/plugins/abrt-retrace-client.c -+++ b/src/plugins/abrt-retrace-client.c -@@ -844,6 +844,7 @@ static int run_batch(bool delete_temp_archive) - sleep(10); - status(task_id, task_password, &task_status, &status_message); - puts(status_message); -+ fflush(stdout); - } - if (0 == strcmp(task_status, "FINISHED_SUCCESS")) - { From e42d8429058caa0bc6df9abeffba0ab70f49a017 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 21 Jul 2011 20:50:19 +0200 Subject: [PATCH 022/318] forgot to upload the new sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3ca2637..3dbae70 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ abrt-1.1.13.tar.gz /abrt-2.0.1.tar.gz /abrt-2.0.2.tar.gz /abrt-2.0.3.tar.gz +/abrt-2.0.4.tar.gz diff --git a/sources b/sources index 7440165..8604459 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8adb9d85d11dc1fcef43fbebfa129bbd abrt-2.0.3.tar.gz +a3545ef7240579b341c810961d4cddc3 abrt-2.0.4.tar.gz From 0037b8245f8395b1a0fa69e21e5f5c22a958113c Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 19 Aug 2011 13:20:46 +0200 Subject: [PATCH 023/318] enabled bugzilla as a target for kerneloops rhbz#725970 --- abrt.spec | 8 +++++++- enable_bz_for_oops.patch | 11 +++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 enable_bz_for_oops.patch diff --git a/abrt.spec b/abrt.spec index 239c5cb..91a5360 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -22,6 +22,7 @@ Patch0: 0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch Patch1: 0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch Patch2: 0004-install-debuginfo-ask-before-downloading.patch Patch3: blacklist.patch +Patch4: enable_bz_for_oops.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -167,6 +168,7 @@ Virtual package to make easy default installation on desktop environments. %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 -b .oops_to_bz %build autoconf @@ -442,6 +444,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Fri Aug 19 2011 Jiri Moskovcak - 2.0.4-2 +- enable bugzilla for kerneloops rhbz#725970 +- Resolves: #725970 + * Thu Jul 21 2011 Jiri Moskovcak - 2.0.4-1 - new upstream version - resolves wrong provs/obsolete rhbz#723376 diff --git a/enable_bz_for_oops.patch b/enable_bz_for_oops.patch new file mode 100644 index 0000000..eac857e --- /dev/null +++ b/enable_bz_for_oops.patch @@ -0,0 +1,11 @@ +--- abrt-2.0.4/src/plugins/koops_event.conf 2011-07-19 16:59:38.000000000 +0200 ++++ abrt-2.0.4_/src/plugins/koops_event.conf 2011-08-19 11:04:05.485464706 +0200 +@@ -8,4 +8,7 @@ EVENT=post-create analyzer=Kerneloops + #EVENT=post-create analyzer=Kerneloops abrt-action-kerneloops + + # report +-EVENT=report_Kerneloops analyzer=Kerneloops abrt-action-kerneloops ++EVENT=report_Kerneloops analyzer=Kerneloops reporter-kerneloops ++ ++#fedora ++EVENT=reporter_Bugzilla analyzer=Kerneloops reporter-bugzilla From 935a9503dab38a79bd0f2943340440a9000ac73a Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 13 Sep 2011 12:50:39 +0200 Subject: [PATCH 024/318] fixed update from abrt1 to abrt2 --- abrt.spec | 32 +++++++++++++- abrt1_to_abrt2 | 115 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+), 1 deletion(-) create mode 100755 abrt1_to_abrt2 diff --git a/abrt.spec b/abrt.spec index 91a5360..5424a12 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -18,6 +18,7 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt.init Source2: abrt-ccpp.init Source3: abrt-oops.init +Source4: abrt1_to_abrt2 Patch0: 0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch Patch1: 0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch Patch2: 0004-install-debuginfo-ask-before-downloading.patch @@ -191,6 +192,7 @@ install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_initrddir}/abrtd install -m 755 %SOURCE2 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-ccpp install -m 755 %SOURCE3 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-oops %endif +install -m 755 %SOURCE4 ${RPM_BUILD_ROOT}/%{_libexecdir}/abrt1-to-abrt2 mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt @@ -230,6 +232,7 @@ if [ $1 -eq 1 ]; then /sbin/chkconfig --add abrtd %endif fi +%{_libexecdir}/abrt1-to-abrt2 || : %post addon-ccpp # this is required for transition from 1.1.x to 2.x @@ -244,6 +247,18 @@ if [ $1 -eq 1 ]; then /sbin/chkconfig --add abrt-ccpp %endif fi +# FIXME: Workaround for update from abrt-1.1.x, can be removed in +# F17(18) update. When we are updating from ABRT 1 to ABRT 2, assume +# that abrtd service is enabled and thus enable the new abrt-ccpp +# service. If abrtd is running on the system, run abrt-ccpp service +# as well, because what was a part of abrtd became a separate service. +if [ $1 -gt 1 ]; then # Is this an upgrade? + /sbin/chkconfig --add abrt-ccpp + /sbin/pidof abrtd >/dev/null 2>&1 + if [ $? -eq 0 ]; then # Is abrtd running? + service abrt-ccpp restart >/dev/null 2>&1 || : + fi +fi %post addon-kerneloops if [ $1 -eq 1 ]; then @@ -254,6 +269,18 @@ if [ $1 -eq 1 ]; then /sbin/chkconfig --add abrt-oops %endif fi +# FIXME: Workaround for update from abrt-1.1.x, can be removed in +# F17(18) update. When we are updating from ABRT 1 to ABRT 2, assume +# that abrtd service is enabled and thus enable the new abrt-oops +# service. If abrtd is running on the system, run abrt-ccpp service +# as well, because what was a part of abrtd became a separate service. +if [ $1 -gt 1 ]; then # Is this an upgrade? + /sbin/chkconfig --add abrt-oops + /sbin/pidof abrtd >/dev/null 2>&1 + if [ $? -eq 0 ]; then # Is abrtd running? + service abrt-oops restart >/dev/null 2>&1 || : + fi +fi %preun if [ "$1" -eq "0" ] ; then @@ -444,6 +471,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Tue Aug 30 2011 Jiri Moskovcak - 2.0.4-3 +- fixed abrt1-abrt2 update + * Fri Aug 19 2011 Jiri Moskovcak - 2.0.4-2 - enable bugzilla for kerneloops rhbz#725970 - Resolves: #725970 diff --git a/abrt1_to_abrt2 b/abrt1_to_abrt2 new file mode 100755 index 0000000..978c38f --- /dev/null +++ b/abrt1_to_abrt2 @@ -0,0 +1,115 @@ +#! /usr/bin/python +#-*- coding: utf-8 -*- + +import os + +# abrt_v4 TABLE columns: +UUID = 0 +UID = 1 +INFORMALL = 2 +DUMPDIR_PATH = 3 +COUNT = 4 +REPORTED = 5 +TIME = 6 +MESSAGE = 7 + +# abrt_v4_reportresult columns: +#UUID = 0 +#UID = 1 +REPORTER = 2 +RESULT_MESSAGE = 3 + +def get_db_path(): + path = "/var/spool/abrt/abrt-db" + try: + with open("/etc/abrt/plugins/SQLite3.conf") as f: + for line in f: + line = line.split('=', 1) + if len(line) == 2 and line[0].strip() == "DBPath": + path = line[1].strip() + except Exception, ex: + pass + return path + +def get_url_from_text(text): + url_marks = ["http://", "https://", "ftp://", "ftps://", "file://"] + lines = text.split('\n') + url = "" + for mark in url_marks: + for line in lines: + last_mark = line.find(mark) + if last_mark != -1: + url_end = line.find(' ',last_mark) + if url_end == -1: + url_end = len(line) + url = "URL=" + line[last_mark:url_end] + return url + +def format_reported_to(reported_to): + reporter = reported_to[REPORTER] + url = get_url_from_text(reported_to[RESULT_MESSAGE]) + if not url: + url = reported_to[RESULT_MESSAGE] + return reporter + ": " + url + +if __name__ == "__main__": + try: + from sqlite3 import dbapi2 as sqlite + db = sqlite.connect(get_db_path()) + crashes = db.execute("SELECT * FROM abrt_v4") + # abrt_v4 TABLE columns: + # UUID | UID | INFORMALL | DUMPDIR_PATH | COUNT | REPORTED | TIME | MESSAGE + for crash in crashes: + # abrt_v4_reportresult columns: + # UUID | UID | REPORTER | MESSAGE + report_results = db.execute("SELECT * FROM abrt_v4_reportresult WHERE UUID='%s'" % crash[UUID]) + + # save count from db to file + count_file = "%s/count" % crash[DUMPDIR_PATH] + # don't overwrite + if not os.path.exists(count_file): + try: + fout = open(count_file, "w") + fout.write(str(crash[COUNT])) + fout.close() + except Exception, ex: + # silently ignore errors -> probably stalled db, but we can't + # do much about it, so it's better to not polute the rpm output + pass + + # save uuid from db to file + uuid_file = "%s/uuid" % crash[DUMPDIR_PATH] + # don't overwrite + if not os.path.exists(uuid_file): + try: + fout = open(uuid_file, "w") + fout.write(str(crash[UUID])) + fout.close() + except Exception, ex: + # silently ignore errors -> probably stalled db, but we can't + # do much about it, so it's better to not polute the rpm output + pass + + results = report_results.fetchall() + if results: + # save report results from db to file + reported_to_file = "%s/reported_to" % crash[DUMPDIR_PATH] + if not os.path.exists(reported_to_file): + try: + fout = open(reported_to_file, "w") + except Exception, ex: + # silently ignore errors -> probably stalled db, but we can't + # do much about it, so it's better to not polute the rpm output + continue + + for report_result in results: + # print "\t", format_reported_to(report_result) + # I know, it adds a '\n' to the end, but it's not a problem + fout.write("%s\n" % format_reported_to(report_result)) + fout.close() + db.close() + except Exception, ex: + # in case of any unhandled error, just ignore it, the worst, what + # can happen is that the old reports are marked as unreported + #print ex + pass From 2194a11cb10fd9b997d3f3b63a34702c48ca10b0 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 13 Sep 2011 15:49:22 +0200 Subject: [PATCH 025/318] fixed 2 segvs rhbz#737961 and /var/run/privs rhbz#725974 --- abrt.spec | 14 ++++++++++++-- free_space_check.patch | 29 +++++++++++++++++++++++++++++ null_deref.patch | 21 +++++++++++++++++++++ 3 files changed, 62 insertions(+), 2 deletions(-) create mode 100644 free_space_check.patch create mode 100644 null_deref.patch diff --git a/abrt.spec b/abrt.spec index 5424a12..01c625d 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -24,6 +24,8 @@ Patch1: 0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch Patch2: 0004-install-debuginfo-ask-before-downloading.patch Patch3: blacklist.patch Patch4: enable_bz_for_oops.patch +Patch5: null_deref.patch +Patch6: free_space_check.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -170,6 +172,8 @@ Virtual package to make easy default installation on desktop environments. %patch2 -p1 %patch3 -p1 %patch4 -p1 -b .oops_to_bz +%patch5 -p1 -b .sigsegv +%patch6 -p1 -b .free_space_check %build autoconf @@ -375,7 +379,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %config(noreplace) %{_sysconfdir}/libreport/events.d/smolt_event.conf %dir %attr(0755, abrt, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload -%dir %attr(0775, abrt, abrt) %{_localstatedir}/run/%{name} +%dir %attr(0755, root, root) %{_localstatedir}/run/%{name} %ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket %ghost %attr(0644, -, -) %{_localstatedir}/run/abrtd.pid @@ -471,6 +475,12 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-4 +- fixed sigsegv in a-a-save-package-data rhbz#737961 +- fixed privs for /var/run/abrt rhbz#725974 +- fixed segv in free space check +- Resolves: #737961 #725974 + * Tue Aug 30 2011 Jiri Moskovcak - 2.0.4-3 - fixed abrt1-abrt2 update diff --git a/free_space_check.patch b/free_space_check.patch new file mode 100644 index 0000000..a268792 --- /dev/null +++ b/free_space_check.patch @@ -0,0 +1,29 @@ +commit e91b22a9654bf9912f3f88c917773a96ff7733a3 +Author: Martin Milata +Date: Thu Sep 8 16:29:01 2011 +0200 + + Fix free space checking + + The g_settings_dump_location was freed before it was passed to the free + space check, thus preventing it from working. + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 983706e..330f85f 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -143,7 +143,6 @@ static int create_debug_dump() + + /* Trim old crash dumps if necessary */ + load_abrt_conf(); +- free_abrt_conf_data(); /* can do this because we need only g_settings_nMaxCrashReportsSize */ + if (g_settings_nMaxCrashReportsSize > 0) + { + /* x1.25 and round up to 64m: go a bit up, so that usual in-daemon trimming +@@ -154,6 +153,7 @@ static int create_debug_dump() + check_free_space(maxsize); + trim_debug_dumps(DEBUG_DUMPS_DIR, maxsize * (double)(1024*1024), path); + } ++ free_abrt_conf_data(); + + free(path); + diff --git a/null_deref.patch b/null_deref.patch new file mode 100644 index 0000000..4f7df5f --- /dev/null +++ b/null_deref.patch @@ -0,0 +1,21 @@ +commit d2572a98f41df96534f41062b0020ee6a10047ea +Author: Martin Milata +Date: Tue Jul 26 16:49:28 2011 +0200 + + a-a-save-package-data: Fix NULL dereference + + Fixes #324. + +diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c +index d37a05d..ddcf4ac 100644 +--- a/src/daemon/abrt-action-save-package-data.c ++++ b/src/daemon/abrt-action-save-package-data.c +@@ -160,7 +160,7 @@ static char *get_argv1_if_full_path(const char* cmdline) + * with '/', it is not a full path to script + * and we can't use it to determine the package name + */ +- if (*argv1 != '/') ++ if (argv1 == NULL || *argv1 != '/') + return NULL; + + /* good, it has "/foo/bar" form, return it */ From 7296a16eae4e4cfc32ce6af29d101616537e0edd Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 13 Sep 2011 16:00:04 +0200 Subject: [PATCH 026/318] minor spec file fix --- abrt.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 01c625d..893c8aa 100644 --- a/abrt.spec +++ b/abrt.spec @@ -10,7 +10,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -393,6 +393,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man7/abrt-plugins.7.gz %{_mandir}/man1/abrt-retrace-client.1.gz %{_datadir}/dbus-1/system-services/com.redhat.abrt.service +%{_libexecdir}/abrt1-to-abrt2 %files libs %defattr(-,root,root,-) @@ -475,6 +476,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 +- minor spec file fix + * Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-4 - fixed sigsegv in a-a-save-package-data rhbz#737961 - fixed privs for /var/run/abrt rhbz#725974 From d59aab0ef5b32c491511abfa17416b2ada5a0e02 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 23 Sep 2011 12:52:36 +0200 Subject: [PATCH 027/318] update to 2.0.4.980 --- abrt.spec | 142 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 112 insertions(+), 30 deletions(-) diff --git a/abrt.spec b/abrt.spec index 893c8aa..f34f577 100644 --- a/abrt.spec +++ b/abrt.spec @@ -7,10 +7,16 @@ %bcond_with systemd %endif +%if 0%{?rhel} >= 6 +%define vendor redhat +%else +%define vendor fedora +%endif + Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.4 -Release: 5%{?dist} +Version: 2.0.4.980 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -18,14 +24,9 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt.init Source2: abrt-ccpp.init Source3: abrt-oops.init -Source4: abrt1_to_abrt2 -Patch0: 0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch -Patch1: 0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch -Patch2: 0004-install-debuginfo-ask-before-downloading.patch -Patch3: blacklist.patch -Patch4: enable_bz_for_oops.patch -Patch5: null_deref.patch -Patch6: free_space_check.patch +Source4: abrt-vmcore.init +Source5: abrt1_to_abrt2 +Patch0: blacklist.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -105,6 +106,16 @@ Requires: %{name} = %{version}-%{release} This package contains hook for C/C++ crashed programs and %{name}'s C/C++ analyzer plugin. +%package retrace-client +Summary: %{name}'s retrace client +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} + +%description retrace-client +This package contains the client application for Retrace server +which is able to analyze C/C++ crashes remotely. + + %package addon-kerneloops Summary: %{name}'s kerneloops addon Group: System Environment/Libraries @@ -118,6 +129,16 @@ Obsoletes: abrt-plugin-kerneloopsreporter > 0.0.1 %description addon-kerneloops This package contains plugin for collecting kernel crash information. +%package addon-vmcore +Summary: %{name}'s vmcore addon +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: abrt-addon-kerneloops + +%description addon-vmcore +This package contains plugin for collecting kernel crash information from vmcore files. + + %package addon-python Summary: %{name}'s addon for catching and analyzing Python exceptions Group: System Environment/Libraries @@ -153,7 +174,9 @@ Group: User Interface/Desktops # any tweaking in abrt.conf (IOW: all plugins mentioned there must be installed) Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops -Requires: abrt-addon-ccpp, abrt-addon-python +Requires: abrt-addon-vmcore +Requires: abrt-addon-ccpp +Requires: abrt-addon-python # Default config of addon-ccpp requires gdb Requires: gdb >= 7.0-3 Requires: abrt-gui @@ -167,13 +190,9 @@ Virtual package to make easy default installation on desktop environments. %prep %setup -q -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -b .oops_to_bz -%patch5 -p1 -b .sigsegv -%patch6 -p1 -b .free_space_check +# Fedora specific +%patch0 -p1 -b .blacklist +# general fixes %build autoconf @@ -195,18 +214,17 @@ mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_initrddir}/abrtd install -m 755 %SOURCE2 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-ccpp install -m 755 %SOURCE3 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-oops +install -m 755 %SOURCE4 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-vmcore %endif -install -m 755 %SOURCE4 ${RPM_BUILD_ROOT}/%{_libexecdir}/abrt1-to-abrt2 +install -m 755 %SOURCE5 ${RPM_BUILD_ROOT}/%{_libexecdir}/abrt1-to-abrt2 mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload -# compat before we split abrt-cli and report-cli -ln -s %{_bindir}/report-cli $RPM_BUILD_ROOT/%{_bindir}/abrt-cli desktop-file-install \ --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ - --vendor fedora \ + --vendor %{vendor} \ --delete-original \ ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop @@ -220,6 +238,9 @@ rm -f %{buildroot}%{_infodir}/dir %clean rm -rf $RPM_BUILD_ROOT +%check +make check + %pre #uidgid pair 173:173 reserved in setup rhbz#670231 %define abrt_gid_uid 173 @@ -286,6 +307,17 @@ if [ $1 -gt 1 ]; then # Is this an upgrade? fi fi +%post addon-vmcore +if [ $1 -eq 1 ]; then +%if %{with systemd} + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : +%else + /sbin/chkconfig --add abrt-vmcore +%endif +fi + + %preun if [ "$1" -eq "0" ] ; then %if %{with systemd} @@ -319,6 +351,17 @@ if [ "$1" -eq "0" ] ; then %endif fi +%preun addon-vmcore +if [ "$1" -eq "0" ] ; then +%if %{with systemd} + /bin/systemctl --no-reload abrt-vmcore.service >/dev/null 2>&1 || : + /bin/systemctl stop abrt-vmcore.service >/dev/null 2>&1 || : +%else + service abrt-vmcore stop >/dev/null 2>&1 + /sbin/chkconfig --del abrt-vmcore +%endif +fi + %if %{with systemd} %postun /bin/systemctl daemon-reload >/dev/null 2>&1 || : @@ -326,6 +369,9 @@ fi %postun addon-kerneloops /bin/systemctl daemon-reload >/dev/null 2>&1 || : +%postun addon-vmcore +/bin/systemctl daemon-reload >/dev/null 2>&1 || : + %postun addon-ccpp /bin/systemctl daemon-reload >/dev/null 2>&1 || : @@ -354,6 +400,9 @@ service abrt-ccpp condrestart >/dev/null 2>&1 || : %posttrans addon-kerneloops service abrt-oops condrestart >/dev/null 2>&1 || : +%posttrans addon-vmcore +service abrt-vmcore condrestart >/dev/null 2>&1 || : + %posttrans gui gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : @@ -367,9 +416,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %endif %{_sbindir}/abrtd %{_sbindir}/abrt-server +%{_libexecdir}/abrt-handle-event %{_bindir}/abrt-handle-upload %{_bindir}/abrt-action-save-package-data -%{_bindir}/abrt-retrace-client %config(noreplace) %{_sysconfdir}/%{name}/abrt.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys @@ -386,11 +435,13 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins #%dir %{_libdir}/%{name} +%{_mandir}/man1/abrt-handle-upload.1.gz +%{_mandir}/man1/abrt-server.1.gz +%{_mandir}/man1/abrt-action-save-package-data.1.gz %{_mandir}/man8/abrtd.8.gz %{_mandir}/man5/abrt.conf.5.gz -%{_mandir}/man5/abrt_event.conf.5.gz +%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz # {_mandir}/man5/pyhook.conf.5.gz -%{_mandir}/man7/abrt-plugins.7.gz %{_mandir}/man1/abrt-retrace-client.1.gz %{_datadir}/dbus-1/system-services/com.redhat.abrt.service %{_libexecdir}/abrt1-to-abrt2 @@ -411,7 +462,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-gui %dir %{_datadir}/%{name} # all glade, gtkbuilder and py files for gui -%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/applications/%{vendor}-%{name}.desktop %{_datadir}/icons/hicolor/*/apps/* %{_datadir}/icons/hicolor/*/status/* %{_datadir}/%{name}/icons/hicolor/*/status/* @@ -429,9 +480,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_initrddir}/abrt-ccpp %endif %{_libexecdir}/abrt-hook-ccpp +%attr(4755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files -%attr(4755, abrt, abrt) %{_bindir}/abrt-action-install-debuginfo-to-abrt-cache %{_bindir}/abrt-action-analyze-core %{_bindir}/abrt-action-install-debuginfo %{_bindir}/abrt-action-generate-backtrace @@ -439,14 +490,26 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-list-dsos %{_sbindir}/abrt-install-ccpp-hook %{_sysconfdir}/libreport/events.d/ccpp_event.conf +%{_sysconfdir}/libreport/events.d/gconf_event.conf +%{_sysconfdir}/libreport/events.d/vimrc_event.conf %{_sysconfdir}/libreport/events/analyze_LocalGDB.xml -%{_sysconfdir}/libreport/events/analyze_RetraceServer.xml -%{_sysconfdir}/libreport/events/analyze_xsession_errors.xml -%{_sysconfdir}/libreport/events/analyze_Smolt.xml +%{_sysconfdir}/libreport/events/collect_xsession_errors.xml +%{_sysconfdir}/libreport/events/collect_Smolt.xml +%{_sysconfdir}/libreport/events/collect_GConf.xml +%{_sysconfdir}/libreport/events/collect_vimrc_user.xml +%{_sysconfdir}/libreport/events/collect_vimrc_system.xml %{_mandir}/man*/abrt-action-trim-files.* %{_mandir}/man*/abrt-action-generate-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* +%{_mandir}/man1/abrt-install-ccpp-hook.1.gz +%{_mandir}/man1/abrt-action-analyze-c.1.gz + +%files retrace-client +%{_bindir}/abrt-retrace-client +%{_mandir}/man1/abrt-retrace-client.1.gz +%{_sysconfdir}/libreport/events.d/ccpp_retrace_event.conf +%{_sysconfdir}/libreport/events/analyze_RetraceServer.xml %files addon-kerneloops %defattr(-,root,root,-) @@ -460,22 +523,41 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-analyze-oops %{_mandir}/man1/abrt-action-analyze-oops.1* +%files addon-vmcore +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf +%{_sysconfdir}/libreport/events/analyze_VMcore.xml +%if %{with systemd} +/lib/systemd/system/abrt-vmcore.service +%else +%{_initrddir}/abrt-vmcore +%endif +%{_sbindir}/abrt-harvest-vmcore +%{_bindir}/abrt-action-analyze-vmcore + + %files addon-python %defattr(-,root,root,-) #%config(noreplace) %{_sysconfdir}/%{name}/plugins/Python.conf %{_sysconfdir}/libreport/events.d/python_event.conf %{_bindir}/abrt-action-analyze-python +%{_mandir}/man1/abrt-action-analyze-python.1* %{python_site}/abrt*.py* %{python_site}/abrt.pth %files cli %defattr(-,root,root,-) %{_bindir}/abrt-cli +# provide asap +#% {_mandir}/man1/report-cli.1.gz %files desktop %defattr(-,root,root,-) %changelog +* Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.980-1 +- + * Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 - minor spec file fix From ae806b623676bdabd39a39edfa27196fa3c635ec Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 3 Oct 2011 10:50:40 +0200 Subject: [PATCH 028/318] abrt-desktop should require the retrace-client, so it can be used on livecd --- abrt.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/abrt.spec b/abrt.spec index f34f577..6e440f2 100644 --- a/abrt.spec +++ b/abrt.spec @@ -181,6 +181,7 @@ Requires: abrt-addon-python Requires: gdb >= 7.0-3 Requires: abrt-gui Requires: libreport-plugin-logger, libreport-plugin-bugzilla +Requires: abrt-retrace-client #Requires: abrt-plugin-firefox Obsoletes: bug-buddy > 0.0.1 Provides: bug-buddy From 4a1b212d07f58405ced5a2ce9d44c9e115b4630c Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 3 Oct 2011 12:32:24 +0200 Subject: [PATCH 029/318] install abrt-retrace-client by default (required for livecds) Conflicts: abrt.spec --- abrt.spec | 23 ++++++++++++++++++++--- sources | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/abrt.spec b/abrt.spec index 6e440f2..f500f75 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,8 +15,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.4.980 -Release: 1%{?dist} +Version: 2.0.4.981 +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -556,8 +556,25 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Mon Oct 3 2011 Jiri Moskovcak - 2.0.4-981-2 +- added abrt-retrace-client as a dependency + +* Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.981-1 +- updated translation +- don't allow to skip the analyze step +- don't send ~ backups +- added hint to report only in English +- renamed abrt-action-kerneloops -> reporter-kerneloops +- explain option bugtracker and logger +- gui added padding to main window +- better message when gdb time outs +- added support for catching vmcores +- added version to Logger output +- [RFE] abrt should have an easy way to include smolt-profile +- Resolves: #694828 #694833 #704958 #735071 #731189 #739182 #704452 #734037 #606123 #631822 + * Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.980-1 -- +- new upstream release * Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 - minor spec file fix diff --git a/sources b/sources index 8604459..73f76c5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a3545ef7240579b341c810961d4cddc3 abrt-2.0.4.tar.gz +64fea3ba4fc382a73a387e0d31a9bc15 abrt-2.0.4.981.tar.gz From 942930fbdae7cf7cb233414276f4dafc7b0e7f72 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 23 Sep 2011 19:12:03 +0200 Subject: [PATCH 030/318] forgot to push abrt-vmcore.init --- abrt-vmcore.init | 79 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 abrt-vmcore.init diff --git a/abrt-vmcore.init b/abrt-vmcore.init new file mode 100644 index 0000000..34e69ea --- /dev/null +++ b/abrt-vmcore.init @@ -0,0 +1,79 @@ +#!/bin/bash +# Harvest vmcores for ABRT +# +# chkconfig: 35 82 16 +# description: Installs coredump handler which saves segfault data +### BEGIN INIT INFO +# Provides: abrt-vmcore +# Required-Start: $abrtd +# Default-Stop: 0 1 2 6 +# Default-Start: 3 5 +# Short-Description: Collects vmcore (kernel crash data) for ABRT +# Description: Collects vmcore (kernel crash data) for ABRT +### END INIT INFO + +# Source function library. +. /etc/rc.d/init.d/functions + +LOCK="/var/lock/subsys/abrt-vmcore" +HARVEST_CMD="/usr/sbin/abrt-harvest-vmcore" + +RETVAL=0 + +check() { + # Check that we're a privileged user + [ "`id -u`" = 0 ] || exit 4 +} + +start() { + check + "$HARVEST_CMD" + RETVAL=$? + [ $RETVAL -eq 0 ] && touch -- "$LOCK" + return $RETVAL +} + +stop() { + check + rm -f -- "$LOCK" + return 0 +} + +restart() { + stop + start +} + +reload() { + restart +} + +case "$1" in +start) + start + ;; +stop) + stop + ;; +reload) + reload + ;; +force-reload) + echo "$0: Unimplemented feature." + RETVAL=3 + ;; +restart) + restart + ;; +condrestart) + test -f "$LOCK" && restart + ;; +status) + test -f "$LOCK" && RETVAL=0 || RETVAL=3 + ;; +*) + echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload}" + RETVAL=2 +esac + +exit $RETVAL From 95a610dee10ad68ebea379a33e9b81e34888d029 Mon Sep 17 00:00:00 2001 From: Nikola Pajkovsky Date: Fri, 7 Oct 2011 12:11:38 +0200 Subject: [PATCH 031/318] don't file bugs when kernel is tainted Signed-off-by: Nikola Pajkovsky --- ...t-file-kernel-bugs-if-tainted-B-is-s.patch | 192 ++++++++++++++++++ ...8097-don-t-file-bugs-about-BIOS-bugs.patch | 35 ++++ abrt.spec | 12 +- 3 files changed, 238 insertions(+), 1 deletion(-) create mode 100644 0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch create mode 100644 0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch diff --git a/0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch b/0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch new file mode 100644 index 0000000..e4198ef --- /dev/null +++ b/0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch @@ -0,0 +1,192 @@ +From 82b27dca87ef5a4f1cbb29377524bbdee26b1d64 Mon Sep 17 00:00:00 2001 +Message-Id: <82b27dca87ef5a4f1cbb29377524bbdee26b1d64.1317979766.git.npajkovs@redhat.com> +From: Nikola Pajkovsky +Date: Wed, 5 Oct 2011 15:13:23 +0200 +Subject: [PATCH 1/2] rhbz#724838 - don't file kernel bugs if "tainted: B" is + set + +Kernel maintainers are not much happy that we filling bugs when kernel +is tainted. + +Dave Jones said +--- +If something has corrupted memory, we typically see a whole bunch of things +start crashing. This leads to situations where abrt files a lot of bugs, even +though most of them are just fallout from the first. + +an example: bugs 710925 710930 710932 710933 710935 710942 710948 710955 710956 +are all the same crash. The traces and addresses are different, but 'something +scribbled over memory' is the root cause here. Sadly out of all those bugs, we +actually somehow missed the first crash which is the most relevant one. (That +one would have not had the 'Tainted: G B' text) +--- + +First part of the patch is that we won't relay on /proc/sys/kernel/tainted and +we will parse the kernel bt manually, because of reading that file after an oops +is ALWAYS going to show it as tainted. + +Second part of the patch is that whenever you want to prohibit reporting, put a +file with name *not-reportable* into . That file could be empty or with +reasonable message why are you trying to prohibit reporting. + +All 3 reporters plugins will be respect that file and it won't try to report anything. +Reporters will show only the messages from *not-reportable* and *reason*. + +Signed-off-by: Nikola Pajkovsky +--- + src/gui-gtk/main.c | 16 ++++++++-- + src/plugins/abrt-dump-oops.c | 65 +++++++++++++++++++++++------------------ + 2 files changed, 49 insertions(+), 32 deletions(-) + +diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c +index 8172951..d11bf57 100644 +--- a/src/gui-gtk/main.c ++++ b/src/gui-gtk/main.c +@@ -100,7 +100,14 @@ static void add_directory_to_dirlist(const char *dirname) + } + free(time_str); + +- char *reason = dd_load_text(dd, FILENAME_REASON); ++ ++ char *not_reportable_reason = dd_load_text_ext(dd, FILENAME_NOT_REPORTABLE, 0 ++ | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE ++ | DD_FAIL_QUIETLY_ENOENT ++ | DD_FAIL_QUIETLY_EACCES); ++ char *reason = NULL; ++ if (!not_reportable_reason) ++ reason = dd_load_text(dd, FILENAME_REASON); + + /* the source of the problem: + * - first we try to load component, as we use it on Fedora +@@ -142,7 +149,7 @@ static void add_directory_to_dirlist(const char *dirname) + gtk_list_store_append(list_store, &iter); + gtk_list_store_set(list_store, &iter, + COLUMN_SOURCE, source, +- COLUMN_REASON, reason, ++ COLUMN_REASON, not_reportable_reason? :reason, + //OPTION: time format + COLUMN_LATEST_CRASH_STR, time_buf, + COLUMN_LATEST_CRASH, t, +@@ -150,6 +157,7 @@ static void add_directory_to_dirlist(const char *dirname) + COLUMN_REPORTED_TO, msg ? subm_status : NULL, + -1); + /* this is safe, subm_status is either null or malloced string from get_last_line */ ++ free(not_reportable_reason); + free(subm_status); + free(msg); + free(reason); +@@ -243,7 +251,9 @@ static void on_row_activated_cb(GtkTreeView *treeview, GtkTreePath *path, GtkTre + gtk_tree_model_get_value(store, &iter, COLUMN_DUMP_DIR, &d_dir); + + const char *dirname = g_value_get_string(&d_dir); +- report_problem_in_dir(dirname, LIBREPORT_ANALYZE | LIBREPORT_NOWAIT | LIBREPORT_GETPID); ++ ++ report_problem_in_dir(dirname, ++ LIBREPORT_ANALYZE | LIBREPORT_NOWAIT | LIBREPORT_GETPID); + } + } + } +diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c +index 76c699d..58af506 100644 +--- a/src/plugins/abrt-dump-oops.c ++++ b/src/plugins/abrt-dump-oops.c +@@ -480,16 +480,6 @@ static unsigned save_oops_to_dump_dir(GList *oops_list, unsigned oops_cnt) + + VERB1 log("Saving %u oopses as dump dirs", idx >= countdown ? countdown-1 : idx); + +- char *tainted_str = NULL; +- FILE *tainted_fp = fopen("/proc/sys/kernel/tainted", "r"); +- if (tainted_fp) +- { +- tainted_str = xmalloc_fgetline(tainted_fp); +- fclose(tainted_fp); +- } +- else +- perror_msg("Can't open '%s'", "/proc/sys/kernel/tainted"); +- + char *cmdline_str = NULL; + FILE *cmdline_fp = fopen("/proc/cmdline", "r"); + if (cmdline_fp) +@@ -536,35 +526,44 @@ static unsigned save_oops_to_dump_dir(GList *oops_list, unsigned oops_cnt) + if (cmdline_str) + dd_save_text(dd, FILENAME_CMDLINE, cmdline_str); + dd_save_text(dd, FILENAME_BACKTRACE, second_line); +-// TODO: add "Kernel oops: " prefix, so that all oopses have recognizable FILENAME_REASON? +-// kernel oops 1st line may look quite puzzling otherwise... +- strchrnul(second_line, '\n')[0] = '\0'; +- dd_save_text(dd, FILENAME_REASON, second_line); + +- if (tainted_str && tainted_str[0] != '0') ++ char *tainted_short = kernel_tainted_short(second_line); ++ if (tainted_short) + { +- unsigned long tainted = xatoi_positive(tainted_str); +- char *tainted_short = kernel_tainted_short(tainted); +- GList *tainted_long = kernel_tainted_long(tainted); +- +- struct strbuf *tnt_long = strbuf_new(); +- for (GList *li = tainted_long; li; li = li->next) +- strbuf_append_strf(tnt_long, "%s\n", (char*) li->data); +- +- dd_save_text(dd, FILENAME_TAINTED, tainted_str); ++ VERB1 log("Kernel is tainted '%s'", tainted_short); + dd_save_text(dd, FILENAME_TAINTED_SHORT, tainted_short); +- dd_save_text(dd, FILENAME_TAINTED_LONG, tnt_long->buf); +- strbuf_free(tnt_long); +- list_free_with_free(tainted_long); ++ char *reason = xasprintf("Your kernel is tainted by flags '%s'. " ++ "Kernel maintainers are not interesting about " ++ "tainted kernel, because the trace might not be showing " ++ "the root problem." ++ , tainted_short); ++ dd_save_text(dd, FILENAME_NOT_REPORTABLE, reason); ++ free(reason); + } ++// TODO: add "Kernel oops: " prefix, so that all oopses have recognizable FILENAME_REASON? ++// kernel oops 1st line may look quite puzzling otherwise... ++ strchrnul(second_line, '\n')[0] = '\0'; ++ dd_save_text(dd, FILENAME_REASON, second_line); + ++/* ++ GList *tainted_long = kernel_tainted_long(tainted); ++ ++ struct strbuf *tnt_long = strbuf_new(); ++ for (GList *li = tainted_long; li; li = li->next) ++ strbuf_append_strf(tnt_long, "%s\n", (char*) li->data); ++ ++ dd_save_text(dd, FILENAME_TAINTED, tainted_str); ++ dd_save_text(dd, FILENAME_TAINTED_SHORT, tainted_short); ++ dd_save_text(dd, FILENAME_TAINTED_LONG, tnt_long->buf); ++ strbuf_free(tnt_long); ++ list_free_with_free(tainted_long); ++*/ + dd_close(dd); + } + else + errors++; + } + +- free(tainted_str); + free(cmdline_str); + + return errors; +@@ -718,7 +717,15 @@ int main(int argc, char **argv) + { + int i = 0; + while (i < oops_cnt) +- printf("\nVersion: %s", (char*)g_list_nth_data(oops_list, i++)); ++ { ++ char *kernel_bt = (char*)g_list_nth_data(oops_list, i++); ++ char *tainted_short = kernel_tainted_short(kernel_bt); ++ if (tainted_short) ++ log("Kernel is tainted '%s'", tainted_short); ++ ++ free(tainted_short); ++ printf("\nVersion: %s", kernel_bt); ++ } + } + if ((opts & OPT_d) || (opts & OPT_D)) + { +-- +1.7.7.rc0.70.g82660 + diff --git a/0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch b/0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch new file mode 100644 index 0000000..ae62890 --- /dev/null +++ b/0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch @@ -0,0 +1,35 @@ +From e965fb7a7c768889cdd4a59859d28dc83b3daf09 Mon Sep 17 00:00:00 2001 +Message-Id: +In-Reply-To: <82b27dca87ef5a4f1cbb29377524bbdee26b1d64.1317979766.git.npajkovs@redhat.com> +References: <82b27dca87ef5a4f1cbb29377524bbdee26b1d64.1317979766.git.npajkovs@redhat.com> +From: Nikola Pajkovsky +Date: Wed, 5 Oct 2011 17:23:22 +0200 +Subject: [PATCH 2/2] rhbz#718097 - don't file bugs about BIOS bugs + +Signed-off-by: Nikola Pajkovsky +--- + src/plugins/abrt-dump-oops.c | 7 ++++++- + 1 files changed, 6 insertions(+), 1 deletions(-) + +diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c +index 58af506..3bfc617 100644 +--- a/src/plugins/abrt-dump-oops.c ++++ b/src/plugins/abrt-dump-oops.c +@@ -527,8 +527,13 @@ static unsigned save_oops_to_dump_dir(GList *oops_list, unsigned oops_cnt) + dd_save_text(dd, FILENAME_CMDLINE, cmdline_str); + dd_save_text(dd, FILENAME_BACKTRACE, second_line); + ++ /* check if trace doesn't have line: 'Your BIOS is broken' */ ++ char *broken_bios = strstr(second_line, "Your BIOS is broken"); ++ if (broken_bios) ++ dd_save_text(dd, FILENAME_NOT_REPORTABLE, "Your BIOS is broken"); ++ + char *tainted_short = kernel_tainted_short(second_line); +- if (tainted_short) ++ if (tainted_short && !broken_bios) + { + VERB1 log("Kernel is tainted '%s'", tainted_short); + dd_save_text(dd, FILENAME_TAINTED_SHORT, tainted_short); +-- +1.7.7.rc0.70.g82660 + diff --git a/abrt.spec b/abrt.spec index f500f75..5cf97a5 100644 --- a/abrt.spec +++ b/abrt.spec @@ -16,7 +16,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.4.981 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -27,6 +27,8 @@ Source3: abrt-oops.init Source4: abrt-vmcore.init Source5: abrt1_to_abrt2 Patch0: blacklist.patch +Patch1: 0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch +Patch2: 0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -194,6 +196,8 @@ Virtual package to make easy default installation on desktop environments. # Fedora specific %patch0 -p1 -b .blacklist # general fixes +%patch1 -p1 +%patch2 -p1 %build autoconf @@ -556,6 +560,12 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Fri Oct 07 2011 Nikola Pajkovsky - 2.0.4.981-3 +- don't file kernel bugs if "tainted: B" is set. +- don't file bugs about BIOS bugs. +- incorrect TAINTED description in bugs. +- Resoves: #718097 #708534 724838 + * Mon Oct 3 2011 Jiri Moskovcak - 2.0.4-981-2 - added abrt-retrace-client as a dependency From 95a6bec8cd6bd99484ae993a1c6b0f51c482b774 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Sat, 5 Nov 2011 11:23:46 +0100 Subject: [PATCH 032/318] new version 2.0.6 --- .gitignore | 1 + abrt.spec | 119 ++++++++++++++++++++----------------- abrt_disable_gpgcheck.diff | 6 +- allow_bz_for_koops.patch | 16 +++-- sources | 2 +- 5 files changed, 78 insertions(+), 66 deletions(-) diff --git a/.gitignore b/.gitignore index 3dbae70..3369dee 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ abrt-1.1.13.tar.gz /abrt-2.0.2.tar.gz /abrt-2.0.3.tar.gz /abrt-2.0.4.tar.gz +/abrt-2.0.6.tar.gz diff --git a/abrt.spec b/abrt.spec index 5cf97a5..7a6cfec 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,20 +15,16 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.4.981 -Release: 3%{?dist} +Version: 2.0.6 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz -Source1: abrt.init -Source2: abrt-ccpp.init -Source3: abrt-oops.init -Source4: abrt-vmcore.init -Source5: abrt1_to_abrt2 +Source1: abrt1_to_abrt2 Patch0: blacklist.patch -Patch1: 0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch -Patch2: 0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch +Patch1: abrt_disable_gpgcheck.diff +Patch2: 0002-gtk3-build-fixes.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -43,16 +39,9 @@ BuildRequires: libtool BuildRequires: nss-devel BuildRequires: asciidoc BuildRequires: xmlto -BuildRequires: libreport-devel >= 2.0.5-2 +BuildRequires: libreport-devel > 2.0.6 BuildRequires: btparser-devel -# for rhel6 -%if 0%{?rhel} >= 6 -BuildRequires: gnome-keyring-devel -%else -BuildRequires: libgnome-keyring-devel -%endif - %if %{with systemd} Requires: systemd-units %endif @@ -112,12 +101,12 @@ analyzer plugin. Summary: %{name}'s retrace client Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} +Requires: xz %description retrace-client This package contains the client application for Retrace server which is able to analyze C/C++ crashes remotely. - %package addon-kerneloops Summary: %{name}'s kerneloops addon Group: System Environment/Libraries @@ -128,19 +117,18 @@ Obsoletes: kerneloops > 0.0.1 Obsoletes: abrt-plugin-kerneloops > 0.0.1 Obsoletes: abrt-plugin-kerneloopsreporter > 0.0.1 -%description addon-kerneloops -This package contains plugin for collecting kernel crash information. - %package addon-vmcore Summary: %{name}'s vmcore addon Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops +%description addon-kerneloops +This package contains plugin for collecting kernel crash information from system log. + %description addon-vmcore This package contains plugin for collecting kernel crash information from vmcore files. - %package addon-python Summary: %{name}'s addon for catching and analyzing Python exceptions Group: System Environment/Libraries @@ -195,12 +183,15 @@ Virtual package to make easy default installation on desktop environments. %setup -q # Fedora specific %patch0 -p1 -b .blacklist -# general fixes -%patch1 -p1 -%patch2 -p1 +# general +%patch1 -p1 -b .gpg +%patch2 -p1 -b .gtk3 %build +mkdir -p m4 +test -r m4/aclocal.m4 || touch m4/aclocal.m4 autoconf +automake %configure sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -214,14 +205,8 @@ make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} # remove all .la and .a files find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f +install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_libexecdir}/abrt1-to-abrt2 mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} -%if ! %{with systemd} -install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_initrddir}/abrtd -install -m 755 %SOURCE2 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-ccpp -install -m 755 %SOURCE3 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-oops -install -m 755 %SOURCE4 ${RPM_BUILD_ROOT}/%{_initrddir}/abrt-vmcore -%endif -install -m 755 %SOURCE5 ${RPM_BUILD_ROOT}/%{_libexecdir}/abrt1-to-abrt2 mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt @@ -254,9 +239,11 @@ getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d exit 0 %post +## [ $1 -eq 1 ] install section if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default + /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrtd.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrtd @@ -269,9 +256,11 @@ fi # because /cache/abrt-di/* was created under root with root:root # so 2.x fails when it tries to extract debuginfo there.. chown -R abrt:abrt %{_localstatedir}/cache/abrt-di +## [ $1 -eq 1 ] install section if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default + /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrt-ccpp @@ -282,18 +271,26 @@ fi # that abrtd service is enabled and thus enable the new abrt-ccpp # service. If abrtd is running on the system, run abrt-ccpp service # as well, because what was a part of abrtd became a separate service. -if [ $1 -gt 1 ]; then # Is this an upgrade? - /sbin/chkconfig --add abrt-ccpp - /sbin/pidof abrtd >/dev/null 2>&1 - if [ $? -eq 0 ]; then # Is abrtd running? - service abrt-ccpp restart >/dev/null 2>&1 || : - fi + +## [ $1 -gt 1 ] upgrade section +if [ $1 -gt 1 ]; then + %if %{with systemd} + /bin/systemctl restart abrt-ccpp.service >/dev/null 2>&1 || : + %else + /sbin/chkconfig --add abrt-ccpp > /dev/null 2>&1 || : + /sbin/pidof abrtd >/dev/null 2>&1 + if [ $? -eq 0 ]; then # Is abrtd running? + service abrt-ccpp restart >/dev/null 2>&1 || : + fi + %endif fi %post addon-kerneloops +## [ $1 -eq 1 ] install section if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default + /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrt-oops @@ -304,25 +301,31 @@ fi # that abrtd service is enabled and thus enable the new abrt-oops # service. If abrtd is running on the system, run abrt-ccpp service # as well, because what was a part of abrtd became a separate service. -if [ $1 -gt 1 ]; then # Is this an upgrade? - /sbin/chkconfig --add abrt-oops - /sbin/pidof abrtd >/dev/null 2>&1 - if [ $? -eq 0 ]; then # Is abrtd running? - service abrt-oops restart >/dev/null 2>&1 || : - fi + +## [ $1 -gt 1 ] upgrade section +if [ $1 -gt 1 ]; then + %if %{with systemd} + /bin/systemctl try-restart abrt-oops.service >/dev/null 2>&1 || : + %else + /sbin/chkconfig --add abrt-oops > /dev/null 2>&1 || : + /sbin/pidof abrtd >/dev/null 2>&1 + if [ $? -eq 0 ]; then # Is abrtd running? + service abrt-oops restart >/dev/null 2>&1 || : + fi + %endif fi %post addon-vmcore if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default + /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrt-vmcore %endif fi - %preun if [ "$1" -eq "0" ] ; then %if %{with systemd} @@ -369,16 +372,16 @@ fi %if %{with systemd} %postun -/bin/systemctl daemon-reload >/dev/null 2>&1 || : +/bin/systemctl try-reload abrtd.service >/dev/null 2>&1 || : %postun addon-kerneloops -/bin/systemctl daemon-reload >/dev/null 2>&1 || : +/bin/systemctl try-reload abrt-oops.service >/dev/null 2>&1 || : %postun addon-vmcore -/bin/systemctl daemon-reload >/dev/null 2>&1 || : +/bin/systemctl try-reload abrt-vmcore.service >/dev/null 2>&1 || : %postun addon-ccpp -/bin/systemctl daemon-reload >/dev/null 2>&1 || : +/bin/systemctl try-reload abrt-ccpp.service >/dev/null 2>&1 || : %endif @@ -433,6 +436,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %config(noreplace) %{_sysconfdir}/libreport/events.d/smolt_event.conf %dir %attr(0755, abrt, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload +# abrtd runs as root %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} %ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket %ghost %attr(0644, -, -) %{_localstatedir}/run/abrtd.pid @@ -447,7 +451,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man5/abrt.conf.5.gz %{_mandir}/man5/abrt-action-save-package-data.conf.5.gz # {_mandir}/man5/pyhook.conf.5.gz -%{_mandir}/man1/abrt-retrace-client.1.gz %{_datadir}/dbus-1/system-services/com.redhat.abrt.service %{_libexecdir}/abrt1-to-abrt2 @@ -503,12 +506,12 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_sysconfdir}/libreport/events/collect_GConf.xml %{_sysconfdir}/libreport/events/collect_vimrc_user.xml %{_sysconfdir}/libreport/events/collect_vimrc_system.xml +%{_mandir}/man*/abrt-action-analyze-c.* %{_mandir}/man*/abrt-action-trim-files.* %{_mandir}/man*/abrt-action-generate-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* %{_mandir}/man1/abrt-install-ccpp-hook.1.gz -%{_mandir}/man1/abrt-action-analyze-c.1.gz %files retrace-client %{_bindir}/abrt-retrace-client @@ -540,10 +543,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore - %files addon-python %defattr(-,root,root,-) -#%config(noreplace) %{_sysconfdir}/%{name}/plugins/Python.conf +%config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf %{_sysconfdir}/libreport/events.d/python_event.conf %{_bindir}/abrt-action-analyze-python %{_mandir}/man1/abrt-action-analyze-python.1* @@ -560,6 +562,14 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Fri Nov 04 2011 Jiri Moskovcak 2.0.6-1 +- new version +- moved to gtk3 +- Resolves: #701171 #712508 #726033 #728194 #728314 #730107 #733389 #738602 +- Resolves: #741242 #749365 #700252 #734298 #736016 #738324 #748457 #692274 +- Resolves: #711986 #723219 #749891 #712602 #744887 #749603 #625445 #665210 +- Resolves: #737991 #639068 #578969 #636000 #631856 + * Fri Oct 07 2011 Nikola Pajkovsky - 2.0.4.981-3 - don't file kernel bugs if "tainted: B" is set. - don't file bugs about BIOS bugs. @@ -583,9 +593,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - [RFE] abrt should have an easy way to include smolt-profile - Resolves: #694828 #694833 #704958 #735071 #731189 #739182 #704452 #734037 #606123 #631822 -* Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.980-1 -- new upstream release - * Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 - minor spec file fix diff --git a/abrt_disable_gpgcheck.diff b/abrt_disable_gpgcheck.diff index 26e00fc..49f9068 100644 --- a/abrt_disable_gpgcheck.diff +++ b/abrt_disable_gpgcheck.diff @@ -1,6 +1,6 @@ ---- abrt-1.1.10/src/Daemon/abrt.conf 2010-06-30 15:08:48.000000000 +0200 -+++ abrt-1.1.10_/src/Daemon/abrt.conf 2010-07-26 13:59:27.484253074 +0200 -@@ -4,7 +4,7 @@ +--- abrt-2.0.6/src/daemon/abrt-action-save-package-data.conf 2011-11-04 13:03:43.271953835 +0100 ++++ abrt-2.0.6_/src/daemon/abrt-action-save-package-data.conf 2011-11-04 13:03:36.661746556 +0100 +@@ -3,7 +3,7 @@ # the list of public keys used to check the signature is # in the file gpg_keys # diff --git a/allow_bz_for_koops.patch b/allow_bz_for_koops.patch index 711cfe9..49f9068 100644 --- a/allow_bz_for_koops.patch +++ b/allow_bz_for_koops.patch @@ -1,7 +1,11 @@ ---- abrt-2.0.1/src/plugins/koops_events.conf 2011-03-30 21:10:14.000000000 +0200 -+++ abrt-2.0.1_/src/plugins/koops_events.conf 2011-04-20 14:43:46.460859863 +0200 -@@ -9,3 +9,4 @@ +--- abrt-2.0.6/src/daemon/abrt-action-save-package-data.conf 2011-11-04 13:03:43.271953835 +0100 ++++ abrt-2.0.6_/src/daemon/abrt-action-save-package-data.conf 2011-11-04 13:03:36.661746556 +0100 +@@ -3,7 +3,7 @@ + # the list of public keys used to check the signature is + # in the file gpg_keys + # +-OpenGPGCheck = yes ++OpenGPGCheck = no - # report - EVENT=report_Kerneloops analyzer=Kerneloops abrt-action-kerneloops -+EVENT=report_Bugzilla analyzer=Kerneloops abrt-action-bugzilla + # Blacklisted packages + # diff --git a/sources b/sources index 73f76c5..b7c03d6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -64fea3ba4fc382a73a387e0d31a9bc15 abrt-2.0.4.981.tar.gz +a44d60efdf2173417e334b5547a2441f abrt-2.0.6.tar.gz From f7e2556354e3ff5fbb8c807efc9a4f09ea8c355f Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Sat, 5 Nov 2011 12:21:33 +0100 Subject: [PATCH 033/318] added forgotten patch --- 0002-gtk3-build-fixes.patch | 79 +++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 0002-gtk3-build-fixes.patch diff --git a/0002-gtk3-build-fixes.patch b/0002-gtk3-build-fixes.patch new file mode 100644 index 0000000..47682f2 --- /dev/null +++ b/0002-gtk3-build-fixes.patch @@ -0,0 +1,79 @@ +From af62f5f9fc31a8b24a56983d37cad2d29380ff20 Mon Sep 17 00:00:00 2001 +From: Jiri Moskovcak +Date: Fri, 4 Nov 2011 15:28:15 +0100 +Subject: [PATCH 2/2] gtk3 build fixes + +--- + configure.ac | 7 ++++++- + src/applet/applet.c | 4 ++-- + src/gui-gtk/main.c | 7 ++++++- + 3 files changed, 14 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 6b0732c..d584047 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -20,6 +20,11 @@ AC_ARG_ENABLE(debug, + [Enable debug information])], + [CFLAGS="$CFLAGS -DDEBUG -ggdb -g"]) + ++AC_ARG_ENABLE(gtk3, ++ [AC_HELP_STRING([--enable-gtk3], ++ [Use gtk3 instead of gtk2])], ++ [GTK_VER="gtk+-3.0"],[GTK_VER="gtk+-2.0"]) ++ + dnl ****** INTERNATIONALIZATION ********************** + GETTEXT_PACKAGE=abrt + AC_SUBST(GETTEXT_PACKAGE) +@@ -56,7 +61,7 @@ AC_PATH_PROG([XMLTO], [xmlto], [no]) + [exit 1] + [fi] + +-PKG_CHECK_MODULES([GTK], [gtk+-2.0]) ++PKG_CHECK_MODULES([GTK], [$GTK_VER]) + PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.21]) + PKG_CHECK_MODULES([DBUS], [dbus-1]) + PKG_CHECK_MODULES([LIBXML], [libxml-2.0]) +diff --git a/src/applet/applet.c b/src/applet/applet.c +index 4ff73b6..95b7091 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -581,8 +581,8 @@ static void init_applet(void) + ap_status_icon = gtk_status_icon_new_from_icon_name("abrt"); + } + hide_icon(); +- g_signal_connect(G_OBJECT(ap_status_icon), "activate", GTK_SIGNAL_FUNC(on_applet_activate_cb), NULL); +- g_signal_connect(G_OBJECT(ap_status_icon), "popup_menu", GTK_SIGNAL_FUNC(on_menu_popup_cb), NULL); ++ g_signal_connect(G_OBJECT(ap_status_icon), "activate", G_CALLBACK(on_applet_activate_cb), NULL); ++ g_signal_connect(G_OBJECT(ap_status_icon), "popup_menu", G_CALLBACK(on_menu_popup_cb), NULL); + ap_menu = create_menu(); + } + +diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c +index a8aacec..b31509b 100644 +--- a/src/gui-gtk/main.c ++++ b/src/gui-gtk/main.c +@@ -25,6 +25,11 @@ + #include + #include "libabrt.h" + ++#if GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION < 22 ++# define GDK_KEY_Delete GDK_Delete ++# define GDK_KEY_KP_Delete GDK_KP_Delete ++#endif ++ + static void scan_dirs_and_add_to_dirlist(void); + + +@@ -460,7 +465,7 @@ static gint on_key_press_event_cb(GtkTreeView *treeview, GdkEventKey *key, gpoin + { + int k = key->keyval; + +- if (k == GDK_Delete || k == GDK_KP_Delete) ++ if (k == GDK_KEY_Delete || k == GDK_KEY_KP_Delete) + { + delete_report(treeview); + return TRUE; +-- +1.7.7 + From 2b81b8ee67d0f86da23bedf1a0b0d85fb7b790e0 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Sat, 5 Nov 2011 18:47:02 +0100 Subject: [PATCH 034/318] glib 2.31 build fixes --- abrt.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/abrt.spec b/abrt.spec index 7a6cfec..de9e161 100644 --- a/abrt.spec +++ b/abrt.spec @@ -25,6 +25,7 @@ Source1: abrt1_to_abrt2 Patch0: blacklist.patch Patch1: abrt_disable_gpgcheck.diff Patch2: 0002-gtk3-build-fixes.patch +Patch3: 0003-glib-2.31-build-fixes.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -186,6 +187,7 @@ Virtual package to make easy default installation on desktop environments. # general %patch1 -p1 -b .gpg %patch2 -p1 -b .gtk3 +%patch3 -p1 -b .glib231 %build mkdir -p m4 From 5b837249a5b5a5d1f66d421e391d23cc8c9defa4 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Sat, 5 Nov 2011 18:52:36 +0100 Subject: [PATCH 035/318] added forgotten patch --- 0003-glib-2.31-build-fixes.patch | 72 ++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 0003-glib-2.31-build-fixes.patch diff --git a/0003-glib-2.31-build-fixes.patch b/0003-glib-2.31-build-fixes.patch new file mode 100644 index 0000000..86f5ce4 --- /dev/null +++ b/0003-glib-2.31-build-fixes.patch @@ -0,0 +1,72 @@ +From ecfc461fd979aeb2d3ce4b9d811e4bf4a7730532 Mon Sep 17 00:00:00 2001 +From: Jiri Moskovcak +Date: Sat, 5 Nov 2011 18:04:54 +0100 +Subject: [PATCH 3/3] - glib 2.31 build fixes + +--- + src/applet/applet.c | 14 +++++++++++++- + src/gui-gtk/main.c | 4 ++-- + 2 files changed, 15 insertions(+), 3 deletions(-) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index 95b7091..bead61f 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -766,10 +766,20 @@ int main(int argc, char** argv) + textdomain(PACKAGE); + #endif + ++ /* Glib 2.31: ++ * Major changes to threading and synchronisation ++ - threading is now always enabled in GLib ++ - support for custom thread implementations (including our own internal ++ - support for errorcheck mutexes) has been removed ++ */ ++#if (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 31) ++ //can't use log(), because g_verbose is not set yet ++ g_print("abrt-applet: glib < 2.31 - init threading\n"); + /* Need to be thread safe */ + g_thread_init(NULL); + gdk_threads_init(); + gdk_threads_enter(); ++#endif + + gtk_init(&argc, &argv); + +@@ -869,8 +879,10 @@ int main(int argc, char** argv) + + /* Enter main loop */ + gtk_main(); +- ++#if (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 31) + gdk_threads_leave(); ++#endif ++ + if (notify_is_initted()) + notify_uninit(); + +diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c +index b31509b..a24745a 100644 +--- a/src/gui-gtk/main.c ++++ b/src/gui-gtk/main.c +@@ -912,7 +912,7 @@ static gboolean handle_signal_pipe(GIOChannel *gio, GIOCondition condition, gpoi + */ + gchar buf[16]; + gsize bytes_read; +- g_io_channel_read(gio, buf, sizeof(buf), &bytes_read); ++ g_io_channel_read_chars(gio, buf, sizeof(buf), &bytes_read, NULL); + + /* Destroy zombies */ + while (safe_waitpid(-1, NULL, WNOHANG) > 0) +@@ -975,7 +975,7 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin + /* We read inotify events, but don't analyze them */ + gchar buf[sizeof(struct inotify_event) + PATH_MAX + 64]; + gsize bytes_read; +- while (g_io_channel_read(gio, buf, sizeof(buf), &bytes_read) == G_IO_ERROR_NONE ++ while (g_io_channel_read_chars(gio, buf, sizeof(buf), &bytes_read, NULL) == G_IO_STATUS_NORMAL + && bytes_read > 0 + ) { + continue; +-- +1.7.7 + From 9b168d3bcbbd2a2d7414d093b33dfe5d9631b6b4 Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 7 Dec 2011 10:38:57 +0100 Subject: [PATCH 036/318] new version 2.0.7 --- ...reporter-children-with-LIBREPORT_GET.patch | 40 -- ...t-file-kernel-bugs-if-tainted-B-is-s.patch | 192 ---------- ...disabled-reporting-to-kerneloops.org.patch | 27 ++ 0002-gtk3-build-fixes.patch | 79 ---- ...in-window-in-2-panes-reported-not-re.patch | 354 ------------------ ...8097-don-t-file-bugs-about-BIOS-bugs.patch | 35 -- 0003-glib-2.31-build-fixes.patch | 72 ---- ...rgotten-abrt-action-kerneloops-files.patch | 268 ------------- ...all-debuginfo-ask-before-downloading.patch | 71 ---- abrt-ccpp.init | 151 -------- abrt-oops.init | 91 ----- abrt-vmcore.init | 79 ---- abrt.init | 115 ------ abrt.spec | 80 ++-- allow_bz_for_koops.patch | 11 - enable_bz_for_oops.patch | 11 - free_space_check.patch | 29 -- null_deref.patch | 21 -- 18 files changed, 49 insertions(+), 1677 deletions(-) delete mode 100644 0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch delete mode 100644 0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch create mode 100644 0002-disabled-reporting-to-kerneloops.org.patch delete mode 100644 0002-gtk3-build-fixes.patch delete mode 100644 0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch delete mode 100644 0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch delete mode 100644 0003-glib-2.31-build-fixes.patch delete mode 100644 0003-remove-forgotten-abrt-action-kerneloops-files.patch delete mode 100644 0004-install-debuginfo-ask-before-downloading.patch delete mode 100644 abrt-ccpp.init delete mode 100644 abrt-oops.init delete mode 100644 abrt-vmcore.init delete mode 100644 abrt.init delete mode 100644 allow_bz_for_koops.patch delete mode 100644 enable_bz_for_oops.patch delete mode 100644 free_space_check.patch delete mode 100644 null_deref.patch diff --git a/0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch b/0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch deleted file mode 100644 index 6205f10..0000000 --- a/0001-abrt-gui-launch-reporter-children-with-LIBREPORT_GET.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 1f52667a18026dba4050368e5d2501ec6145e071 Mon Sep 17 00:00:00 2001 -From: Denys Vlasenko -Date: Thu, 21 Jul 2011 09:50:56 +0200 -Subject: [PATCH 1/4] abrt-gui: launch reporter children with LIBREPORT_GETPID - -By using LIBREPORT_NOWAIT | LIBREPORT_GETPID in abt-gui, -we make it so that reporter's SIGCHLD reaches abrt-gui -and lets it refresh the list. - -Signed-off-by: Denys Vlasenko ---- - src/gui-gtk/main.c | 5 ++--- - 1 files changed, 2 insertions(+), 3 deletions(-) - -diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c -index b62e8c0..1409191 100644 ---- a/src/gui-gtk/main.c -+++ b/src/gui-gtk/main.c -@@ -204,7 +204,7 @@ static void on_row_activated_cb(GtkTreeView *treeview, GtkTreePath *path, GtkTre - gtk_tree_model_get_value(store, &iter, COLUMN_DUMP_DIR, &d_dir); - - const char *dirname = g_value_get_string(&d_dir); -- report_problem_in_dir(dirname, LIBREPORT_ANALYZE | LIBREPORT_NOWAIT); -+ report_problem_in_dir(dirname, LIBREPORT_ANALYZE | LIBREPORT_NOWAIT | LIBREPORT_GETPID); - } - } - } -@@ -293,8 +293,7 @@ static void on_button_send_cb(GtkWidget *button, gpointer data) - /* why it doesn't want to hide before report ends? */ - gtk_widget_destroy(s_report_window); - -- int status = report_problem_in_memory(pd, LIBREPORT_NOWAIT); -- VERB1 log("Reporting finished with status %i", status); -+ report_problem_in_memory(pd, LIBREPORT_NOWAIT | LIBREPORT_GETPID); - free_problem_data(pd); - } - --- -1.7.6 - diff --git a/0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch b/0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch deleted file mode 100644 index e4198ef..0000000 --- a/0001-rhbz-724838-don-t-file-kernel-bugs-if-tainted-B-is-s.patch +++ /dev/null @@ -1,192 +0,0 @@ -From 82b27dca87ef5a4f1cbb29377524bbdee26b1d64 Mon Sep 17 00:00:00 2001 -Message-Id: <82b27dca87ef5a4f1cbb29377524bbdee26b1d64.1317979766.git.npajkovs@redhat.com> -From: Nikola Pajkovsky -Date: Wed, 5 Oct 2011 15:13:23 +0200 -Subject: [PATCH 1/2] rhbz#724838 - don't file kernel bugs if "tainted: B" is - set - -Kernel maintainers are not much happy that we filling bugs when kernel -is tainted. - -Dave Jones said ---- -If something has corrupted memory, we typically see a whole bunch of things -start crashing. This leads to situations where abrt files a lot of bugs, even -though most of them are just fallout from the first. - -an example: bugs 710925 710930 710932 710933 710935 710942 710948 710955 710956 -are all the same crash. The traces and addresses are different, but 'something -scribbled over memory' is the root cause here. Sadly out of all those bugs, we -actually somehow missed the first crash which is the most relevant one. (That -one would have not had the 'Tainted: G B' text) ---- - -First part of the patch is that we won't relay on /proc/sys/kernel/tainted and -we will parse the kernel bt manually, because of reading that file after an oops -is ALWAYS going to show it as tainted. - -Second part of the patch is that whenever you want to prohibit reporting, put a -file with name *not-reportable* into . That file could be empty or with -reasonable message why are you trying to prohibit reporting. - -All 3 reporters plugins will be respect that file and it won't try to report anything. -Reporters will show only the messages from *not-reportable* and *reason*. - -Signed-off-by: Nikola Pajkovsky ---- - src/gui-gtk/main.c | 16 ++++++++-- - src/plugins/abrt-dump-oops.c | 65 +++++++++++++++++++++++------------------ - 2 files changed, 49 insertions(+), 32 deletions(-) - -diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c -index 8172951..d11bf57 100644 ---- a/src/gui-gtk/main.c -+++ b/src/gui-gtk/main.c -@@ -100,7 +100,14 @@ static void add_directory_to_dirlist(const char *dirname) - } - free(time_str); - -- char *reason = dd_load_text(dd, FILENAME_REASON); -+ -+ char *not_reportable_reason = dd_load_text_ext(dd, FILENAME_NOT_REPORTABLE, 0 -+ | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE -+ | DD_FAIL_QUIETLY_ENOENT -+ | DD_FAIL_QUIETLY_EACCES); -+ char *reason = NULL; -+ if (!not_reportable_reason) -+ reason = dd_load_text(dd, FILENAME_REASON); - - /* the source of the problem: - * - first we try to load component, as we use it on Fedora -@@ -142,7 +149,7 @@ static void add_directory_to_dirlist(const char *dirname) - gtk_list_store_append(list_store, &iter); - gtk_list_store_set(list_store, &iter, - COLUMN_SOURCE, source, -- COLUMN_REASON, reason, -+ COLUMN_REASON, not_reportable_reason? :reason, - //OPTION: time format - COLUMN_LATEST_CRASH_STR, time_buf, - COLUMN_LATEST_CRASH, t, -@@ -150,6 +157,7 @@ static void add_directory_to_dirlist(const char *dirname) - COLUMN_REPORTED_TO, msg ? subm_status : NULL, - -1); - /* this is safe, subm_status is either null or malloced string from get_last_line */ -+ free(not_reportable_reason); - free(subm_status); - free(msg); - free(reason); -@@ -243,7 +251,9 @@ static void on_row_activated_cb(GtkTreeView *treeview, GtkTreePath *path, GtkTre - gtk_tree_model_get_value(store, &iter, COLUMN_DUMP_DIR, &d_dir); - - const char *dirname = g_value_get_string(&d_dir); -- report_problem_in_dir(dirname, LIBREPORT_ANALYZE | LIBREPORT_NOWAIT | LIBREPORT_GETPID); -+ -+ report_problem_in_dir(dirname, -+ LIBREPORT_ANALYZE | LIBREPORT_NOWAIT | LIBREPORT_GETPID); - } - } - } -diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c -index 76c699d..58af506 100644 ---- a/src/plugins/abrt-dump-oops.c -+++ b/src/plugins/abrt-dump-oops.c -@@ -480,16 +480,6 @@ static unsigned save_oops_to_dump_dir(GList *oops_list, unsigned oops_cnt) - - VERB1 log("Saving %u oopses as dump dirs", idx >= countdown ? countdown-1 : idx); - -- char *tainted_str = NULL; -- FILE *tainted_fp = fopen("/proc/sys/kernel/tainted", "r"); -- if (tainted_fp) -- { -- tainted_str = xmalloc_fgetline(tainted_fp); -- fclose(tainted_fp); -- } -- else -- perror_msg("Can't open '%s'", "/proc/sys/kernel/tainted"); -- - char *cmdline_str = NULL; - FILE *cmdline_fp = fopen("/proc/cmdline", "r"); - if (cmdline_fp) -@@ -536,35 +526,44 @@ static unsigned save_oops_to_dump_dir(GList *oops_list, unsigned oops_cnt) - if (cmdline_str) - dd_save_text(dd, FILENAME_CMDLINE, cmdline_str); - dd_save_text(dd, FILENAME_BACKTRACE, second_line); --// TODO: add "Kernel oops: " prefix, so that all oopses have recognizable FILENAME_REASON? --// kernel oops 1st line may look quite puzzling otherwise... -- strchrnul(second_line, '\n')[0] = '\0'; -- dd_save_text(dd, FILENAME_REASON, second_line); - -- if (tainted_str && tainted_str[0] != '0') -+ char *tainted_short = kernel_tainted_short(second_line); -+ if (tainted_short) - { -- unsigned long tainted = xatoi_positive(tainted_str); -- char *tainted_short = kernel_tainted_short(tainted); -- GList *tainted_long = kernel_tainted_long(tainted); -- -- struct strbuf *tnt_long = strbuf_new(); -- for (GList *li = tainted_long; li; li = li->next) -- strbuf_append_strf(tnt_long, "%s\n", (char*) li->data); -- -- dd_save_text(dd, FILENAME_TAINTED, tainted_str); -+ VERB1 log("Kernel is tainted '%s'", tainted_short); - dd_save_text(dd, FILENAME_TAINTED_SHORT, tainted_short); -- dd_save_text(dd, FILENAME_TAINTED_LONG, tnt_long->buf); -- strbuf_free(tnt_long); -- list_free_with_free(tainted_long); -+ char *reason = xasprintf("Your kernel is tainted by flags '%s'. " -+ "Kernel maintainers are not interesting about " -+ "tainted kernel, because the trace might not be showing " -+ "the root problem." -+ , tainted_short); -+ dd_save_text(dd, FILENAME_NOT_REPORTABLE, reason); -+ free(reason); - } -+// TODO: add "Kernel oops: " prefix, so that all oopses have recognizable FILENAME_REASON? -+// kernel oops 1st line may look quite puzzling otherwise... -+ strchrnul(second_line, '\n')[0] = '\0'; -+ dd_save_text(dd, FILENAME_REASON, second_line); - -+/* -+ GList *tainted_long = kernel_tainted_long(tainted); -+ -+ struct strbuf *tnt_long = strbuf_new(); -+ for (GList *li = tainted_long; li; li = li->next) -+ strbuf_append_strf(tnt_long, "%s\n", (char*) li->data); -+ -+ dd_save_text(dd, FILENAME_TAINTED, tainted_str); -+ dd_save_text(dd, FILENAME_TAINTED_SHORT, tainted_short); -+ dd_save_text(dd, FILENAME_TAINTED_LONG, tnt_long->buf); -+ strbuf_free(tnt_long); -+ list_free_with_free(tainted_long); -+*/ - dd_close(dd); - } - else - errors++; - } - -- free(tainted_str); - free(cmdline_str); - - return errors; -@@ -718,7 +717,15 @@ int main(int argc, char **argv) - { - int i = 0; - while (i < oops_cnt) -- printf("\nVersion: %s", (char*)g_list_nth_data(oops_list, i++)); -+ { -+ char *kernel_bt = (char*)g_list_nth_data(oops_list, i++); -+ char *tainted_short = kernel_tainted_short(kernel_bt); -+ if (tainted_short) -+ log("Kernel is tainted '%s'", tainted_short); -+ -+ free(tainted_short); -+ printf("\nVersion: %s", kernel_bt); -+ } - } - if ((opts & OPT_d) || (opts & OPT_D)) - { --- -1.7.7.rc0.70.g82660 - diff --git a/0002-disabled-reporting-to-kerneloops.org.patch b/0002-disabled-reporting-to-kerneloops.org.patch new file mode 100644 index 0000000..3c46ec8 --- /dev/null +++ b/0002-disabled-reporting-to-kerneloops.org.patch @@ -0,0 +1,27 @@ +From 3e39d5b9944536a6f4d4f266b3c4961ad8da443e Mon Sep 17 00:00:00 2001 +From: Jiri +Date: Wed, 7 Dec 2011 10:34:27 +0100 +Subject: [PATCH 2/2] disabled reporting to kerneloops.org + +- we get lot of complains about dead kerneloops.org and since it's + not wihtin our power to fix it -> disable it! +--- + src/plugins/koops_event.conf | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index 3b80a1b..2fdccda 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -10,7 +10,7 @@ EVENT=post-create analyzer=Kerneloops + reporter-kerneloops + + # report +-EVENT=report_Kerneloops analyzer=Kerneloops ++#EVENT=report_Kerneloops analyzer=Kerneloops + reporter-kerneloops + + EVENT=report_Bugzilla analyzer=Kerneloops +-- +1.7.7.3 + diff --git a/0002-gtk3-build-fixes.patch b/0002-gtk3-build-fixes.patch deleted file mode 100644 index 47682f2..0000000 --- a/0002-gtk3-build-fixes.patch +++ /dev/null @@ -1,79 +0,0 @@ -From af62f5f9fc31a8b24a56983d37cad2d29380ff20 Mon Sep 17 00:00:00 2001 -From: Jiri Moskovcak -Date: Fri, 4 Nov 2011 15:28:15 +0100 -Subject: [PATCH 2/2] gtk3 build fixes - ---- - configure.ac | 7 ++++++- - src/applet/applet.c | 4 ++-- - src/gui-gtk/main.c | 7 ++++++- - 3 files changed, 14 insertions(+), 4 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 6b0732c..d584047 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -20,6 +20,11 @@ AC_ARG_ENABLE(debug, - [Enable debug information])], - [CFLAGS="$CFLAGS -DDEBUG -ggdb -g"]) - -+AC_ARG_ENABLE(gtk3, -+ [AC_HELP_STRING([--enable-gtk3], -+ [Use gtk3 instead of gtk2])], -+ [GTK_VER="gtk+-3.0"],[GTK_VER="gtk+-2.0"]) -+ - dnl ****** INTERNATIONALIZATION ********************** - GETTEXT_PACKAGE=abrt - AC_SUBST(GETTEXT_PACKAGE) -@@ -56,7 +61,7 @@ AC_PATH_PROG([XMLTO], [xmlto], [no]) - [exit 1] - [fi] - --PKG_CHECK_MODULES([GTK], [gtk+-2.0]) -+PKG_CHECK_MODULES([GTK], [$GTK_VER]) - PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.21]) - PKG_CHECK_MODULES([DBUS], [dbus-1]) - PKG_CHECK_MODULES([LIBXML], [libxml-2.0]) -diff --git a/src/applet/applet.c b/src/applet/applet.c -index 4ff73b6..95b7091 100644 ---- a/src/applet/applet.c -+++ b/src/applet/applet.c -@@ -581,8 +581,8 @@ static void init_applet(void) - ap_status_icon = gtk_status_icon_new_from_icon_name("abrt"); - } - hide_icon(); -- g_signal_connect(G_OBJECT(ap_status_icon), "activate", GTK_SIGNAL_FUNC(on_applet_activate_cb), NULL); -- g_signal_connect(G_OBJECT(ap_status_icon), "popup_menu", GTK_SIGNAL_FUNC(on_menu_popup_cb), NULL); -+ g_signal_connect(G_OBJECT(ap_status_icon), "activate", G_CALLBACK(on_applet_activate_cb), NULL); -+ g_signal_connect(G_OBJECT(ap_status_icon), "popup_menu", G_CALLBACK(on_menu_popup_cb), NULL); - ap_menu = create_menu(); - } - -diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c -index a8aacec..b31509b 100644 ---- a/src/gui-gtk/main.c -+++ b/src/gui-gtk/main.c -@@ -25,6 +25,11 @@ - #include - #include "libabrt.h" - -+#if GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION < 22 -+# define GDK_KEY_Delete GDK_Delete -+# define GDK_KEY_KP_Delete GDK_KP_Delete -+#endif -+ - static void scan_dirs_and_add_to_dirlist(void); - - -@@ -460,7 +465,7 @@ static gint on_key_press_event_cb(GtkTreeView *treeview, GdkEventKey *key, gpoin - { - int k = key->keyval; - -- if (k == GDK_Delete || k == GDK_KP_Delete) -+ if (k == GDK_KEY_Delete || k == GDK_KEY_KP_Delete) - { - delete_report(treeview); - return TRUE; --- -1.7.7 - diff --git a/0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch b/0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch deleted file mode 100644 index dd973e2..0000000 --- a/0002-gui-split-the-main-window-in-2-panes-reported-not-re.patch +++ /dev/null @@ -1,354 +0,0 @@ -From 3f3655980007d39e0377e76a49fd2937f43f0be7 Mon Sep 17 00:00:00 2001 -From: Jiri Moskovcak -Date: Thu, 21 Jul 2011 11:02:11 +0200 -Subject: [PATCH 2/4] gui: split the main window in 2 panes - - reported/not-reported - ---- - src/gui-gtk/main.c | 215 ++++++++++++++++++++++++++++++++++++++++++++-------- - 1 files changed, 182 insertions(+), 33 deletions(-) - -diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c -index 1409191..776e85a 100644 ---- a/src/gui-gtk/main.c -+++ b/src/gui-gtk/main.c -@@ -32,7 +32,9 @@ static const char help_uri[] = "http://docs.fedoraproject.org/en-US/" - "Fedora/14/html/Deployment_Guide/ch-abrt.html"; - - static GtkListStore *s_dumps_list_store; -+static GtkListStore *s_reported_dumps_list_store; - static GtkWidget *s_treeview; -+static GtkWidget *s_reported_treeview; - static GtkWidget *g_main_window; - static GtkWidget *s_report_window; - -@@ -40,13 +42,38 @@ enum - { - COLUMN_SOURCE, - COLUMN_REASON, -- COLUMN_DIRNAME, - COLUMN_LATEST_CRASH_STR, - COLUMN_LATEST_CRASH, - COLUMN_DUMP_DIR, -+ COLUMN_REPORTED_TO, - NUM_COLUMNS - }; - -+//FIXME: maybe we can use strrchr and make this faster... -+static char *get_last_line(const char* msg) -+{ -+ const char *curr_end = NULL; -+ const char *start = msg; -+ const char *end = msg; -+ -+ while((curr_end = strchr(end, '\n')) != NULL) -+ { -+ end = curr_end; -+ curr_end = strchr(end+1, '\n'); -+ if (curr_end == NULL || strchr(end+2, '\n') == NULL) -+ break; -+ -+ start = end+1; -+ end = curr_end; -+ } -+ -+ //fix the case where reported_to has only 1 line without \n -+ if (end == msg) -+ end = end + strlen(msg); -+ -+ return xstrndup(start, end - start); -+} -+ - static void add_directory_to_dirlist(const char *dirname) - { - /* Silently ignore *any* errors, not only EACCES. -@@ -67,21 +94,11 @@ static void add_directory_to_dirlist(const char *dirname) - { - time_t t = strtol(time_str, NULL, 10); /* atoi won't work past 2038! */ - struct tm *ptm = localtime(&t); -- size_t time_len = strftime(time_buf, sizeof(time_buf)-1, "%Y-%m-%m %H:%M", ptm); -+ size_t time_len = strftime(time_buf, sizeof(time_buf)-1, "%Y-%m-%d %H:%M", ptm); - time_buf[time_len] = '\0'; - } - free(time_str); - -- /* -- char *msg = dd_load_text_ext(dd, FILENAME_REPORTED_TO, 0 -- | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE -- | DD_FAIL_QUIETLY_ENOENT -- | DD_FAIL_QUIETLY_EACCES -- ); -- const char *reported = (msg ? GTK_STOCK_YES : GTK_STOCK_NO); -- free(msg); -- */ -- - char *reason = dd_load_text(dd, FILENAME_REASON); - - /* the source of the problem: -@@ -102,18 +119,38 @@ static void add_directory_to_dirlist(const char *dirname) - ); - } - -+ char *msg = dd_load_text_ext(dd, FILENAME_REPORTED_TO, 0 -+ | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE -+ | DD_FAIL_QUIETLY_ENOENT -+ | DD_FAIL_QUIETLY_EACCES -+ ); -+ -+ -+ GtkListStore *list_store; -+ -+ char *subm_status = NULL; -+ if (msg) -+ { -+ list_store = s_reported_dumps_list_store; -+ subm_status = get_last_line(msg); -+ } -+ else -+ list_store = s_dumps_list_store; - - GtkTreeIter iter; -- gtk_list_store_append(s_dumps_list_store, &iter); -- gtk_list_store_set(s_dumps_list_store, &iter, -+ gtk_list_store_append(list_store, &iter); -+ gtk_list_store_set(list_store, &iter, - COLUMN_SOURCE, source, - COLUMN_REASON, reason, -- COLUMN_DIRNAME, dd->dd_dirname, - //OPTION: time format - COLUMN_LATEST_CRASH_STR, time_buf, - COLUMN_LATEST_CRASH, time, - COLUMN_DUMP_DIR, dirname, -+ COLUMN_REPORTED_TO, msg ? subm_status : NULL, - -1); -+ /* this is safe, subm_status is either null or malloced string from get_last_line */ -+ free(subm_status); -+ free(msg); - free(reason); - - dd_close(dd); -@@ -123,6 +160,7 @@ static void add_directory_to_dirlist(const char *dirname) - static void rescan_dirs_and_add_to_dirlist(void) - { - gtk_list_store_clear(s_dumps_list_store); -+ gtk_list_store_clear(s_reported_dumps_list_store); - scan_dirs_and_add_to_dirlist(); - } - -@@ -232,7 +270,7 @@ static void delete_report(GtkTreeView *treeview) - VERB1 log("Deleting '%s'", dump_dir_name); - if (delete_dump_dir_possibly_using_abrtd(dump_dir_name) == 0) - { -- gtk_list_store_remove(s_dumps_list_store, &iter); -+ gtk_list_store_remove(GTK_LIST_STORE(store), &iter); - } - else - { -@@ -262,7 +300,9 @@ static gint on_key_press_event_cb(GtkTreeView *treeview, GdkEventKey *key, gpoin - - static void on_btn_delete_cb(GtkButton *button, gpointer unused) - { -+ /* delete from both treeviews */ - delete_report(GTK_TREE_VIEW(s_treeview)); -+ delete_report(GTK_TREE_VIEW(s_reported_treeview)); - } - - static void on_menu_help_cb(GtkMenuItem *menuitem, gpointer unused) -@@ -421,6 +461,50 @@ static void add_columns(GtkTreeView *treeview) - gtk_tree_view_append_column(treeview, column); - } - -+static void add_columns_reported(GtkTreeView *treeview) -+{ -+ GtkCellRenderer *renderer; -+ GtkTreeViewColumn *column; -+ -+ renderer = gtk_cell_renderer_text_new(); -+ column = gtk_tree_view_column_new_with_attributes(_("Source"), -+ renderer, -+ "text", -+ COLUMN_SOURCE, -+ NULL); -+ gtk_tree_view_column_set_resizable(column, TRUE); -+ gtk_tree_view_column_set_sort_column_id(column, COLUMN_SOURCE); -+ gtk_tree_view_append_column(treeview, column); -+ -+ renderer = gtk_cell_renderer_text_new(); -+ column = gtk_tree_view_column_new_with_attributes(_("Problem"), -+ renderer, -+ "text", -+ COLUMN_REASON, -+ NULL); -+ gtk_tree_view_column_set_resizable(column, TRUE); -+ gtk_tree_view_column_set_sort_column_id(column, COLUMN_REASON); -+ gtk_tree_view_append_column(treeview, column); -+ -+ renderer = gtk_cell_renderer_text_new(); -+ column = gtk_tree_view_column_new_with_attributes(_("Date Submitted"), -+ renderer, -+ "text", -+ COLUMN_LATEST_CRASH_STR, -+ NULL); -+ gtk_tree_view_column_set_sort_column_id(column, COLUMN_LATEST_CRASH); -+ gtk_tree_view_append_column(treeview, column); -+ -+ renderer = gtk_cell_renderer_text_new(); -+ column = gtk_tree_view_column_new_with_attributes(_("Submision Result"), -+ renderer, -+ "text", -+ COLUMN_REPORTED_TO, -+ NULL); -+ //gtk_tree_view_column_set_sort_column_id(column, COLUMN_LATEST_CRASH); -+ gtk_tree_view_append_column(treeview, column); -+} -+ - static GtkWidget *create_menu(void) - { - /* main bar */ -@@ -476,40 +560,102 @@ static GtkWidget *create_main_window(void) - gtk_window_set_default_icon_name("abrt"); - - GtkWidget *main_vbox = gtk_vbox_new(false, 0); -+ /* add menu */ -+ gtk_box_pack_start(GTK_BOX(main_vbox), create_menu(), false, false, 0); - -- /* Scrolled region inside main window */ -- GtkWidget *scroll_win = gtk_scrolled_window_new(NULL, NULL); -- gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll_win), -+ GtkWidget *not_subm_vbox = gtk_vbox_new(false, 0); -+ gtk_container_set_border_width(GTK_CONTAINER(not_subm_vbox), 10); -+ GtkWidget *subm_vbox = gtk_vbox_new(false, 0); -+ gtk_container_set_border_width(GTK_CONTAINER(subm_vbox), 10); -+ -+ /* Scrolled region for not reported problems inside main window*/ -+ GtkWidget *new_problems_scroll_win = gtk_scrolled_window_new(NULL, NULL); -+ gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(new_problems_scroll_win), - GTK_SHADOW_ETCHED_IN); -- gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_win), -+ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(new_problems_scroll_win), - GTK_POLICY_AUTOMATIC, - GTK_POLICY_AUTOMATIC); - -- gtk_box_pack_start(GTK_BOX(main_vbox), create_menu(), false, false, 0); -- gtk_box_pack_start(GTK_BOX(main_vbox), scroll_win, true, true, 0); -- gtk_container_add(GTK_CONTAINER(g_main_window), main_vbox); -+ GtkWidget *not_subm_lbl = gtk_label_new(_("Not submitted reports")); -+ gtk_misc_set_alignment(GTK_MISC(not_subm_lbl), 0, 0); -+ gtk_label_set_markup(GTK_LABEL(not_subm_lbl), _("Not submitted reports")); -+ -+ /* add label for not submitted tree view */ -+ gtk_box_pack_start(GTK_BOX(not_subm_vbox), not_subm_lbl, false, false, 0); -+ gtk_box_pack_start(GTK_BOX(not_subm_vbox), new_problems_scroll_win, true, true, 0); -+ gtk_box_pack_start(GTK_BOX(main_vbox), not_subm_vbox, true, true, 0); - - /* Tree view inside scrolled region */ - s_treeview = gtk_tree_view_new(); - g_object_set(s_treeview, "rules-hint", 1, NULL); /* use alternating colors */ - add_columns(GTK_TREE_VIEW(s_treeview)); -- gtk_container_add(GTK_CONTAINER(scroll_win), s_treeview); -+ gtk_container_add(GTK_CONTAINER(new_problems_scroll_win), s_treeview); - - /* Create data store for the list and attach it */ -- s_dumps_list_store = gtk_list_store_new(NUM_COLUMNS, G_TYPE_STRING, /* source */ -+ s_dumps_list_store = gtk_list_store_new(NUM_COLUMNS, -+ G_TYPE_STRING, /* source */ -+ G_TYPE_STRING, /* executable */ -+ G_TYPE_STRING, /* time */ -+ G_TYPE_INT, /* unix time - used for sort */ -+ G_TYPE_STRING, /* dump dir path */ -+ G_TYPE_STRING); /* reported_to */ -+ -+ -+ //FIXME: configurable!! -+ gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(s_dumps_list_store), -+ COLUMN_LATEST_CRASH, -+ GTK_SORT_DESCENDING); -+ -+ gtk_tree_view_set_model(GTK_TREE_VIEW(s_treeview), GTK_TREE_MODEL(s_dumps_list_store)); -+ -+ /* Double click/Enter handler */ -+ g_signal_connect(s_treeview, "row-activated", G_CALLBACK(on_row_activated_cb), NULL); -+ /* Delete handler */ -+ g_signal_connect(s_treeview, "key-press-event", G_CALLBACK(on_key_press_event_cb), NULL); -+ -+ /* scrolled region for reported problems */ -+ GtkWidget *reported_problems_scroll_win = gtk_scrolled_window_new(NULL, NULL); -+ gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(reported_problems_scroll_win), -+ GTK_SHADOW_ETCHED_IN); -+ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(reported_problems_scroll_win), -+ GTK_POLICY_AUTOMATIC, -+ GTK_POLICY_AUTOMATIC); -+ -+ GtkWidget *subm_lbl = gtk_label_new(_("Submitted reports")); -+ /* align to left */ -+ gtk_misc_set_alignment(GTK_MISC(subm_lbl), 0, 0); -+ gtk_label_set_markup(GTK_LABEL(subm_lbl), _("Submitted reports")); -+ -+ -+ /* add label for submitted tree view */ -+ gtk_box_pack_start(GTK_BOX(subm_vbox), subm_lbl, false, false, 0); -+ gtk_box_pack_start(GTK_BOX(subm_vbox), reported_problems_scroll_win, true, true, 0); -+ gtk_box_pack_start(GTK_BOX(main_vbox), subm_vbox, true, true, 0); -+ -+ /* Tree view inside scrolled region */ -+ s_reported_treeview = gtk_tree_view_new(); -+ g_object_set(s_reported_treeview, "rules-hint", 1, NULL); /* use alternating colors */ -+ add_columns_reported(GTK_TREE_VIEW(s_reported_treeview)); -+ gtk_container_add(GTK_CONTAINER(reported_problems_scroll_win), s_reported_treeview); -+ -+ /* Create data store for the list and attach it */ -+ s_reported_dumps_list_store = gtk_list_store_new(NUM_COLUMNS, -+ G_TYPE_STRING, /* source */ - G_TYPE_STRING, /* executable */ -- G_TYPE_STRING, /* hostname */ - G_TYPE_STRING, /* time */ - G_TYPE_INT, /* unix time - used for sort */ - G_TYPE_STRING, /* dump dir path */ -- G_TYPE_STRING);/* row background */ -+ G_TYPE_STRING); /* reported_to */ -+ - - //FIXME: configurable!! -- gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(s_dumps_list_store), -+ gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(s_reported_dumps_list_store), - COLUMN_LATEST_CRASH, - GTK_SORT_DESCENDING); - -- gtk_tree_view_set_model(GTK_TREE_VIEW(s_treeview), GTK_TREE_MODEL(s_dumps_list_store)); -+ -+ gtk_tree_view_set_model(GTK_TREE_VIEW(s_reported_treeview), GTK_TREE_MODEL(s_reported_dumps_list_store)); -+ - - /* buttons are homogenous so set size only for one button and it will - * work for the rest buttons in same gtk_hbox_new() */ -@@ -518,20 +664,23 @@ static GtkWidget *create_main_window(void) - - GtkWidget *btn_delete = gtk_button_new_from_stock(GTK_STOCK_DELETE); - -- GtkWidget *hbox_report_delete = gtk_hbox_new(true, 4); -+ GtkWidget *hbox_report_delete = gtk_hbox_new(true, 0); - gtk_box_pack_start(GTK_BOX(hbox_report_delete), btn_delete, true, true, 0); -- gtk_box_pack_start(GTK_BOX(hbox_report_delete), btn_report, true, true, 0); -+ gtk_box_pack_start(GTK_BOX(hbox_report_delete), btn_report, true, true, 10); - - GtkWidget *halign = gtk_alignment_new(1, 0, 0, 0); - gtk_container_add(GTK_CONTAINER(halign), hbox_report_delete); - - gtk_box_pack_start(GTK_BOX(main_vbox), halign, false, false, 10); - -+ /* put the main_vbox to main window */ -+ gtk_container_add(GTK_CONTAINER(g_main_window), main_vbox); -+ - /* Double click/Enter handler */ -- g_signal_connect(s_treeview, "row-activated", G_CALLBACK(on_row_activated_cb), NULL); -+ g_signal_connect(s_reported_treeview, "row-activated", G_CALLBACK(on_row_activated_cb), NULL); - g_signal_connect(btn_report, "clicked", G_CALLBACK(on_btn_report_cb), NULL); - /* Delete handler */ -- g_signal_connect(s_treeview, "key-press-event", G_CALLBACK(on_key_press_event_cb), NULL); -+ g_signal_connect(s_reported_treeview, "key-press-event", G_CALLBACK(on_key_press_event_cb), NULL); - g_signal_connect(btn_delete, "clicked", G_CALLBACK(on_btn_delete_cb), NULL); - /* Quit when user closes the main window */ - g_signal_connect(g_main_window, "destroy", gtk_main_quit, NULL); --- -1.7.6 - diff --git a/0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch b/0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch deleted file mode 100644 index ae62890..0000000 --- a/0002-rhbz-718097-don-t-file-bugs-about-BIOS-bugs.patch +++ /dev/null @@ -1,35 +0,0 @@ -From e965fb7a7c768889cdd4a59859d28dc83b3daf09 Mon Sep 17 00:00:00 2001 -Message-Id: -In-Reply-To: <82b27dca87ef5a4f1cbb29377524bbdee26b1d64.1317979766.git.npajkovs@redhat.com> -References: <82b27dca87ef5a4f1cbb29377524bbdee26b1d64.1317979766.git.npajkovs@redhat.com> -From: Nikola Pajkovsky -Date: Wed, 5 Oct 2011 17:23:22 +0200 -Subject: [PATCH 2/2] rhbz#718097 - don't file bugs about BIOS bugs - -Signed-off-by: Nikola Pajkovsky ---- - src/plugins/abrt-dump-oops.c | 7 ++++++- - 1 files changed, 6 insertions(+), 1 deletions(-) - -diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c -index 58af506..3bfc617 100644 ---- a/src/plugins/abrt-dump-oops.c -+++ b/src/plugins/abrt-dump-oops.c -@@ -527,8 +527,13 @@ static unsigned save_oops_to_dump_dir(GList *oops_list, unsigned oops_cnt) - dd_save_text(dd, FILENAME_CMDLINE, cmdline_str); - dd_save_text(dd, FILENAME_BACKTRACE, second_line); - -+ /* check if trace doesn't have line: 'Your BIOS is broken' */ -+ char *broken_bios = strstr(second_line, "Your BIOS is broken"); -+ if (broken_bios) -+ dd_save_text(dd, FILENAME_NOT_REPORTABLE, "Your BIOS is broken"); -+ - char *tainted_short = kernel_tainted_short(second_line); -- if (tainted_short) -+ if (tainted_short && !broken_bios) - { - VERB1 log("Kernel is tainted '%s'", tainted_short); - dd_save_text(dd, FILENAME_TAINTED_SHORT, tainted_short); --- -1.7.7.rc0.70.g82660 - diff --git a/0003-glib-2.31-build-fixes.patch b/0003-glib-2.31-build-fixes.patch deleted file mode 100644 index 86f5ce4..0000000 --- a/0003-glib-2.31-build-fixes.patch +++ /dev/null @@ -1,72 +0,0 @@ -From ecfc461fd979aeb2d3ce4b9d811e4bf4a7730532 Mon Sep 17 00:00:00 2001 -From: Jiri Moskovcak -Date: Sat, 5 Nov 2011 18:04:54 +0100 -Subject: [PATCH 3/3] - glib 2.31 build fixes - ---- - src/applet/applet.c | 14 +++++++++++++- - src/gui-gtk/main.c | 4 ++-- - 2 files changed, 15 insertions(+), 3 deletions(-) - -diff --git a/src/applet/applet.c b/src/applet/applet.c -index 95b7091..bead61f 100644 ---- a/src/applet/applet.c -+++ b/src/applet/applet.c -@@ -766,10 +766,20 @@ int main(int argc, char** argv) - textdomain(PACKAGE); - #endif - -+ /* Glib 2.31: -+ * Major changes to threading and synchronisation -+ - threading is now always enabled in GLib -+ - support for custom thread implementations (including our own internal -+ - support for errorcheck mutexes) has been removed -+ */ -+#if (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 31) -+ //can't use log(), because g_verbose is not set yet -+ g_print("abrt-applet: glib < 2.31 - init threading\n"); - /* Need to be thread safe */ - g_thread_init(NULL); - gdk_threads_init(); - gdk_threads_enter(); -+#endif - - gtk_init(&argc, &argv); - -@@ -869,8 +879,10 @@ int main(int argc, char** argv) - - /* Enter main loop */ - gtk_main(); -- -+#if (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 31) - gdk_threads_leave(); -+#endif -+ - if (notify_is_initted()) - notify_uninit(); - -diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c -index b31509b..a24745a 100644 ---- a/src/gui-gtk/main.c -+++ b/src/gui-gtk/main.c -@@ -912,7 +912,7 @@ static gboolean handle_signal_pipe(GIOChannel *gio, GIOCondition condition, gpoi - */ - gchar buf[16]; - gsize bytes_read; -- g_io_channel_read(gio, buf, sizeof(buf), &bytes_read); -+ g_io_channel_read_chars(gio, buf, sizeof(buf), &bytes_read, NULL); - - /* Destroy zombies */ - while (safe_waitpid(-1, NULL, WNOHANG) > 0) -@@ -975,7 +975,7 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin - /* We read inotify events, but don't analyze them */ - gchar buf[sizeof(struct inotify_event) + PATH_MAX + 64]; - gsize bytes_read; -- while (g_io_channel_read(gio, buf, sizeof(buf), &bytes_read) == G_IO_ERROR_NONE -+ while (g_io_channel_read_chars(gio, buf, sizeof(buf), &bytes_read, NULL) == G_IO_STATUS_NORMAL - && bytes_read > 0 - ) { - continue; --- -1.7.7 - diff --git a/0003-remove-forgotten-abrt-action-kerneloops-files.patch b/0003-remove-forgotten-abrt-action-kerneloops-files.patch deleted file mode 100644 index 84575e1..0000000 --- a/0003-remove-forgotten-abrt-action-kerneloops-files.patch +++ /dev/null @@ -1,268 +0,0 @@ -From 89de28a3510c6e7a30ca053caea35ccabfbde75a Mon Sep 17 00:00:00 2001 -From: Miroslav Lichvar -Date: Thu, 21 Jul 2011 15:34:50 +0200 -Subject: [PATCH 3/4] remove forgotten abrt-action-kerneloops files - ---- - src/plugins/abrt-action-kerneloops.c | 173 -------------------------------- - src/plugins/abrt-action-kerneloops.txt | 68 ------------- - 2 files changed, 0 insertions(+), 241 deletions(-) - delete mode 100644 src/plugins/abrt-action-kerneloops.c - delete mode 100644 src/plugins/abrt-action-kerneloops.txt - -diff --git a/src/plugins/abrt-action-kerneloops.c b/src/plugins/abrt-action-kerneloops.c -deleted file mode 100644 -index a117266..0000000 ---- a/src/plugins/abrt-action-kerneloops.c -+++ /dev/null -@@ -1,173 +0,0 @@ --/* -- Copyright (C) 2010 ABRT team -- Copyright (C) 2010 RedHat Inc -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- Authors: -- Anton Arapov -- Arjan van de Ven -- */ --#include --#include "abrtlib.h" -- --/* helpers */ --static size_t writefunction(void *ptr, size_t size, size_t nmemb, void *stream) --{ -- size *= nmemb; --/* -- char *c, *c1, *c2; -- -- log("received: '%*.*s'", (int)size, (int)size, (char*)ptr); -- c = (char*)xzalloc(size + 1); -- memcpy(c, ptr, size); -- c1 = strstr(c, "201 "); -- if (c1) -- { -- c1 += 4; -- c2 = strchr(c1, '\n'); -- if (c2) -- *c2 = 0; -- } -- free(c); --*/ -- -- return size; --} -- --/* Send oops data to kerneloops.org-style site, using HTTP POST */ --/* Returns 0 on success */ --static CURLcode http_post_to_kerneloops_site(const char *url, const char *oopsdata) --{ -- CURLcode ret; -- CURL *handle; -- struct curl_httppost *post = NULL; -- struct curl_httppost *last = NULL; -- -- handle = curl_easy_init(); -- if (!handle) -- error_msg_and_die("Can't create curl handle"); -- -- curl_easy_setopt(handle, CURLOPT_URL, url); -- -- curl_formadd(&post, &last, -- CURLFORM_COPYNAME, "oopsdata", -- CURLFORM_COPYCONTENTS, oopsdata, -- CURLFORM_END); -- curl_formadd(&post, &last, -- CURLFORM_COPYNAME, "pass_on_allowed", -- CURLFORM_COPYCONTENTS, "yes", -- CURLFORM_END); -- -- curl_easy_setopt(handle, CURLOPT_HTTPPOST, post); -- curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, writefunction); -- -- ret = curl_easy_perform(handle); -- -- curl_formfree(post); -- curl_easy_cleanup(handle); -- -- return ret; --} -- --static void report_to_kerneloops( -- const char *dump_dir_name, -- map_string_h *settings) --{ -- problem_data_t *problem_data = create_problem_data_for_reporting(dump_dir_name); -- if (!problem_data) -- xfunc_die(); /* create_problem_data_for_reporting already emitted error msg */ -- -- const char *backtrace = get_problem_item_content_or_NULL(problem_data, FILENAME_BACKTRACE); -- if (!backtrace) -- error_msg_and_die("Error sending kernel oops due to missing backtrace"); -- -- const char *env = getenv("KerneloopsReporter_SubmitURL"); -- const char *submitURL = (env ? env : get_map_string_item_or_empty(settings, "SubmitURL")); -- if (!submitURL[0]) -- submitURL = "http://submit.kerneloops.org/submitoops.php"; -- -- log(_("Submitting oops report to %s"), submitURL); -- -- CURLcode ret = http_post_to_kerneloops_site(submitURL, backtrace); -- if (ret != CURLE_OK) -- error_msg_and_die("Kernel oops has not been sent due to %s", curl_easy_strerror(ret)); -- -- free_problem_data(problem_data); -- -- /* Server replies with: -- * 200 thank you for submitting the kernel oops information -- * RemoteIP: 34192fd15e34bf60fac6a5f01bba04ddbd3f0558 -- * - no URL or bug ID apparently... -- */ -- struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); -- if (dd) -- { -- char *msg = xasprintf("kerneloops: URL=%s", submitURL); -- add_reported_to(dd, msg); -- free(msg); -- dd_close(dd); -- } -- -- log("Kernel oops report was uploaded"); --} -- --int main(int argc, char **argv) --{ -- abrt_init(argv); -- -- map_string_h *settings = new_map_string(); -- const char *dump_dir_name = "."; -- GList *conf_file = NULL; -- -- /* Can't keep these strings/structs static: _() doesn't support that */ -- const char *program_usage_string = _( -- "\b [-v] [-c CONFFILE]... -d DIR\n" -- "\n" -- "Reports kernel oops to kerneloops.org (or similar) site.\n" -- "\n" -- "Files with names listed in $EXCLUDE_FROM_REPORT are not included\n" -- "into the tarball.\n" -- "\n" -- "CONFFILE lines should have 'PARAM = VALUE' format.\n" -- "Recognized string parameter: SubmitURL.\n" -- "Parameter can be overridden via $KerneloopsReporter_SubmitURL." -- ); -- enum { -- OPT_v = 1 << 0, -- OPT_d = 1 << 1, -- OPT_c = 1 << 2, -- }; -- /* Keep enum above and order of options below in sync! */ -- struct options program_options[] = { -- OPT__VERBOSE(&g_verbose), -- OPT_STRING('d', NULL, &dump_dir_name, "DIR" , _("Dump directory")), -- OPT_LIST( 'c', NULL, &conf_file , "FILE", _("Configuration file")), -- OPT_END() -- }; -- /*unsigned opts =*/ parse_opts(argc, argv, program_options, program_usage_string); -- -- export_abrt_envvars(0); -- -- while (conf_file) -- { -- char *fn = (char *)conf_file->data; -- VERB1 log("Loading settings from '%s'", fn); -- load_conf_file(fn, settings, /*skip key w/o values:*/ true); -- VERB3 log("Loaded '%s'", fn); -- conf_file = g_list_remove(conf_file, fn); -- } -- -- report_to_kerneloops(dump_dir_name, settings); -- -- free_map_string(settings); -- return 0; --} -diff --git a/src/plugins/abrt-action-kerneloops.txt b/src/plugins/abrt-action-kerneloops.txt -deleted file mode 100644 -index 468287f..0000000 ---- a/src/plugins/abrt-action-kerneloops.txt -+++ /dev/null -@@ -1,68 +0,0 @@ --abrt-action-kerneloops(1) --========================= -- --NAME ------ --abrt-action-kerneloops - Reports kernel oops to kerneloops.org (or similar) --site. -- --SYNOPSIS ---------- --'abrt-action-kerneloops' [-v] [-c CONFFILE]... [ -d DIR ] -- --DESCRIPTION ------------- --The tool is used to report the crash to the Kerneloops tracker. -- --Configuration file --~~~~~~~~~~~~~~~~~~ --Configuration file contains entries in a format "Option = Value". -- --The options are: -- --'SubmitURL':: -- The URL of the kerneloops tracker, the default is -- "http://submit.kerneloops.org/submitoops.php". -- --Integration with ABRT events --~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --'abrt-action-kerneloops' can be used as a reporter, to allow users to report --problems to the Kerneloops tracker. This usage is pre-configured in --/etc/libreport/events.d/koops_event.conf: -- -------------- --EVENT=report_Kerneloops analyzer=Kerneloops abrt-action-kerneloops -------------- -- --It can be also used automatically and immediately without user interaction. --When this is desired, modify the event configuration file to run the tool on --the 'post-create' event: -- -------------- --EVENT=post-create analyzer=Kerneloops abrt-action-kerneloops -------------- -- --OPTIONS --------- ---v:: -- Be more verbose. Can be given multiple times. -- ---d DIR:: -- Path to dump directory. -- ---c CONFFILE:: -- Path to configration file. When used in ABRT event system, the file -- contains site-wide configuration. Users can change the values via -- environment variables. -- --ENVIRONMENT VARIABLES ----------------------- --Environment variables take precedence over values provided in --the configuration file. -- --'KerneloopsReporter_SubmitURL':: -- The URL of the kerneloops tracker. -- --AUTHORS --------- --* ABRT team --- -1.7.6 - diff --git a/0004-install-debuginfo-ask-before-downloading.patch b/0004-install-debuginfo-ask-before-downloading.patch deleted file mode 100644 index 90f2f74..0000000 --- a/0004-install-debuginfo-ask-before-downloading.patch +++ /dev/null @@ -1,71 +0,0 @@ -From 90893a0c84a594337ca22fa83f364f5b4a7fb1b2 Mon Sep 17 00:00:00 2001 -From: Michal Toman -Date: Thu, 21 Jul 2011 16:48:08 +0200 -Subject: [PATCH 4/4] install-debuginfo: ask before downloading - ---- - src/plugins/abrt-action-install-debuginfo | 34 ++++++---------------------- - 1 files changed, 8 insertions(+), 26 deletions(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo b/src/plugins/abrt-action-install-debuginfo -index 2ad0790..31aab2c 100644 ---- a/src/plugins/abrt-action-install-debuginfo -+++ b/src/plugins/abrt-action-install-debuginfo -@@ -11,6 +11,7 @@ import errno - import time - import getopt - import shutil -+import reportclient - from subprocess import Popen, PIPE - from yum import _, YumBase - from yum.callbacks import DownloadBaseCallback -@@ -74,22 +75,6 @@ def unmute_stdout(): - else: - print "ERR: unmute called without mute?" - --def ask_yes_no(prompt, retries=4): -- while True: -- try: -- response = raw_input(prompt) -- except EOFError: -- log1("got eof, probably executed from helper, assuming - yes") -- return True -- if response in (_("y")): # for translators -> y/Y as yes -- return True -- if response in ("", _("n")): # for translators -> N/n as no -- return False -- retries = retries - 1 -- if retries < 0: -- break -- return False -- - # TODO: unpack just required debuginfo and not entire rpm? - # ..that can lead to: foo.c No such file and directory - # files is not used... -@@ -286,16 +271,13 @@ class DebugInfoDownload(YumBase): - print _("Can't find packages for %u debuginfo files") % len(not_found) - if verbose != 0 or total_pkgs != 0: - print _("Packages to download: %u") % total_pkgs -- print _("Downloading %.2fMb, installed size: %.2fMb") % ( -- todownload_size / (1024**2), -- installed_size / (1024**2) -- ) -- -- # ask only if we have terminal, because for now we don't have a way -- # how to pass the question to gui and the response back -- if noninteractive == False and sys.stdout.isatty(): -- if not ask_yes_no(_("Is this ok? [y/N] ")): -- return RETURN_OK -+ question = _("Downloading %.2fMb, installed size: %.2fMb. Continue?") % ( -+ todownload_size / (1024**2), -+ installed_size / (1024**2) -+ ) -+ if not reportclient.ask_yes_no(question): -+ print _("Download cancelled by user") -+ return RETURN_OK - - for pkg, files in package_files_dict.iteritems(): - dnlcb.downloaded_pkgs = downloaded_pkgs --- -1.7.6 - diff --git a/abrt-ccpp.init b/abrt-ccpp.init deleted file mode 100644 index 480cb1e..0000000 --- a/abrt-ccpp.init +++ /dev/null @@ -1,151 +0,0 @@ -#!/bin/bash -# Install abrt coredump hook -# -# chkconfig: 35 82 16 -# description: Installs coredump handler which saves segfault data -### BEGIN INIT INFO -# Provides: abrt-ccpp -# Required-Start: $abrtd -# Default-Stop: 0 1 2 6 -# Default-Start: 3 5 -# Short-Description: Installs coredump handler which saves segfault data -# Description: Installs coredump handler which saves segfault data -### END INIT INFO - -# Source function library. -. /etc/rc.d/init.d/functions - -# For debugging -dry_run=false -verbose=false - -# We don't have pid files, therefore have to use -# a flag file in /var/lock/subsys to enable GUI service tools -# to figure out our status -LOCK="/var/lock/subsys/abrt-ccpp" - -PATTERN_FILE="/proc/sys/kernel/core_pattern" -SAVED_PATTERN_FILE="/var/run/abrt/saved_core_pattern" -HOOK_BIN="/usr/libexec/abrt-hook-ccpp" -PATTERN="|$HOOK_BIN /var/spool/abrt %s %c %p %u %g %t %h %e" - -# core_pipe_limit specifies how many dump_helpers can run at the same time -# 0 - means unlimited, but it's not guaranteed that /proc/ of crashing -# process will be available for dump_helper. -# 4 - means that 4 dump_helpers can run at the same time (the rest will also -# run, but they will fail to read /proc/). -# -# This should be enough for ABRT, we can miss some crashes, but what are -# the odds that more processes crash at the same time? And moreover, -# do people want to save EVERY ONE of the crashes when they have -# a crash storm? I don't think so. -# The value of 4 has been recommended by nhorman. -# -CORE_PIPE_LIMIT_FILE="/proc/sys/kernel/core_pipe_limit" -CORE_PIPE_LIMIT="4" - -RETVAL=0 - -check() { - # Check that we're a privileged user - [ "`id -u`" = 0 ] || exit 4 -} - -start() { - check - - cur=`cat "$PATTERN_FILE"` - cur_first=`printf "%s" "$cur" | sed 's/ .*//'` - - $verbose && printf "cur:'%s'\n" "$cur" - # Is it already installed? - if test x"$cur_first" != x"|$HOOK_BIN"; then # no - # It is not installed - printf "%s\n" "$cur" >"$SAVED_PATTERN_FILE" - OLD_PATTERN="" - # Does old pattern start with '|'? - if test x"${cur#|}" = x"$cur"; then # no - # Encode it as hex string, NUL terminated - OLD_PATTERN=`printf "%s" "$cur" | od -tx1 | sed 's/000[^ ]*//' | xargs | sed 's/ //g'` - $verbose && printf "OLD_PATTERN:'%s'\n" "$OLD_PATTERN" - OLD_PATTERN=" ${OLD_PATTERN}00" - fi - # Install new handler - $verbose && printf "Installing to %s:'%s'\n" "$PATTERN_FILE" "${PATTERN}${OLD_PATTERN}" - $dry_run || echo "${PATTERN}${OLD_PATTERN}" >"$PATTERN_FILE" - $dry_run || touch -- "$LOCK" - - # Check core_pipe_limit and change it if it's 0, - # otherwise the abrt-hook-ccpp won't be able to read /proc/ - # of the crashing process - if test x"`cat "$CORE_PIPE_LIMIT_FILE"`" = x"0"; then - echo "$CORE_PIPE_LIMIT" >"$CORE_PIPE_LIMIT_FILE" - fi - fi - return $RETVAL -} - -stop() { - check - - if test -f "$SAVED_PATTERN_FILE"; then - $verbose && printf "Restoring to %s:'%s'\n" "$PATTERN_FILE" "`cat "$SAVED_PATTERN_FILE"`" - $dry_run || cat "$SAVED_PATTERN_FILE" >"$PATTERN_FILE" - fi - $dry_run || rm -f -- "$LOCK" - return $RETVAL -} - -restart() { - stop - start -} - -reload() { - restart -} - -case "$1" in -start) - start - ;; -stop) - stop - ;; -reload) - reload - ;; -force-reload) - echo "$0: Unimplemented feature." - RETVAL=3 - ;; -restart) - restart - ;; -condrestart) - cur=`cat "$PATTERN_FILE"` - cur_first=`printf "%s" "$cur" | sed 's/ .*//'` - # Is it already installed? - if test x"$cur_first" = x"|$HOOK_BIN"; then # yes - $verbose && printf "Installed, re-installing\n" - restart - fi - ;; -status) - cur=`cat "$PATTERN_FILE"` - cur_first=`printf "%s" "$cur" | sed 's/ .*//'` - # Is it already installed? - if test x"$cur_first" = x"|$HOOK_BIN"; then # yes - $verbose && printf "Installed\n" - RETVAL=0 - else - $verbose && printf "Not installed\n" - RETVAL=3 # "stopped normally" - fi - ;; -*) - echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload}" - RETVAL=2 -esac - -exit $RETVAL diff --git a/abrt-oops.init b/abrt-oops.init deleted file mode 100644 index 8c1c7bf..0000000 --- a/abrt-oops.init +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/bash -# Start ABRT kernel log watcher -# -# chkconfig: 35 82 16 -# description: Watches system log for oops messages, creates ABRT dump directories for each oops -### BEGIN INIT INFO -# Provides: abrt-oops -# Required-Start: $abrtd -# Default-Stop: 0 1 2 6 -# Default-Start: 3 5 -# Short-Description: Watches system log for oops messages, creates ABRT dump directories for each oops -# Description: Watches system log for oops messages, creates ABRT dump directories for each oops -### END INIT INFO - -# Source function library. -. /etc/rc.d/init.d/functions - -# For debugging -dry_run=false -verbose=false - -# We don't have pid files, therefore have to use -# a flag file in /var/lock/subsys to enable GUI service tools -# to figure out our status -LOCK="/var/lock/subsys/abrt-oops" - -RETVAL=0 - -check() { - # Check that we're a privileged user - [ "`id -u`" = 0 ] || exit 4 -} - -start() { - check - killall abrt-dump-oops 2>/dev/null - setsid abrt-dump-oops -d /var/spool/abrt -rwx /var/log/messages /dev/null 2>&1 & - $dry_run || touch -- "$LOCK" - return $RETVAL -} - -stop() { - check - killall abrt-dump-oops - $dry_run || rm -f -- "$LOCK" - return $RETVAL -} - -restart() { - stop - start -} - -reload() { - restart -} - -case "$1" in -start) - start - ;; -stop) - stop - ;; -reload) - reload - ;; -force-reload) - echo "$0: Unimplemented feature." - RETVAL=3 - ;; -restart) - restart - ;; -condrestart) - # Is it already running? - if test -f "$LOCK"; then # yes - $verbose && printf "Running, restarting\n" - restart - fi - ;; -status) - status abrt-dump-oops - RETVAL=$? - ;; -*) - echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload}" - RETVAL=2 -esac - -exit $RETVAL diff --git a/abrt-vmcore.init b/abrt-vmcore.init deleted file mode 100644 index 34e69ea..0000000 --- a/abrt-vmcore.init +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/bash -# Harvest vmcores for ABRT -# -# chkconfig: 35 82 16 -# description: Installs coredump handler which saves segfault data -### BEGIN INIT INFO -# Provides: abrt-vmcore -# Required-Start: $abrtd -# Default-Stop: 0 1 2 6 -# Default-Start: 3 5 -# Short-Description: Collects vmcore (kernel crash data) for ABRT -# Description: Collects vmcore (kernel crash data) for ABRT -### END INIT INFO - -# Source function library. -. /etc/rc.d/init.d/functions - -LOCK="/var/lock/subsys/abrt-vmcore" -HARVEST_CMD="/usr/sbin/abrt-harvest-vmcore" - -RETVAL=0 - -check() { - # Check that we're a privileged user - [ "`id -u`" = 0 ] || exit 4 -} - -start() { - check - "$HARVEST_CMD" - RETVAL=$? - [ $RETVAL -eq 0 ] && touch -- "$LOCK" - return $RETVAL -} - -stop() { - check - rm -f -- "$LOCK" - return 0 -} - -restart() { - stop - start -} - -reload() { - restart -} - -case "$1" in -start) - start - ;; -stop) - stop - ;; -reload) - reload - ;; -force-reload) - echo "$0: Unimplemented feature." - RETVAL=3 - ;; -restart) - restart - ;; -condrestart) - test -f "$LOCK" && restart - ;; -status) - test -f "$LOCK" && RETVAL=0 || RETVAL=3 - ;; -*) - echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload}" - RETVAL=2 -esac - -exit $RETVAL diff --git a/abrt.init b/abrt.init deleted file mode 100644 index dde5950..0000000 --- a/abrt.init +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/bash -# Starts the abrt daemon -# -# chkconfig: 35 82 16 -# description: Daemon to detect crashing apps -# processname: abrtd -### BEGIN INIT INFO -# Provides: abrt -# Required-Start: $syslog $local_fs -# Required-Stop: $syslog $local_fs -# Default-Stop: 0 1 2 6 -# Default-Start: 3 5 -# Short-Description: start and stop abrt daemon -# Description: Listen to and dispatch crash events -### END INIT INFO - -# Source function library. -. /etc/rc.d/init.d/functions -ABRT_BIN="/usr/sbin/abrtd" -LOCK="/var/lock/subsys/abrtd" -OLD_LOCK="/var/lock/subsys/abrt" -RETVAL=0 - -# -# Set these variables if you are behind proxy -# -#export http_proxy= -#export https_proxy= - -# -# See how we were called. -# - -check() { - # Check that we're a privileged user - [ "`id -u`" = 0 ] || exit 4 - - # Check if abrt is executable - test -x $ABRT_BIN || exit 5 -} - -start() { - - check - - # Check if it is already running - if [ ! -f $LOCK ] && [ ! -f $OLD_LOCK ]; then - echo -n $"Starting abrt daemon: " - daemon $ABRT_BIN - RETVAL=$? - [ $RETVAL -eq 0 ] && touch $LOCK - echo - fi - return $RETVAL -} - -stop() { - - check - - echo -n $"Stopping abrt daemon: " - killproc $ABRT_BIN - RETVAL=$? - [ $RETVAL -eq 0 ] && rm -f $LOCK - [ $RETVAL -eq 0 ] && rm -f $OLD_LOCK - echo - return $RETVAL -} - - -restart() { - stop - start -} - -reload() { - restart -} - -case "$1" in -start) - start - ;; -stop) - stop - ;; -reload) - reload - ;; -force-reload) - echo "$0: Unimplemented feature." - RETVAL=3 - ;; -restart) - restart - ;; -condrestart) - if [ -f $LOCK ]; then - restart - fi - # update from older version - if [ -f $OLD_LOCK ]; then - restart - fi - ;; -status) - status abrtd - RETVAL=$? - ;; -*) - echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload}" - RETVAL=2 -esac - -exit $RETVAL diff --git a/abrt.spec b/abrt.spec index de9e161..c2c103e 100644 --- a/abrt.spec +++ b/abrt.spec @@ -15,7 +15,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.6 +Version: 2.0.7 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -24,8 +24,7 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt1_to_abrt2 Patch0: blacklist.patch Patch1: abrt_disable_gpgcheck.diff -Patch2: 0002-gtk3-build-fixes.patch -Patch3: 0003-glib-2.31-build-fixes.patch +Patch2: 0002-disabled-reporting-to-kerneloops.org.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -173,6 +172,7 @@ Requires: gdb >= 7.0-3 Requires: abrt-gui Requires: libreport-plugin-logger, libreport-plugin-bugzilla Requires: abrt-retrace-client +Requires: libreport-plugin-bodhi #Requires: abrt-plugin-firefox Obsoletes: bug-buddy > 0.0.1 Provides: bug-buddy @@ -186,17 +186,11 @@ Virtual package to make easy default installation on desktop environments. %patch0 -p1 -b .blacklist # general %patch1 -p1 -b .gpg -%patch2 -p1 -b .gtk3 -%patch3 -p1 -b .glib231 +%patch2 -p1 -b .disable_koops_org %build -mkdir -p m4 -test -r m4/aclocal.m4 || touch m4/aclocal.m4 autoconf -automake %configure -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool CFLAGS="-fno-strict-aliasing" make %{?_smp_mflags} @@ -241,11 +235,9 @@ getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d exit 0 %post -## [ $1 -eq 1 ] install section if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default - /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrtd.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrtd @@ -258,70 +250,29 @@ fi # because /cache/abrt-di/* was created under root with root:root # so 2.x fails when it tries to extract debuginfo there.. chown -R abrt:abrt %{_localstatedir}/cache/abrt-di -## [ $1 -eq 1 ] install section if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default - /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrt-ccpp %endif fi -# FIXME: Workaround for update from abrt-1.1.x, can be removed in -# F17(18) update. When we are updating from ABRT 1 to ABRT 2, assume -# that abrtd service is enabled and thus enable the new abrt-ccpp -# service. If abrtd is running on the system, run abrt-ccpp service -# as well, because what was a part of abrtd became a separate service. - -## [ $1 -gt 1 ] upgrade section -if [ $1 -gt 1 ]; then - %if %{with systemd} - /bin/systemctl restart abrt-ccpp.service >/dev/null 2>&1 || : - %else - /sbin/chkconfig --add abrt-ccpp > /dev/null 2>&1 || : - /sbin/pidof abrtd >/dev/null 2>&1 - if [ $? -eq 0 ]; then # Is abrtd running? - service abrt-ccpp restart >/dev/null 2>&1 || : - fi - %endif -fi %post addon-kerneloops -## [ $1 -eq 1 ] install section if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default - /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrt-oops %endif fi -# FIXME: Workaround for update from abrt-1.1.x, can be removed in -# F17(18) update. When we are updating from ABRT 1 to ABRT 2, assume -# that abrtd service is enabled and thus enable the new abrt-oops -# service. If abrtd is running on the system, run abrt-ccpp service -# as well, because what was a part of abrtd became a separate service. - -## [ $1 -gt 1 ] upgrade section -if [ $1 -gt 1 ]; then - %if %{with systemd} - /bin/systemctl try-restart abrt-oops.service >/dev/null 2>&1 || : - %else - /sbin/chkconfig --add abrt-oops > /dev/null 2>&1 || : - /sbin/pidof abrtd >/dev/null 2>&1 - if [ $? -eq 0 ]; then # Is abrtd running? - service abrt-oops restart >/dev/null 2>&1 || : - fi - %endif -fi %post addon-vmcore if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default - /bin/systemctl daemon-reload >/dev/null 2>&1 || : /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : %else /sbin/chkconfig --add abrt-vmcore @@ -374,16 +325,16 @@ fi %if %{with systemd} %postun -/bin/systemctl try-reload abrtd.service >/dev/null 2>&1 || : +/bin/systemctl daemon-reload >/dev/null 2>&1 || : %postun addon-kerneloops -/bin/systemctl try-reload abrt-oops.service >/dev/null 2>&1 || : +/bin/systemctl daemon-reload >/dev/null 2>&1 || : %postun addon-vmcore -/bin/systemctl try-reload abrt-vmcore.service >/dev/null 2>&1 || : +/bin/systemctl daemon-reload >/dev/null 2>&1 || : %postun addon-ccpp -/bin/systemctl try-reload abrt-ccpp.service >/dev/null 2>&1 || : +/bin/systemctl daemon-reload >/dev/null 2>&1 || : %endif @@ -425,6 +376,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_initrddir}/abrtd %endif %{_sbindir}/abrtd +%{_sbindir}/abrt-dbus %{_sbindir}/abrt-server %{_libexecdir}/abrt-handle-event %{_bindir}/abrt-handle-upload @@ -450,6 +402,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man1/abrt-server.1.gz %{_mandir}/man1/abrt-action-save-package-data.1.gz %{_mandir}/man8/abrtd.8.gz +%{_mandir}/man8/abrt-dbus.8.gz %{_mandir}/man5/abrt.conf.5.gz %{_mandir}/man5/abrt-action-save-package-data.conf.5.gz # {_mandir}/man5/pyhook.conf.5.gz @@ -564,9 +517,20 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Wed Dec 07 2011 Jiri Moskovcak 2.0.7-1 +- new version +- disabled kerneloops.org +- abrt-ccpp hook fixes +- catch indentation errors in python rhbz#578969 +- fixed make check +- fixed retrace-client to work with rawhide +- require abrtd service in other services rhbz#752014 +- fixed problems with dupes rhbz#701717 +- keep abrt services enabled when updating F15->F16 +- Resolves: 752014 749891 749603 744887 730422 665210 639068 625445 701717 752014 578969 732876 757683 753183 756146 749100 + * Fri Nov 04 2011 Jiri Moskovcak 2.0.6-1 - new version -- moved to gtk3 - Resolves: #701171 #712508 #726033 #728194 #728314 #730107 #733389 #738602 - Resolves: #741242 #749365 #700252 #734298 #736016 #738324 #748457 #692274 - Resolves: #711986 #723219 #749891 #712602 #744887 #749603 #625445 #665210 diff --git a/allow_bz_for_koops.patch b/allow_bz_for_koops.patch deleted file mode 100644 index 49f9068..0000000 --- a/allow_bz_for_koops.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- abrt-2.0.6/src/daemon/abrt-action-save-package-data.conf 2011-11-04 13:03:43.271953835 +0100 -+++ abrt-2.0.6_/src/daemon/abrt-action-save-package-data.conf 2011-11-04 13:03:36.661746556 +0100 -@@ -3,7 +3,7 @@ - # the list of public keys used to check the signature is - # in the file gpg_keys - # --OpenGPGCheck = yes -+OpenGPGCheck = no - - # Blacklisted packages - # diff --git a/enable_bz_for_oops.patch b/enable_bz_for_oops.patch deleted file mode 100644 index eac857e..0000000 --- a/enable_bz_for_oops.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- abrt-2.0.4/src/plugins/koops_event.conf 2011-07-19 16:59:38.000000000 +0200 -+++ abrt-2.0.4_/src/plugins/koops_event.conf 2011-08-19 11:04:05.485464706 +0200 -@@ -8,4 +8,7 @@ EVENT=post-create analyzer=Kerneloops - #EVENT=post-create analyzer=Kerneloops abrt-action-kerneloops - - # report --EVENT=report_Kerneloops analyzer=Kerneloops abrt-action-kerneloops -+EVENT=report_Kerneloops analyzer=Kerneloops reporter-kerneloops -+ -+#fedora -+EVENT=reporter_Bugzilla analyzer=Kerneloops reporter-bugzilla diff --git a/free_space_check.patch b/free_space_check.patch deleted file mode 100644 index a268792..0000000 --- a/free_space_check.patch +++ /dev/null @@ -1,29 +0,0 @@ -commit e91b22a9654bf9912f3f88c917773a96ff7733a3 -Author: Martin Milata -Date: Thu Sep 8 16:29:01 2011 +0200 - - Fix free space checking - - The g_settings_dump_location was freed before it was passed to the free - space check, thus preventing it from working. - -diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c -index 983706e..330f85f 100644 ---- a/src/daemon/abrt-server.c -+++ b/src/daemon/abrt-server.c -@@ -143,7 +143,6 @@ static int create_debug_dump() - - /* Trim old crash dumps if necessary */ - load_abrt_conf(); -- free_abrt_conf_data(); /* can do this because we need only g_settings_nMaxCrashReportsSize */ - if (g_settings_nMaxCrashReportsSize > 0) - { - /* x1.25 and round up to 64m: go a bit up, so that usual in-daemon trimming -@@ -154,6 +153,7 @@ static int create_debug_dump() - check_free_space(maxsize); - trim_debug_dumps(DEBUG_DUMPS_DIR, maxsize * (double)(1024*1024), path); - } -+ free_abrt_conf_data(); - - free(path); - diff --git a/null_deref.patch b/null_deref.patch deleted file mode 100644 index 4f7df5f..0000000 --- a/null_deref.patch +++ /dev/null @@ -1,21 +0,0 @@ -commit d2572a98f41df96534f41062b0020ee6a10047ea -Author: Martin Milata -Date: Tue Jul 26 16:49:28 2011 +0200 - - a-a-save-package-data: Fix NULL dereference - - Fixes #324. - -diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c -index d37a05d..ddcf4ac 100644 ---- a/src/daemon/abrt-action-save-package-data.c -+++ b/src/daemon/abrt-action-save-package-data.c -@@ -160,7 +160,7 @@ static char *get_argv1_if_full_path(const char* cmdline) - * with '/', it is not a full path to script - * and we can't use it to determine the package name - */ -- if (*argv1 != '/') -+ if (argv1 == NULL || *argv1 != '/') - return NULL; - - /* good, it has "/foo/bar" form, return it */ From cecd7ef849528958d6e0a20f1e647dfb8a0ef48f Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 7 Dec 2011 11:59:43 +0100 Subject: [PATCH 037/318] forgot to upload new sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3369dee..3d554c3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ abrt-1.1.13.tar.gz /abrt-2.0.3.tar.gz /abrt-2.0.4.tar.gz /abrt-2.0.6.tar.gz +/abrt-2.0.7.tar.gz diff --git a/sources b/sources index b7c03d6..acd8d07 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a44d60efdf2173417e334b5547a2441f abrt-2.0.6.tar.gz +3c507dd1f962f8bffca4873a37c6a932 abrt-2.0.7.tar.gz From 891ef46da3ca455785b3e1371d8f118d1f9b0d84 Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 7 Dec 2011 16:38:32 +0100 Subject: [PATCH 038/318] build fixes + few forgotten patches --- ...disabled-reporting-to-kerneloops.org.patch | 2 +- ...ial-problem-with-exitcode-check-on-p.patch | 90 +++++++++++++++++++ ...lain-why-we-delete-corrupted-dir.-Cl.patch | 47 ++++++++++ 0005-more-glib2.31-fixes.patch | 48 ++++++++++ ...ne-more-deprecated-g_io_channel_read.patch | 25 ++++++ abrt.spec | 12 ++- 6 files changed, 221 insertions(+), 3 deletions(-) create mode 100644 0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch create mode 100644 0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch create mode 100644 0005-more-glib2.31-fixes.patch create mode 100644 0006-missed-one-more-deprecated-g_io_channel_read.patch diff --git a/0002-disabled-reporting-to-kerneloops.org.patch b/0002-disabled-reporting-to-kerneloops.org.patch index 3c46ec8..e46bc7f 100644 --- a/0002-disabled-reporting-to-kerneloops.org.patch +++ b/0002-disabled-reporting-to-kerneloops.org.patch @@ -1,7 +1,7 @@ From 3e39d5b9944536a6f4d4f266b3c4961ad8da443e Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 7 Dec 2011 10:34:27 +0100 -Subject: [PATCH 2/2] disabled reporting to kerneloops.org +Subject: [PATCH 2/5] disabled reporting to kerneloops.org - we get lot of complains about dead kerneloops.org and since it's not wihtin our power to fix it -> disable it! diff --git a/0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch b/0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch new file mode 100644 index 0000000..2a9dceb --- /dev/null +++ b/0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch @@ -0,0 +1,90 @@ +From c138894ba3f3e630d7e1af398fcd93ffa862659d Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Wed, 7 Dec 2011 13:58:25 +0100 +Subject: [PATCH 3/5] abrtd: fix potential problem with exitcode check on + "post-create" + +Signed-off-by: Denys Vlasenko +--- + src/daemon/abrtd.c | 53 ++++++++++++++++++++++++++------------------------- + 1 files changed, 27 insertions(+), 26 deletions(-) + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index d3a759a..743e40f 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -313,9 +313,10 @@ static mw_result_t run_post_create_and_load_data(const char *dump_dir_name, prob + /* Prevent having zombie child process */ + int status; + safe_waitpid(child, &status, 0); +- status = WEXITSTATUS(status); ++ /* status = WEXITSTATUS(status); - wrong, we need to check WIFEXITED too */ + +- /* exit 0 means, this is a good, non-dup dir */ ++ /* exit 0 means "this is a good, non-dup dir" */ ++ /* exit with 1 + "DUP_OF_DIR: dir" string => dup */ + if (status != 0) + { + if (!dup_of_dir) +@@ -330,34 +331,34 @@ static mw_result_t run_post_create_and_load_data(const char *dump_dir_name, prob + * else: MW_ERROR + */ + mw_result_t res = MW_ERROR; ++ struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); ++ if (!dd) ++ /* dd_opendir already emitted error msg */ ++ goto ret; ++ ++ /* Reset mode/uig/gid to correct values for all files created by event run */ ++ dd_sanitize_mode_and_owner(dd); ++ ++ /* Update count */ ++ char *count_str = dd_load_text_ext(dd, FILENAME_COUNT, DD_FAIL_QUIETLY_ENOENT); ++ unsigned long count = strtoul(count_str, NULL, 10); ++ count++; ++ char new_count_str[sizeof(long)*3 + 2]; ++ sprintf(new_count_str, "%lu", count); ++ dd_save_text(dd, FILENAME_COUNT, new_count_str); ++ dd_close(dd); ++ ++ *problem_data = load_problem_data(dump_dir_name); ++ if (*problem_data != NULL) + { +- struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); +- if (!dd) +- goto ret; +- +- /* Reset mode/uig/gid to correct values for all files created by event run */ +- dd_sanitize_mode_and_owner(dd); +- +- /* Update count */ +- char *count_str = dd_load_text_ext(dd, FILENAME_COUNT, DD_FAIL_QUIETLY_ENOENT); +- unsigned long count = strtoul(count_str, NULL, 10); +- count++; +- char new_count_str[sizeof(long)*3 + 2]; +- sprintf(new_count_str, "%lu", count); +- dd_save_text(dd, FILENAME_COUNT, new_count_str); +- dd_close(dd); +- +- *problem_data = load_problem_data(dump_dir_name); +- if (*problem_data != NULL) ++ res = MW_OK; ++ if (count > 1) + { +- res = MW_OK; +- if (count > 1) +- { +- log("Problem directory is a duplicate of %s", dump_dir_name); +- res = MW_OCCURRED; +- } ++ log("Problem directory is a duplicate of %s", dump_dir_name); ++ res = MW_OCCURRED; + } + } ++ /* else: load_problem_data already emitted error msg */ + + ret: + free(dup_of_dir); +-- +1.7.7.3 + diff --git a/0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch b/0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch new file mode 100644 index 0000000..5268fe6 --- /dev/null +++ b/0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch @@ -0,0 +1,47 @@ +From 26a0f776d32d0d5be2e15abe781adf5a830c24cc Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Wed, 7 Dec 2011 14:14:56 +0100 +Subject: [PATCH 4/5] abrtd: always explain why we delete "corrupted" dir. + Closes rhbz#706131. + +We were almost always explaining it, except for the case when +'post-create' was failing silently. + +Signed-off-by: Denys Vlasenko +--- + src/daemon/abrtd.c | 12 +++++++++++- + 1 files changed, 11 insertions(+), 1 deletions(-) + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index 743e40f..b5c3d4b 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -313,14 +313,24 @@ static mw_result_t run_post_create_and_load_data(const char *dump_dir_name, prob + /* Prevent having zombie child process */ + int status; + safe_waitpid(child, &status, 0); +- /* status = WEXITSTATUS(status); - wrong, we need to check WIFEXITED too */ + + /* exit 0 means "this is a good, non-dup dir" */ + /* exit with 1 + "DUP_OF_DIR: dir" string => dup */ + if (status != 0) + { ++ if (WIFSIGNALED(status)) ++ { ++ log("'post-create' on '%s' killed by signal %d", ++ dump_dir_name, WTERMSIG(status)); ++ return MW_ERROR; ++ } ++ /* else: it is WIFEXITED(status) */ + if (!dup_of_dir) ++ { ++ log("'post-create' on '%s' exited with %d", ++ dump_dir_name, WEXITSTATUS(status)); + return MW_ERROR; ++ } + dump_dir_name = dup_of_dir; + } + +-- +1.7.7.3 + diff --git a/0005-more-glib2.31-fixes.patch b/0005-more-glib2.31-fixes.patch new file mode 100644 index 0000000..14c085a --- /dev/null +++ b/0005-more-glib2.31-fixes.patch @@ -0,0 +1,48 @@ +From 2e941ae3c1d13968bda8bb4594a5aa566aa2e5dd Mon Sep 17 00:00:00 2001 +From: Jiri Moskovcak +Date: Wed, 7 Dec 2011 16:12:28 +0100 +Subject: [PATCH 5/5] more glib2.31 fixes + +--- + src/daemon/abrtd.c | 17 +++++++++++++---- + 1 files changed, 13 insertions(+), 4 deletions(-) + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index d3a759a..3d71e80 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -238,7 +238,7 @@ static gboolean handle_signal_cb(GIOChannel *gio, GIOCondition condition, gpoint + { + uint8_t signo; + gsize len = 0; +- g_io_channel_read(gio, (void*) &signo, 1, &len); ++ g_io_channel_read_chars(gio, (void*) &signo, 1, &len, NULL); + if (len == 1) + { + /* we did receive a signal */ +@@ -382,10 +382,19 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin + char *buf = (char*)xmalloc(inotify_bytes); + errno = 0; + gsize len; +- GIOError err = g_io_channel_read(gio, buf, inotify_bytes, &len); +- if (err != G_IO_ERROR_NONE) ++ GError *gerror = NULL; ++ g_io_channel_set_encoding(gio, NULL, &gerror); ++ /* need to set the encoding otherwise we get: ++ * Invalid byte sequence in conversion input ++ * according to manual "NULL" is safe for binary data ++ */ ++ if (gerror) ++ perror_msg("Can't set encoding on gio channel: '%s'", gerror->message); ++ ++ GIOStatus err = g_io_channel_read_chars(gio, buf, inotify_bytes, &len, &gerror); ++ if (err != G_IO_STATUS_NORMAL) + { +- perror_msg("Error reading inotify fd"); ++ perror_msg("Error reading inotify fd: %s", gerror ? gerror->message : "unknown"); + free(buf); + return FALSE; /* "remove this event" (huh??) */ + } +-- +1.7.7.3 + diff --git a/0006-missed-one-more-deprecated-g_io_channel_read.patch b/0006-missed-one-more-deprecated-g_io_channel_read.patch new file mode 100644 index 0000000..538cffd --- /dev/null +++ b/0006-missed-one-more-deprecated-g_io_channel_read.patch @@ -0,0 +1,25 @@ +From 7b937c6322c3130d9801596b93866a5e72a6da64 Mon Sep 17 00:00:00 2001 +From: Jiri Moskovcak +Date: Wed, 7 Dec 2011 16:29:03 +0100 +Subject: [PATCH 6/6] missed one more deprecated g_io_channel_read + +--- + src/daemon/abrt-dbus.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/src/daemon/abrt-dbus.c b/src/daemon/abrt-dbus.c +index 756076a..16c01d0 100644 +--- a/src/daemon/abrt-dbus.c ++++ b/src/daemon/abrt-dbus.c +@@ -284,7 +284,7 @@ static gboolean handle_signal_cb(GIOChannel *gio, GIOCondition condition, gpoint + { + uint8_t signo; + gsize len = 0; +- g_io_channel_read(gio, (void*) &signo, 1, &len); ++ g_io_channel_read_chars(gio, (void*) &signo, 1, &len, NULL); + if (len == 1) + { + /* we did receive a signal */ +-- +1.7.7.3 + diff --git a/abrt.spec b/abrt.spec index c2c103e..6f689bc 100644 --- a/abrt.spec +++ b/abrt.spec @@ -24,7 +24,11 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt1_to_abrt2 Patch0: blacklist.patch Patch1: abrt_disable_gpgcheck.diff -Patch2: 0002-disabled-reporting-to-kerneloops.org.patch +Patch3: 0002-disabled-reporting-to-kerneloops.org.patch +Patch4: 0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch +Patch5: 0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch +Patch6: 0005-more-glib2.31-fixes.patch +Patch7: 0006-missed-one-more-deprecated-g_io_channel_read.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -186,7 +190,11 @@ Virtual package to make easy default installation on desktop environments. %patch0 -p1 -b .blacklist # general %patch1 -p1 -b .gpg -%patch2 -p1 -b .disable_koops_org +%patch3 -p1 +%patch4 -p1 +%patch5 -p1 +%patch6 -p1 +%patch7 -p1 %build autoconf From b60efb70c9a2c42b00fab6688b6554a48a3f1602 Mon Sep 17 00:00:00 2001 From: Jiri Date: Thu, 8 Dec 2011 13:27:46 +0100 Subject: [PATCH 039/318] added abrt-cli manpage, fixed weird number formatting when showing di size --- ...all-debuginfo-do-not-use-scientific-.patch | 33 +++ ...cli-add-man-page.-Closes-rhbz-747624.patch | 256 ++++++++++++++++++ abrt.spec | 18 +- 3 files changed, 300 insertions(+), 7 deletions(-) create mode 100644 0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch create mode 100644 0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch diff --git a/0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch b/0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch new file mode 100644 index 0000000..49f8228 --- /dev/null +++ b/0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch @@ -0,0 +1,33 @@ +From 8f6d5316e9d1555f8b33aeef97053f04d3903759 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Wed, 7 Dec 2011 18:08:06 +0100 +Subject: [PATCH 7/8] abrt-action-install-debuginfo: do not use scientific + notation for sizes + +"Downloading 5.1e+02Mb, installed size: 2.1e+03Mb" looks weird... + +Signed-off-by: Denys Vlasenko +--- + src/plugins/abrt-action-install-debuginfo.in | 6 +++--- + 1 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index f6d0001..7c19331 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -288,9 +288,9 @@ class DebugInfoDownload(YumBase): + print _("Can't find packages for {0} debuginfo files").format(len(not_found)) + if verbose != 0 or total_pkgs != 0: + print _("Packages to download: {0}").format(total_pkgs) +- question = _("Downloading {0:.2}Mb, installed size: {1:.2}Mb. Continue?").format( +- todownload_size / (1024**2), +- installed_size / (1024**2) ++ question = _("Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?").format( ++ todownload_size / (1024*1024), ++ installed_size / (1024*1024) + ) + if noninteractive == False and not reportclient.ask_yes_no(question): + print _("Download cancelled by user") +-- +1.7.7.3 + diff --git a/0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch b/0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch new file mode 100644 index 0000000..0e238ea --- /dev/null +++ b/0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch @@ -0,0 +1,256 @@ +From 383a8c804e0a492e8261309bbd0e9d3502ec6604 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Wed, 7 Dec 2011 23:14:46 +0100 +Subject: [PATCH 8/8] abrt-cli: add man page. Closes rhbz#747624 + +This also regularizes help text a bit, and trims code +by about 150 bytes + +Signed-off-by: Denys Vlasenko +--- + abrt.spec.in | 3 +-- + doc/Makefile.am | 1 + + doc/abrt-cli.txt | 31 +++++++++++++++++++++++++++++++ + src/cli/abrt-cli.c | 10 +++++----- + src/cli/list.c | 19 ++++++++++--------- + src/cli/report.c | 16 +++++++--------- + src/cli/rm.c | 10 +++++++--- + 7 files changed, 62 insertions(+), 28 deletions(-) + create mode 100644 doc/abrt-cli.txt + +diff --git a/abrt.spec.in b/abrt.spec.in +index a5e78a1..7847ac0 100644 +--- a/abrt.spec.in ++++ b/abrt.spec.in +@@ -497,8 +497,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %files cli + %defattr(-,root,root,-) + %{_bindir}/abrt-cli +-# provide asap +-#% {_mandir}/man1/report-cli.1.gz ++%{_mandir}/man1/abrt-cli.1.gz + + %files desktop + %defattr(-,root,root,-) +diff --git a/doc/Makefile.am b/doc/Makefile.am +index 65a8142..5025f93 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -11,6 +11,7 @@ MAN1_TXT += abrt-action-list-dsos.txt + MAN1_TXT += abrt-retrace-client.txt + MAN1_TXT += abrt-handle-upload.txt + MAN1_TXT += abrt-server.txt ++MAN1_TXT += abrt-cli.txt + MAN1_TXT += abrt-action-save-package-data.txt + MAN1_TXT += abrt-install-ccpp-hook.txt + +diff --git a/doc/abrt-cli.txt b/doc/abrt-cli.txt +new file mode 100644 +index 0000000..9680ad6 +--- /dev/null ++++ b/doc/abrt-cli.txt +@@ -0,0 +1,31 @@ ++abrt-cli(1) ++=========== ++ ++NAME ++---- ++abrt-cli - List, remove, print, analyze, report problems ++ ++SYNOPSIS ++-------- ++'abrt-cli' list [-vdf] [DIR]... ++ ++'abrt-cli' rm [-v] DIR... ++ ++'abrt-cli' report [-v] DIR... ++ ++'abrt-cli' info [-vd] DIR... ++ ++OPTIONS ++------- ++-v,--verbose:: ++ Be more verbose. Can be given multiple times. ++ ++-d,--detailed:: ++ Show detailed report ++ ++-f,--full:: ++ List even reported problems ++ ++AUTHORS ++------- ++* ABRT team +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index 2ea5276..fdd3173 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -138,14 +138,14 @@ int main(int argc, const char **argv) + argc--; + + const char *abrt_cli_usage_string = _( +- "Usage: abrt-cli [--version] COMMAND [ARGS]" ++ "Usage: abrt-cli [--version] COMMAND [DIR]..." + ); + + const struct cmd_struct commands[] = { +- {"list", cmd_list, _("List not yet reported problems")}, +- {"rm", cmd_rm, _("Remove files from problem directory")}, +- {"report", cmd_report, _("Analyze and report problem data in problem directory")}, +- {"info", cmd_info, _("Print information about DUMP_DIR")}, ++ {"list", cmd_list, _("List not yet reported problems [in DIRs]")}, ++ {"rm", cmd_rm, _("Remove problem directory DIR")}, ++ {"report", cmd_report, _("Analyze and report problem data in DIR")}, ++ {"info", cmd_info, _("Print information about DIR")}, + {NULL, NULL, NULL} + }; + +diff --git a/src/cli/list.c b/src/cli/list.c +index a9b700c..565a36f 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -87,7 +87,7 @@ static void print_crash_list(vector_of_problem_data_t *crash_list, int include_r + int cmd_list(int argc, const char **argv) + { + const char *program_usage_string = _( +- "& list [options] []..." ++ "& list [options] [DIR]..." + ); + + static int opt_full, opt_detailed; +@@ -101,11 +101,11 @@ int cmd_list(int argc, const char **argv) + }; + + parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ argv += optind; + + GList *D_list = NULL; +- if (optind < argc) +- while (optind < argc) +- D_list = g_list_append(D_list, xstrdup(argv[optind++])); ++ while (*argv) ++ D_list = g_list_append(D_list, xstrdup(*argv++)); + if (!D_list) + { + load_abrt_conf(); +@@ -130,7 +130,7 @@ int cmd_list(int argc, const char **argv) + int cmd_info(int argc, const char **argv) + { + const char *program_usage_string = _( +- "& info [options] []..." ++ "& info [options] DIR..." + ); + + static int opt_detailed; +@@ -143,14 +143,15 @@ int cmd_info(int argc, const char **argv) + }; + + parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ argv += optind; + +- if (optind == argc) ++ if (!argv[0]) + show_usage_and_die(program_usage_string, program_options); + + int errs = 0; +- while (argv[optind]) ++ while (*argv) + { +- const char *dump_dir = argv[optind++]; ++ const char *dump_dir = *argv++; + problem_data_t *problem = fill_crash_info(dump_dir); + if (!problem) + { +@@ -161,7 +162,7 @@ int cmd_info(int argc, const char **argv) + + print_crash(problem, opt_detailed); + free_problem_data(problem); +- if (optind - argc) ++ if (*argv) + printf("\n"); + } + +diff --git a/src/cli/report.c b/src/cli/report.c +index 1e6c5ce..e20bb96 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -25,7 +25,7 @@ + int cmd_report(int argc, const char **argv) + { + const char *program_usage_string = _( +- "& report [options] []..." ++ "& report [options] DIR..." + ); + + struct options program_options[] = { +@@ -34,6 +34,10 @@ int cmd_report(int argc, const char **argv) + }; + + parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ argv += optind; ++ ++ if (!argv[0]) ++ show_usage_and_die(program_usage_string, program_options); + + load_abrt_conf(); + char *home = getenv("HOME"); +@@ -43,12 +47,9 @@ int cmd_report(int argc, const char **argv) + D_list = g_list_append(D_list, xstrdup(g_settings_dump_location)); + free_abrt_conf_data(); + +- if (!argv[optind]) +- show_usage_and_die(program_usage_string, program_options); +- +- while (1) ++ while (*argv) + { +- const char *dir_name = argv[optind++]; ++ const char *dir_name = *argv++; + + vector_of_problem_data_t *ci = NULL; + if (*dir_name == '@') +@@ -73,9 +74,6 @@ int cmd_report(int argc, const char **argv) + free_vector_of_problem_data(ci); + if (status) + exit(status); +- +- if (!argv[optind]) +- break; + } + + return 0; +diff --git a/src/cli/rm.c b/src/cli/rm.c +index 4a95d93..8f185a4 100644 +--- a/src/cli/rm.c ++++ b/src/cli/rm.c +@@ -28,7 +28,7 @@ + int cmd_rm(int argc, const char **argv) + { + const char *program_usage_string = _( +- "& rm [options] []..." ++ "& rm [options] DIR..." + ); + + struct options program_options[] = { +@@ -37,12 +37,16 @@ int cmd_rm(int argc, const char **argv) + }; + + parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ argv += optind; ++ ++ if (!argv[0]) ++ show_usage_and_die(program_usage_string, program_options); + + int errs = 0; +- while (argv[optind]) ++ while (*argv) + { + int status; +- const char *rm_dir = argv[optind++]; ++ const char *rm_dir = *argv++; + status = delete_dump_dir_possibly_using_abrtd(rm_dir); + if (!status) + log("rm '%s'", rm_dir); +-- +1.7.7.3 + diff --git a/abrt.spec b/abrt.spec index 6f689bc..30497fb 100644 --- a/abrt.spec +++ b/abrt.spec @@ -24,11 +24,14 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt1_to_abrt2 Patch0: blacklist.patch Patch1: abrt_disable_gpgcheck.diff -Patch3: 0002-disabled-reporting-to-kerneloops.org.patch -Patch4: 0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch -Patch5: 0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch -Patch6: 0005-more-glib2.31-fixes.patch -Patch7: 0006-missed-one-more-deprecated-g_io_channel_read.patch +Patch2: 0002-disabled-reporting-to-kerneloops.org.patch +Patch3: 0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch +Patch4: 0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch +Patch5: 0005-more-glib2.31-fixes.patch +Patch6: 0006-missed-one-more-deprecated-g_io_channel_read.patch +Patch7: 0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch +Patch8: 0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch + BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -190,11 +193,13 @@ Virtual package to make easy default installation on desktop environments. %patch0 -p1 -b .blacklist # general %patch1 -p1 -b .gpg +%patch2 -p1 %patch3 -p1 %patch4 -p1 %patch5 -p1 %patch6 -p1 %patch7 -p1 +%patch8 -p1 %build autoconf @@ -518,8 +523,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files cli %defattr(-,root,root,-) %{_bindir}/abrt-cli -# provide asap -#% {_mandir}/man1/report-cli.1.gz +%{_mandir}/man1/abrt-cli.1.gz %files desktop %defattr(-,root,root,-) From e39d2af419607dbcabeccfe390a68f294f0327d5 Mon Sep 17 00:00:00 2001 From: Jiri Date: Thu, 8 Dec 2011 13:30:53 +0100 Subject: [PATCH 040/318] forgot to update the release --- abrt.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 30497fb..26ecac9 100644 --- a/abrt.spec +++ b/abrt.spec @@ -16,7 +16,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -529,6 +529,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Thu Dec 08 2011 Jiri Moskovcak 2.0.7-2 +- added man page +- fixed weird number formatting + * Wed Dec 07 2011 Jiri Moskovcak 2.0.7-1 - new version - disabled kerneloops.org From 345a47681eb0c58d6bf49cdd38a0db58f1e484be Mon Sep 17 00:00:00 2001 From: Jiri Date: Tue, 3 Jan 2012 13:11:59 +0100 Subject: [PATCH 041/318] build fixes --- abrt.spec | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 26ecac9..ead2932 100644 --- a/abrt.spec +++ b/abrt.spec @@ -7,6 +7,16 @@ %bcond_with systemd %endif +# systemd wasn't set by the code above - so we're on old Fedora or we're not on Fedora at all +%if %{without systemd} + %if 0%{?rhel} >= 7 + %bcond_without systemd + %else + %bcond_with systemd + %endif +%endif + + %if 0%{?rhel} >= 6 %define vendor redhat %else @@ -16,7 +26,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.7 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -529,6 +539,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Tue Jan 03 2012 Jiri Moskovcak 2.0.7-3 +- build fixes + * Thu Dec 08 2011 Jiri Moskovcak 2.0.7-2 - added man page - fixed weird number formatting From bc77766abcc207cb8fac9315b337e6b636c91109 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 14:58:25 -0600 Subject: [PATCH 042/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ead2932..da1af22 100644 --- a/abrt.spec +++ b/abrt.spec @@ -26,7 +26,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.7 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -539,6 +539,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 2.0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Jan 03 2012 Jiri Moskovcak 2.0.7-3 - build fixes From 9554b0381011500941ec10ca5c2bd0c5c1f7a6fb Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 1 Feb 2012 13:45:17 +0100 Subject: [PATCH 043/318] abrt-desktop shouldn't require bodhi on rhel --- abrt.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index da1af22..49b835f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -26,7 +26,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.7 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -189,7 +189,9 @@ Requires: gdb >= 7.0-3 Requires: abrt-gui Requires: libreport-plugin-logger, libreport-plugin-bugzilla Requires: abrt-retrace-client +%if 0%{?rhel} >= 6 Requires: libreport-plugin-bodhi +%endif #Requires: abrt-plugin-firefox Obsoletes: bug-buddy > 0.0.1 Provides: bug-buddy @@ -539,6 +541,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Wed Feb 01 2012 Jiri Moskovcak - 2.0.7-5 +- abrt-desktop shouldn't require bodhi on rhel + * Thu Jan 12 2012 Fedora Release Engineering - 2.0.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From f830ac79f9f165bef36548df2b822aea01ea5353 Mon Sep 17 00:00:00 2001 From: Jiri Date: Thu, 2 Feb 2012 10:22:09 +0100 Subject: [PATCH 044/318] don't require bodhi on rhel --- abrt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index 49b835f..bd73478 100644 --- a/abrt.spec +++ b/abrt.spec @@ -26,7 +26,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.7 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -189,7 +189,7 @@ Requires: gdb >= 7.0-3 Requires: abrt-gui Requires: libreport-plugin-logger, libreport-plugin-bugzilla Requires: abrt-retrace-client -%if 0%{?rhel} >= 6 +%if 0%{?fedora} Requires: libreport-plugin-bodhi %endif #Requires: abrt-plugin-firefox @@ -541,6 +541,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Thu Feb 02 2012 Jiri Moskovcak - 2.0.7-6 +- abrt-desktop shouldn't require bodhi on rhel (2nd try) + * Wed Feb 01 2012 Jiri Moskovcak - 2.0.7-5 - abrt-desktop shouldn't require bodhi on rhel From cd557c7256309f2ce307fe736654cc5f5a33575c Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 8 Feb 2012 13:15:44 +0100 Subject: [PATCH 045/318] ignore crashes in plugin-container --- blacklist.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blacklist.patch b/blacklist.patch index 47d8daf..56a7ed5 100644 --- a/blacklist.patch +++ b/blacklist.patch @@ -5,7 +5,7 @@ # Blacklisted packages # -BlackList = nspluginwrapper,valgrind,strace -+BlackList = nspluginwrapper, valgrind, strace, mono-core ++BlackList = nspluginwrapper, valgrind, strace, mono-core, plugin-container # Process crashes in executables which do not belong to any package? # From 4e43e282e0482f2c6ea51f2e7ef8a3d69e33ea39 Mon Sep 17 00:00:00 2001 From: Jiri Date: Mon, 19 Mar 2012 16:08:33 +0100 Subject: [PATCH 046/318] fixed problems with rhel gpg keys rhbz#800419 --- abrt-rhelkeys.patch | 9 +++++++++ abrt.spec | 10 ++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 abrt-rhelkeys.patch diff --git a/abrt-rhelkeys.patch b/abrt-rhelkeys.patch new file mode 100644 index 0000000..a19e427 --- /dev/null +++ b/abrt-rhelkeys.patch @@ -0,0 +1,9 @@ +--- abrt-2.0.3/src/daemon/gpg_keys 2011-06-08 17:00:18.000000000 +0200 ++++ abrt-2.0.3/src/daemon/gpg_keys_6_2 2011-07-14 20:57:09.000000000 +0200 +@@ -1 +1,5 @@ +-/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora ++/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta ++/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former ++/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release ++/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx ++/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release diff --git a/abrt.spec b/abrt.spec index bd73478..1fceace 100644 --- a/abrt.spec +++ b/abrt.spec @@ -26,7 +26,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.7 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -41,7 +41,7 @@ Patch5: 0005-more-glib2.31-fixes.patch Patch6: 0006-missed-one-more-deprecated-g_io_channel_read.patch Patch7: 0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch Patch8: 0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch - +Patch9: abrt-rhelkeys.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -212,6 +212,9 @@ Virtual package to make easy default installation on desktop environments. %patch6 -p1 %patch7 -p1 %patch8 -p1 +%if 0%{?rhel} >= 7 + %patch9 -p1 +%endif %build autoconf @@ -541,6 +544,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %changelog +* Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 +- fixed problems with rhel gpg keys rhbz#800419 + * Thu Feb 02 2012 Jiri Moskovcak - 2.0.7-6 - abrt-desktop shouldn't require bodhi on rhel (2nd try) From cf2b3c3c0d5d28afc8a963514507bf2a14df2d7b Mon Sep 17 00:00:00 2001 From: Jiri Date: Mon, 26 Mar 2012 16:18:51 +0200 Subject: [PATCH 047/318] new upstream version 2.0.9 --- .gitignore | 1 + abrt.spec | 194 ++++++++++++++++++++++++++++++++++++++--------------- sources | 2 +- 3 files changed, 143 insertions(+), 54 deletions(-) diff --git a/.gitignore b/.gitignore index 3d554c3..0323266 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ abrt-1.1.13.tar.gz /abrt-2.0.4.tar.gz /abrt-2.0.6.tar.gz /abrt-2.0.7.tar.gz +/abrt-2.0.9.tar.gz diff --git a/abrt.spec b/abrt.spec index 1fceace..55d3e29 100644 --- a/abrt.spec +++ b/abrt.spec @@ -16,7 +16,6 @@ %endif %endif - %if 0%{?rhel} >= 6 %define vendor redhat %else @@ -25,23 +24,16 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.7 -Release: 7%{?dist} +Version: 2.0.9 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz Source1: abrt1_to_abrt2 -Patch0: blacklist.patch -Patch1: abrt_disable_gpgcheck.diff -Patch2: 0002-disabled-reporting-to-kerneloops.org.patch -Patch3: 0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch -Patch4: 0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch -Patch5: 0005-more-glib2.31-fixes.patch -Patch6: 0006-missed-one-more-deprecated-g_io_channel_read.patch -Patch7: 0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch -Patch8: 0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch -Patch9: abrt-rhelkeys.patch +Patch0: abrt-rhelkeys.patch +Patch1: blacklist.patch +Patch2: abrt_disable_gpgcheck.diff BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -58,6 +50,9 @@ BuildRequires: asciidoc BuildRequires: xmlto BuildRequires: libreport-devel > 2.0.6 BuildRequires: btparser-devel +BuildRequires: elfutils-devel +BuildRequires: elfutils-libelf-devel +BuildRequires: binutils-devel %if %{with systemd} Requires: systemd-units @@ -107,7 +102,8 @@ GTK+ wizard for convenient bug reporting. %package addon-ccpp Summary: %{name}'s C/C++ addon Group: System Environment/Libraries -Requires: elfutils, cpio +Requires: elfutils, elfutils-libelf, elfutils-libs, cpio +Requires: gdb >= 7.0-3 Requires: %{name} = %{version}-%{release} %description addon-ccpp @@ -134,15 +130,24 @@ Obsoletes: kerneloops > 0.0.1 Obsoletes: abrt-plugin-kerneloops > 0.0.1 Obsoletes: abrt-plugin-kerneloopsreporter > 0.0.1 +%description addon-kerneloops +This package contains plugin for collecting kernel crash information from system log. + +%package addon-xorg +Summary: %{name}'s Xorg addon +Group: System Environment/Libraries +Requires: curl +Requires: %{name} = %{version}-%{release} + +%description addon-xorg +This package contains plugin for collecting Xorg crash information from Xorg log. + %package addon-vmcore Summary: %{name}'s vmcore addon Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops -%description addon-kerneloops -This package contains plugin for collecting kernel crash information from system log. - %description addon-vmcore This package contains plugin for collecting kernel crash information from vmcore files. @@ -158,18 +163,26 @@ Provides: gnome-python2-bugbuddy This package contains python hook and python analyzer plugin for handling uncaught exception in python programs. -%package cli +%package tui Summary: %{name}'s command line interface Group: User Interface/Desktops + +%description tui +This package contains simple command line client for processing abrt reports in +command line environment + +%package cli +Summary: Virtual package to install all necessary packages for usage from command line environment +Group: Applications/System Requires: %{name} = %{version}-%{release} +Requires: abrt-tui Requires: libreport-cli Requires: abrt-addon-kerneloops Requires: abrt-addon-ccpp, abrt-addon-python Requires: libreport-plugin-bugzilla, libreport-plugin-logger %description cli -This package contains simple command line client for controlling abrt daemon over -the sockets. +Virtual package to make easy default installation on non-graphical environments. %package desktop Summary: Virtual package to install all necessary packages for usage from desktop environment @@ -188,33 +201,37 @@ Requires: abrt-addon-python Requires: gdb >= 7.0-3 Requires: abrt-gui Requires: libreport-plugin-logger, libreport-plugin-bugzilla -Requires: abrt-retrace-client +#Requires: abrt-plugin-firefox %if 0%{?fedora} Requires: libreport-plugin-bodhi %endif -#Requires: abrt-plugin-firefox Obsoletes: bug-buddy > 0.0.1 Provides: bug-buddy %description desktop Virtual package to make easy default installation on desktop environments. +%package dbus +Summary: ABRT DBus service +Group: Application/System +Requires: %{name} = %{version}-%{release} +Requires: libreport +BuildRequires: polkit-devel + +%description dbus +ABRT DBus service which provides org.freedesktop.problems API on dbus and +uses PolicyKit to authorize to access the problem data. + + %prep %setup -q -# Fedora specific -%patch0 -p1 -b .blacklist -# general -%patch1 -p1 -b .gpg -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 +#RHEL %if 0%{?rhel} >= 7 - %patch9 -p1 + %patch0 -p1 -b .rhel_gpg %endif +#Fedora +%patch1 -p1 -b .blacklist +%patch2 -p1 -b .gpgcheck %build autoconf @@ -229,7 +246,6 @@ make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} # remove all .la and .a files find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f -install -m 755 %SOURCE1 ${RPM_BUILD_ROOT}/%{_libexecdir}/abrt1-to-abrt2 mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt @@ -263,6 +279,7 @@ getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d exit 0 %post +# $1 == 1 if install; 2 if upgrade if [ $1 -eq 1 ]; then %if %{with systemd} # Enable (but don't start) the units by default @@ -271,7 +288,6 @@ if [ $1 -eq 1 ]; then /sbin/chkconfig --add abrtd %endif fi -%{_libexecdir}/abrt1-to-abrt2 || : %post addon-ccpp # this is required for transition from 1.1.x to 2.x @@ -279,31 +295,64 @@ fi # so 2.x fails when it tries to extract debuginfo there.. chown -R abrt:abrt %{_localstatedir}/cache/abrt-di if [ $1 -eq 1 ]; then + # We are installing this package, we aren't upgrading it. + # Probably the system had old abrt, one without abrt-ccpp package. + # If this old abrtd was enabled, then the new package + # should have abrt-ccpp enabled too. %if %{with systemd} - # Enable (but don't start) the units by default - /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : + if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : + fi %else - /sbin/chkconfig --add abrt-ccpp + if /sbin/chkconfig abrtd >/dev/null 2>&1; then + /sbin/chkconfig --add abrt-ccpp + fi %endif fi %post addon-kerneloops if [ $1 -eq 1 ]; then + # (see explanation in addon-ccpp section) %if %{with systemd} - # Enable (but don't start) the units by default - /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : + if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : + fi %else - /sbin/chkconfig --add abrt-oops + if /sbin/chkconfig abrtd >/dev/null 2>&1; then + /sbin/chkconfig --add abrt-oops + fi +%endif +fi + +%post addon-xorg +if [ $1 -eq 1 ]; then + # (see explanation in addon-ccpp section) +%if %{with systemd} + if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-xorg.service >/dev/null 2>&1 || : + fi +%else + if /sbin/chkconfig abrtd >/dev/null 2>&1; then + /sbin/chkconfig --add abrt-xorg + fi %endif fi %post addon-vmcore if [ $1 -eq 1 ]; then + # (see explanation in addon-ccpp section) %if %{with systemd} - # Enable (but don't start) the units by default - /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : + if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : + fi %else - /sbin/chkconfig --add abrt-vmcore + if /sbin/chkconfig abrtd >/dev/null 2>&1; then + /sbin/chkconfig --add abrt-vmcore + fi %endif fi @@ -340,6 +389,17 @@ if [ "$1" -eq "0" ] ; then %endif fi +%preun addon-xorg +if [ "$1" -eq "0" ] ; then +%if %{with systemd} + /bin/systemctl --no-reload abrt-xorg.service >/dev/null 2>&1 || : + /bin/systemctl stop abrt-xorg.service >/dev/null 2>&1 || : +%else + service abrt-xorg stop >/dev/null 2>&1 + /sbin/chkconfig --del abrt-xorg +%endif +fi + %preun addon-vmcore if [ "$1" -eq "0" ] ; then %if %{with systemd} @@ -358,6 +418,9 @@ fi %postun addon-kerneloops /bin/systemctl daemon-reload >/dev/null 2>&1 || : +%postun addon-xorg +/bin/systemctl daemon-reload >/dev/null 2>&1 || : + %postun addon-vmcore /bin/systemctl daemon-reload >/dev/null 2>&1 || : @@ -389,6 +452,9 @@ service abrt-ccpp condrestart >/dev/null 2>&1 || : %posttrans addon-kerneloops service abrt-oops condrestart >/dev/null 2>&1 || : +%posttrans addon-xorg +service abrt-xorg condrestart >/dev/null 2>&1 || : + %posttrans addon-vmcore service abrt-vmcore condrestart >/dev/null 2>&1 || : @@ -399,21 +465,20 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %doc README COPYING %if %{with systemd} -/lib/systemd/system/abrtd.service +%{_unitdir}/abrtd.service %else %{_initrddir}/abrtd %endif %{_sbindir}/abrtd -%{_sbindir}/abrt-dbus %{_sbindir}/abrt-server %{_libexecdir}/abrt-handle-event %{_bindir}/abrt-handle-upload %{_bindir}/abrt-action-save-package-data +%{_bindir}/abrt-watch-log %config(noreplace) %{_sysconfdir}/%{name}/abrt.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf -%config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf %config(noreplace) %{_sysconfdir}/libreport/events.d/smolt_event.conf %dir %attr(0755, abrt, abrt) %{_localstatedir}/spool/%{name} @@ -434,8 +499,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man5/abrt.conf.5.gz %{_mandir}/man5/abrt-action-save-package-data.conf.5.gz # {_mandir}/man5/pyhook.conf.5.gz -%{_datadir}/dbus-1/system-services/com.redhat.abrt.service -%{_libexecdir}/abrt1-to-abrt2 %files libs %defattr(-,root,root,-) @@ -466,7 +529,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di %if %{with systemd} -/lib/systemd/system/abrt-ccpp.service +%{_unitdir}/abrt-ccpp.service %else %{_initrddir}/abrt-ccpp %endif @@ -477,8 +540,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-analyze-core %{_bindir}/abrt-action-install-debuginfo %{_bindir}/abrt-action-generate-backtrace +%{_bindir}/abrt-action-generate-core-backtrace %{_bindir}/abrt-action-analyze-backtrace %{_bindir}/abrt-action-list-dsos +%{_bindir}/abrt-dedup-client %{_sbindir}/abrt-install-ccpp-hook %{_sysconfdir}/libreport/events.d/ccpp_event.conf %{_sysconfdir}/libreport/events.d/gconf_event.conf @@ -492,6 +557,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man*/abrt-action-analyze-c.* %{_mandir}/man*/abrt-action-trim-files.* %{_mandir}/man*/abrt-action-generate-backtrace.* +%{_mandir}/man*/abrt-action-generate-core-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* %{_mandir}/man1/abrt-install-ccpp-hook.1.gz @@ -506,7 +572,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf %if %{with systemd} -/lib/systemd/system/abrt-oops.service +%{_unitdir}/abrt-oops.service %else %{_initrddir}/abrt-oops %endif @@ -514,17 +580,29 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-analyze-oops %{_mandir}/man1/abrt-action-analyze-oops.1* +%files addon-xorg +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/libreport/events.d/xorg_event.conf +%if %{with systemd} +%{_unitdir}/abrt-xorg.service +%else +%{_initrddir}/abrt-xorg +%endif +%{_bindir}/abrt-dump-xorg +###%{_mandir}/man1/abrt-dump-xorg.1* + %files addon-vmcore %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf %{_sysconfdir}/libreport/events/analyze_VMcore.xml %if %{with systemd} -/lib/systemd/system/abrt-vmcore.service +%{_unitdir}/abrt-vmcore.service %else %{_initrddir}/abrt-vmcore %endif %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore +%{_mandir}/man1/abrt-action-analyze-vmcore.1* %files addon-python %defattr(-,root,root,-) @@ -537,12 +615,22 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files cli %defattr(-,root,root,-) + +%files tui +%defattr(-,root,root,-) %{_bindir}/abrt-cli %{_mandir}/man1/abrt-cli.1.gz %files desktop %defattr(-,root,root,-) +%files dbus +%defattr(-,root,root,-) +%{_sbindir}/abrt-dbus +%config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf +%{_datadir}/dbus-1/system-services/org.freedesktop.problems.service +%{_datadir}/polkit-1/actions/abrt_polkit.policy + %changelog * Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 - fixed problems with rhel gpg keys rhbz#800419 diff --git a/sources b/sources index acd8d07..ae25664 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3c507dd1f962f8bffca4873a37c6a932 abrt-2.0.7.tar.gz +29598a2d5851ed820b1b5b030b8e9a42 abrt-2.0.9.tar.gz From b9863ed60df61ced46fcf6a089e40daaacd20488 Mon Sep 17 00:00:00 2001 From: Jiri Date: Mon, 2 Apr 2012 09:49:04 +0200 Subject: [PATCH 048/318] removed unused patches --- ...disabled-reporting-to-kerneloops.org.patch | 27 -- ...ial-problem-with-exitcode-check-on-p.patch | 90 ------ ...lain-why-we-delete-corrupted-dir.-Cl.patch | 47 ---- 0005-more-glib2.31-fixes.patch | 48 ---- ...ne-more-deprecated-g_io_channel_read.patch | 25 -- ...all-debuginfo-do-not-use-scientific-.patch | 33 --- ...cli-add-man-page.-Closes-rhbz-747624.patch | 256 ------------------ 7 files changed, 526 deletions(-) delete mode 100644 0002-disabled-reporting-to-kerneloops.org.patch delete mode 100644 0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch delete mode 100644 0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch delete mode 100644 0005-more-glib2.31-fixes.patch delete mode 100644 0006-missed-one-more-deprecated-g_io_channel_read.patch delete mode 100644 0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch delete mode 100644 0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch diff --git a/0002-disabled-reporting-to-kerneloops.org.patch b/0002-disabled-reporting-to-kerneloops.org.patch deleted file mode 100644 index e46bc7f..0000000 --- a/0002-disabled-reporting-to-kerneloops.org.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 3e39d5b9944536a6f4d4f266b3c4961ad8da443e Mon Sep 17 00:00:00 2001 -From: Jiri -Date: Wed, 7 Dec 2011 10:34:27 +0100 -Subject: [PATCH 2/5] disabled reporting to kerneloops.org - -- we get lot of complains about dead kerneloops.org and since it's - not wihtin our power to fix it -> disable it! ---- - src/plugins/koops_event.conf | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf -index 3b80a1b..2fdccda 100644 ---- a/src/plugins/koops_event.conf -+++ b/src/plugins/koops_event.conf -@@ -10,7 +10,7 @@ EVENT=post-create analyzer=Kerneloops - reporter-kerneloops - - # report --EVENT=report_Kerneloops analyzer=Kerneloops -+#EVENT=report_Kerneloops analyzer=Kerneloops - reporter-kerneloops - - EVENT=report_Bugzilla analyzer=Kerneloops --- -1.7.7.3 - diff --git a/0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch b/0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch deleted file mode 100644 index 2a9dceb..0000000 --- a/0003-abrtd-fix-potential-problem-with-exitcode-check-on-p.patch +++ /dev/null @@ -1,90 +0,0 @@ -From c138894ba3f3e630d7e1af398fcd93ffa862659d Mon Sep 17 00:00:00 2001 -From: Denys Vlasenko -Date: Wed, 7 Dec 2011 13:58:25 +0100 -Subject: [PATCH 3/5] abrtd: fix potential problem with exitcode check on - "post-create" - -Signed-off-by: Denys Vlasenko ---- - src/daemon/abrtd.c | 53 ++++++++++++++++++++++++++------------------------- - 1 files changed, 27 insertions(+), 26 deletions(-) - -diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c -index d3a759a..743e40f 100644 ---- a/src/daemon/abrtd.c -+++ b/src/daemon/abrtd.c -@@ -313,9 +313,10 @@ static mw_result_t run_post_create_and_load_data(const char *dump_dir_name, prob - /* Prevent having zombie child process */ - int status; - safe_waitpid(child, &status, 0); -- status = WEXITSTATUS(status); -+ /* status = WEXITSTATUS(status); - wrong, we need to check WIFEXITED too */ - -- /* exit 0 means, this is a good, non-dup dir */ -+ /* exit 0 means "this is a good, non-dup dir" */ -+ /* exit with 1 + "DUP_OF_DIR: dir" string => dup */ - if (status != 0) - { - if (!dup_of_dir) -@@ -330,34 +331,34 @@ static mw_result_t run_post_create_and_load_data(const char *dump_dir_name, prob - * else: MW_ERROR - */ - mw_result_t res = MW_ERROR; -+ struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); -+ if (!dd) -+ /* dd_opendir already emitted error msg */ -+ goto ret; -+ -+ /* Reset mode/uig/gid to correct values for all files created by event run */ -+ dd_sanitize_mode_and_owner(dd); -+ -+ /* Update count */ -+ char *count_str = dd_load_text_ext(dd, FILENAME_COUNT, DD_FAIL_QUIETLY_ENOENT); -+ unsigned long count = strtoul(count_str, NULL, 10); -+ count++; -+ char new_count_str[sizeof(long)*3 + 2]; -+ sprintf(new_count_str, "%lu", count); -+ dd_save_text(dd, FILENAME_COUNT, new_count_str); -+ dd_close(dd); -+ -+ *problem_data = load_problem_data(dump_dir_name); -+ if (*problem_data != NULL) - { -- struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); -- if (!dd) -- goto ret; -- -- /* Reset mode/uig/gid to correct values for all files created by event run */ -- dd_sanitize_mode_and_owner(dd); -- -- /* Update count */ -- char *count_str = dd_load_text_ext(dd, FILENAME_COUNT, DD_FAIL_QUIETLY_ENOENT); -- unsigned long count = strtoul(count_str, NULL, 10); -- count++; -- char new_count_str[sizeof(long)*3 + 2]; -- sprintf(new_count_str, "%lu", count); -- dd_save_text(dd, FILENAME_COUNT, new_count_str); -- dd_close(dd); -- -- *problem_data = load_problem_data(dump_dir_name); -- if (*problem_data != NULL) -+ res = MW_OK; -+ if (count > 1) - { -- res = MW_OK; -- if (count > 1) -- { -- log("Problem directory is a duplicate of %s", dump_dir_name); -- res = MW_OCCURRED; -- } -+ log("Problem directory is a duplicate of %s", dump_dir_name); -+ res = MW_OCCURRED; - } - } -+ /* else: load_problem_data already emitted error msg */ - - ret: - free(dup_of_dir); --- -1.7.7.3 - diff --git a/0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch b/0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch deleted file mode 100644 index 5268fe6..0000000 --- a/0004-abrtd-always-explain-why-we-delete-corrupted-dir.-Cl.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 26a0f776d32d0d5be2e15abe781adf5a830c24cc Mon Sep 17 00:00:00 2001 -From: Denys Vlasenko -Date: Wed, 7 Dec 2011 14:14:56 +0100 -Subject: [PATCH 4/5] abrtd: always explain why we delete "corrupted" dir. - Closes rhbz#706131. - -We were almost always explaining it, except for the case when -'post-create' was failing silently. - -Signed-off-by: Denys Vlasenko ---- - src/daemon/abrtd.c | 12 +++++++++++- - 1 files changed, 11 insertions(+), 1 deletions(-) - -diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c -index 743e40f..b5c3d4b 100644 ---- a/src/daemon/abrtd.c -+++ b/src/daemon/abrtd.c -@@ -313,14 +313,24 @@ static mw_result_t run_post_create_and_load_data(const char *dump_dir_name, prob - /* Prevent having zombie child process */ - int status; - safe_waitpid(child, &status, 0); -- /* status = WEXITSTATUS(status); - wrong, we need to check WIFEXITED too */ - - /* exit 0 means "this is a good, non-dup dir" */ - /* exit with 1 + "DUP_OF_DIR: dir" string => dup */ - if (status != 0) - { -+ if (WIFSIGNALED(status)) -+ { -+ log("'post-create' on '%s' killed by signal %d", -+ dump_dir_name, WTERMSIG(status)); -+ return MW_ERROR; -+ } -+ /* else: it is WIFEXITED(status) */ - if (!dup_of_dir) -+ { -+ log("'post-create' on '%s' exited with %d", -+ dump_dir_name, WEXITSTATUS(status)); - return MW_ERROR; -+ } - dump_dir_name = dup_of_dir; - } - --- -1.7.7.3 - diff --git a/0005-more-glib2.31-fixes.patch b/0005-more-glib2.31-fixes.patch deleted file mode 100644 index 14c085a..0000000 --- a/0005-more-glib2.31-fixes.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 2e941ae3c1d13968bda8bb4594a5aa566aa2e5dd Mon Sep 17 00:00:00 2001 -From: Jiri Moskovcak -Date: Wed, 7 Dec 2011 16:12:28 +0100 -Subject: [PATCH 5/5] more glib2.31 fixes - ---- - src/daemon/abrtd.c | 17 +++++++++++++---- - 1 files changed, 13 insertions(+), 4 deletions(-) - -diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c -index d3a759a..3d71e80 100644 ---- a/src/daemon/abrtd.c -+++ b/src/daemon/abrtd.c -@@ -238,7 +238,7 @@ static gboolean handle_signal_cb(GIOChannel *gio, GIOCondition condition, gpoint - { - uint8_t signo; - gsize len = 0; -- g_io_channel_read(gio, (void*) &signo, 1, &len); -+ g_io_channel_read_chars(gio, (void*) &signo, 1, &len, NULL); - if (len == 1) - { - /* we did receive a signal */ -@@ -382,10 +382,19 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin - char *buf = (char*)xmalloc(inotify_bytes); - errno = 0; - gsize len; -- GIOError err = g_io_channel_read(gio, buf, inotify_bytes, &len); -- if (err != G_IO_ERROR_NONE) -+ GError *gerror = NULL; -+ g_io_channel_set_encoding(gio, NULL, &gerror); -+ /* need to set the encoding otherwise we get: -+ * Invalid byte sequence in conversion input -+ * according to manual "NULL" is safe for binary data -+ */ -+ if (gerror) -+ perror_msg("Can't set encoding on gio channel: '%s'", gerror->message); -+ -+ GIOStatus err = g_io_channel_read_chars(gio, buf, inotify_bytes, &len, &gerror); -+ if (err != G_IO_STATUS_NORMAL) - { -- perror_msg("Error reading inotify fd"); -+ perror_msg("Error reading inotify fd: %s", gerror ? gerror->message : "unknown"); - free(buf); - return FALSE; /* "remove this event" (huh??) */ - } --- -1.7.7.3 - diff --git a/0006-missed-one-more-deprecated-g_io_channel_read.patch b/0006-missed-one-more-deprecated-g_io_channel_read.patch deleted file mode 100644 index 538cffd..0000000 --- a/0006-missed-one-more-deprecated-g_io_channel_read.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 7b937c6322c3130d9801596b93866a5e72a6da64 Mon Sep 17 00:00:00 2001 -From: Jiri Moskovcak -Date: Wed, 7 Dec 2011 16:29:03 +0100 -Subject: [PATCH 6/6] missed one more deprecated g_io_channel_read - ---- - src/daemon/abrt-dbus.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/src/daemon/abrt-dbus.c b/src/daemon/abrt-dbus.c -index 756076a..16c01d0 100644 ---- a/src/daemon/abrt-dbus.c -+++ b/src/daemon/abrt-dbus.c -@@ -284,7 +284,7 @@ static gboolean handle_signal_cb(GIOChannel *gio, GIOCondition condition, gpoint - { - uint8_t signo; - gsize len = 0; -- g_io_channel_read(gio, (void*) &signo, 1, &len); -+ g_io_channel_read_chars(gio, (void*) &signo, 1, &len, NULL); - if (len == 1) - { - /* we did receive a signal */ --- -1.7.7.3 - diff --git a/0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch b/0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch deleted file mode 100644 index 49f8228..0000000 --- a/0007-abrt-action-install-debuginfo-do-not-use-scientific-.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 8f6d5316e9d1555f8b33aeef97053f04d3903759 Mon Sep 17 00:00:00 2001 -From: Denys Vlasenko -Date: Wed, 7 Dec 2011 18:08:06 +0100 -Subject: [PATCH 7/8] abrt-action-install-debuginfo: do not use scientific - notation for sizes - -"Downloading 5.1e+02Mb, installed size: 2.1e+03Mb" looks weird... - -Signed-off-by: Denys Vlasenko ---- - src/plugins/abrt-action-install-debuginfo.in | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index f6d0001..7c19331 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -288,9 +288,9 @@ class DebugInfoDownload(YumBase): - print _("Can't find packages for {0} debuginfo files").format(len(not_found)) - if verbose != 0 or total_pkgs != 0: - print _("Packages to download: {0}").format(total_pkgs) -- question = _("Downloading {0:.2}Mb, installed size: {1:.2}Mb. Continue?").format( -- todownload_size / (1024**2), -- installed_size / (1024**2) -+ question = _("Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?").format( -+ todownload_size / (1024*1024), -+ installed_size / (1024*1024) - ) - if noninteractive == False and not reportclient.ask_yes_no(question): - print _("Download cancelled by user") --- -1.7.7.3 - diff --git a/0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch b/0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch deleted file mode 100644 index 0e238ea..0000000 --- a/0008-abrt-cli-add-man-page.-Closes-rhbz-747624.patch +++ /dev/null @@ -1,256 +0,0 @@ -From 383a8c804e0a492e8261309bbd0e9d3502ec6604 Mon Sep 17 00:00:00 2001 -From: Denys Vlasenko -Date: Wed, 7 Dec 2011 23:14:46 +0100 -Subject: [PATCH 8/8] abrt-cli: add man page. Closes rhbz#747624 - -This also regularizes help text a bit, and trims code -by about 150 bytes - -Signed-off-by: Denys Vlasenko ---- - abrt.spec.in | 3 +-- - doc/Makefile.am | 1 + - doc/abrt-cli.txt | 31 +++++++++++++++++++++++++++++++ - src/cli/abrt-cli.c | 10 +++++----- - src/cli/list.c | 19 ++++++++++--------- - src/cli/report.c | 16 +++++++--------- - src/cli/rm.c | 10 +++++++--- - 7 files changed, 62 insertions(+), 28 deletions(-) - create mode 100644 doc/abrt-cli.txt - -diff --git a/abrt.spec.in b/abrt.spec.in -index a5e78a1..7847ac0 100644 ---- a/abrt.spec.in -+++ b/abrt.spec.in -@@ -497,8 +497,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - %files cli - %defattr(-,root,root,-) - %{_bindir}/abrt-cli --# provide asap --#% {_mandir}/man1/report-cli.1.gz -+%{_mandir}/man1/abrt-cli.1.gz - - %files desktop - %defattr(-,root,root,-) -diff --git a/doc/Makefile.am b/doc/Makefile.am -index 65a8142..5025f93 100644 ---- a/doc/Makefile.am -+++ b/doc/Makefile.am -@@ -11,6 +11,7 @@ MAN1_TXT += abrt-action-list-dsos.txt - MAN1_TXT += abrt-retrace-client.txt - MAN1_TXT += abrt-handle-upload.txt - MAN1_TXT += abrt-server.txt -+MAN1_TXT += abrt-cli.txt - MAN1_TXT += abrt-action-save-package-data.txt - MAN1_TXT += abrt-install-ccpp-hook.txt - -diff --git a/doc/abrt-cli.txt b/doc/abrt-cli.txt -new file mode 100644 -index 0000000..9680ad6 ---- /dev/null -+++ b/doc/abrt-cli.txt -@@ -0,0 +1,31 @@ -+abrt-cli(1) -+=========== -+ -+NAME -+---- -+abrt-cli - List, remove, print, analyze, report problems -+ -+SYNOPSIS -+-------- -+'abrt-cli' list [-vdf] [DIR]... -+ -+'abrt-cli' rm [-v] DIR... -+ -+'abrt-cli' report [-v] DIR... -+ -+'abrt-cli' info [-vd] DIR... -+ -+OPTIONS -+------- -+-v,--verbose:: -+ Be more verbose. Can be given multiple times. -+ -+-d,--detailed:: -+ Show detailed report -+ -+-f,--full:: -+ List even reported problems -+ -+AUTHORS -+------- -+* ABRT team -diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c -index 2ea5276..fdd3173 100644 ---- a/src/cli/abrt-cli.c -+++ b/src/cli/abrt-cli.c -@@ -138,14 +138,14 @@ int main(int argc, const char **argv) - argc--; - - const char *abrt_cli_usage_string = _( -- "Usage: abrt-cli [--version] COMMAND [ARGS]" -+ "Usage: abrt-cli [--version] COMMAND [DIR]..." - ); - - const struct cmd_struct commands[] = { -- {"list", cmd_list, _("List not yet reported problems")}, -- {"rm", cmd_rm, _("Remove files from problem directory")}, -- {"report", cmd_report, _("Analyze and report problem data in problem directory")}, -- {"info", cmd_info, _("Print information about DUMP_DIR")}, -+ {"list", cmd_list, _("List not yet reported problems [in DIRs]")}, -+ {"rm", cmd_rm, _("Remove problem directory DIR")}, -+ {"report", cmd_report, _("Analyze and report problem data in DIR")}, -+ {"info", cmd_info, _("Print information about DIR")}, - {NULL, NULL, NULL} - }; - -diff --git a/src/cli/list.c b/src/cli/list.c -index a9b700c..565a36f 100644 ---- a/src/cli/list.c -+++ b/src/cli/list.c -@@ -87,7 +87,7 @@ static void print_crash_list(vector_of_problem_data_t *crash_list, int include_r - int cmd_list(int argc, const char **argv) - { - const char *program_usage_string = _( -- "& list [options] []..." -+ "& list [options] [DIR]..." - ); - - static int opt_full, opt_detailed; -@@ -101,11 +101,11 @@ int cmd_list(int argc, const char **argv) - }; - - parse_opts(argc, (char **)argv, program_options, program_usage_string); -+ argv += optind; - - GList *D_list = NULL; -- if (optind < argc) -- while (optind < argc) -- D_list = g_list_append(D_list, xstrdup(argv[optind++])); -+ while (*argv) -+ D_list = g_list_append(D_list, xstrdup(*argv++)); - if (!D_list) - { - load_abrt_conf(); -@@ -130,7 +130,7 @@ int cmd_list(int argc, const char **argv) - int cmd_info(int argc, const char **argv) - { - const char *program_usage_string = _( -- "& info [options] []..." -+ "& info [options] DIR..." - ); - - static int opt_detailed; -@@ -143,14 +143,15 @@ int cmd_info(int argc, const char **argv) - }; - - parse_opts(argc, (char **)argv, program_options, program_usage_string); -+ argv += optind; - -- if (optind == argc) -+ if (!argv[0]) - show_usage_and_die(program_usage_string, program_options); - - int errs = 0; -- while (argv[optind]) -+ while (*argv) - { -- const char *dump_dir = argv[optind++]; -+ const char *dump_dir = *argv++; - problem_data_t *problem = fill_crash_info(dump_dir); - if (!problem) - { -@@ -161,7 +162,7 @@ int cmd_info(int argc, const char **argv) - - print_crash(problem, opt_detailed); - free_problem_data(problem); -- if (optind - argc) -+ if (*argv) - printf("\n"); - } - -diff --git a/src/cli/report.c b/src/cli/report.c -index 1e6c5ce..e20bb96 100644 ---- a/src/cli/report.c -+++ b/src/cli/report.c -@@ -25,7 +25,7 @@ - int cmd_report(int argc, const char **argv) - { - const char *program_usage_string = _( -- "& report [options] []..." -+ "& report [options] DIR..." - ); - - struct options program_options[] = { -@@ -34,6 +34,10 @@ int cmd_report(int argc, const char **argv) - }; - - parse_opts(argc, (char **)argv, program_options, program_usage_string); -+ argv += optind; -+ -+ if (!argv[0]) -+ show_usage_and_die(program_usage_string, program_options); - - load_abrt_conf(); - char *home = getenv("HOME"); -@@ -43,12 +47,9 @@ int cmd_report(int argc, const char **argv) - D_list = g_list_append(D_list, xstrdup(g_settings_dump_location)); - free_abrt_conf_data(); - -- if (!argv[optind]) -- show_usage_and_die(program_usage_string, program_options); -- -- while (1) -+ while (*argv) - { -- const char *dir_name = argv[optind++]; -+ const char *dir_name = *argv++; - - vector_of_problem_data_t *ci = NULL; - if (*dir_name == '@') -@@ -73,9 +74,6 @@ int cmd_report(int argc, const char **argv) - free_vector_of_problem_data(ci); - if (status) - exit(status); -- -- if (!argv[optind]) -- break; - } - - return 0; -diff --git a/src/cli/rm.c b/src/cli/rm.c -index 4a95d93..8f185a4 100644 ---- a/src/cli/rm.c -+++ b/src/cli/rm.c -@@ -28,7 +28,7 @@ - int cmd_rm(int argc, const char **argv) - { - const char *program_usage_string = _( -- "& rm [options] []..." -+ "& rm [options] DIR..." - ); - - struct options program_options[] = { -@@ -37,12 +37,16 @@ int cmd_rm(int argc, const char **argv) - }; - - parse_opts(argc, (char **)argv, program_options, program_usage_string); -+ argv += optind; -+ -+ if (!argv[0]) -+ show_usage_and_die(program_usage_string, program_options); - - int errs = 0; -- while (argv[optind]) -+ while (*argv) - { - int status; -- const char *rm_dir = argv[optind++]; -+ const char *rm_dir = *argv++; - status = delete_dump_dir_possibly_using_abrtd(rm_dir); - if (!status) - log("rm '%s'", rm_dir); --- -1.7.7.3 - From 038b66d302a47396187c252d201130e7c0477eaa Mon Sep 17 00:00:00 2001 From: Jiri Date: Mon, 2 Apr 2012 13:29:30 +0200 Subject: [PATCH 049/318] updated to latest upstream - fixed rhbz#808131 --- .gitignore | 1 + ...when-chowning-directory-using-dbus-c.patch | 28 ++++++ ...per-dir_accessible_by_uid-more-consi.patch | 97 +++++++++++++++++++ abrt.spec | 14 ++- sources | 2 +- 5 files changed, 139 insertions(+), 3 deletions(-) create mode 100644 0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch create mode 100644 0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch diff --git a/.gitignore b/.gitignore index 0323266..e787f5b 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ abrt-1.1.13.tar.gz /abrt-2.0.6.tar.gz /abrt-2.0.7.tar.gz /abrt-2.0.9.tar.gz +/abrt-2.0.10.tar.gz diff --git a/0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch b/0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch new file mode 100644 index 0000000..cfe7a97 --- /dev/null +++ b/0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch @@ -0,0 +1,28 @@ +From 4776f9e6b84482047d75aa9b36ac5c4db29c06a0 Mon Sep 17 00:00:00 2001 +Message-Id: <4776f9e6b84482047d75aa9b36ac5c4db29c06a0.1333282746.git.jmoskovc@redhat.com> +In-Reply-To: +References: +From: Jiri Moskovcak +Date: Sun, 1 Apr 2012 01:04:27 +0200 +Subject: [PATCH 2/5] gui: fixed crash when chowning directory using dbus call + +--- + src/gui-gtk/main.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c +index 02e5c48..e80d1c7 100644 +--- a/src/gui-gtk/main.c ++++ b/src/gui-gtk/main.c +@@ -398,7 +398,7 @@ static gboolean on_focus_cb( + + static int chown_dir_over_dbus(const char *problem_dir_path) + { +- GError *error; ++ GError *error = NULL; + GDBusProxy * proxy = g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SYSTEM, + G_DBUS_PROXY_FLAGS_NONE, + NULL, +-- +1.7.9.3 + diff --git a/0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch b/0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch new file mode 100644 index 0000000..732b214 --- /dev/null +++ b/0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch @@ -0,0 +1,97 @@ +From 9cade723ad0d267aaae2aa93bfb8288e2d7a1ba8 Mon Sep 17 00:00:00 2001 +Message-Id: <9cade723ad0d267aaae2aa93bfb8288e2d7a1ba8.1333282746.git.jmoskovc@redhat.com> +In-Reply-To: +References: +From: Jiri Moskovcak +Date: Sun, 1 Apr 2012 13:41:39 +0200 +Subject: [PATCH 3/5] dbus: use the helper dir_accessible_by_uid() more + consistently + +--- + src/dbus/abrt-dbus.c | 44 +++++++++++++++----------------------------- + 1 file changed, 15 insertions(+), 29 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index e72cd30..0c7af5c 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -144,7 +144,7 @@ static int dir_accessible_by_uid(const char* dir_path, uid_t uid) + struct stat statbuf; + if (stat(dir_path, &statbuf) == 0 && S_ISDIR(statbuf.st_mode)) + { +- if (uid == 0 || uid_in_group(uid, statbuf.st_gid)) ++ if (uid == 0 || (statbuf.st_mode & S_IROTH) || uid_in_group(uid, statbuf.st_gid)) + { + VERB1 log("caller has access to the requested directory %s", dir_path); + return 1; +@@ -293,28 +293,15 @@ static void handle_method_call(GDBusConnection *connection, + return; + } + +- struct stat statbuf; +- errno = 0; +- if (stat(problem_dir, &statbuf) == 0 && S_ISDIR(statbuf.st_mode)) +- { +- if (caller_uid == 0 || uid_in_group(caller_uid, statbuf.st_gid)) //caller seems to be in group with access to this dir, so no action needed +- { +- VERB1 log("caller has access to the requested directory %s", problem_dir); +- g_dbus_method_invocation_return_value(invocation, NULL); +- dd_close(dd); +- return; +- } +- +- } +- else ++ if(dir_accessible_by_uid(problem_dir, caller_uid)) //caller seems to be in group with access to this dir, so no action needed + { +- g_dbus_method_invocation_return_dbus_error(invocation, +- "org.freedesktop.problems.StatFailure", +- strerror(errno)); ++ VERB1 log("caller has access to the requested directory %s", problem_dir); ++ g_dbus_method_invocation_return_value(invocation, NULL); + dd_close(dd); + return; + } + ++ + if (polkit_check_authorization_dname(caller, "org.freedesktop.problems.getall") != PolkitYes) + { + VERB1 log("not authorized"); +@@ -329,6 +316,15 @@ static void handle_method_call(GDBusConnection *connection, + if (pwd) + { + errno = 0; ++ struct stat statbuf; ++ if (!(stat(problem_dir, &statbuf) == 0 && S_ISDIR(statbuf.st_mode))) ++ { ++ g_dbus_method_invocation_return_dbus_error(invocation, ++ "org.freedesktop.problems.StatFailure", ++ strerror(errno)); ++ return; ++ } ++ + chown_res = chown(problem_dir, statbuf.st_uid, pwd->pw_gid); + dd_init_next_file(dd); + char *short_name, *full_name; +@@ -361,17 +357,7 @@ static void handle_method_call(GDBusConnection *connection, + + GVariantBuilder *builder; + +- struct stat statbuf; +- errno = 0; +- if (stat(problem_dir, &statbuf) != 0) +- { +- g_dbus_method_invocation_return_dbus_error(invocation, +- "org.freedesktop.problems.GetInfoError", +- strerror(errno)); +- return; +- } +- +- if (!uid_in_group(caller_uid, statbuf.st_gid)) ++ if (!dir_accessible_by_uid(problem_dir, caller_uid)) + { + if (polkit_check_authorization_dname(caller, "org.freedesktop.problems.getall") != PolkitYes) + { +-- +1.7.9.3 + diff --git a/abrt.spec b/abrt.spec index 55d3e29..ba10530 100644 --- a/abrt.spec +++ b/abrt.spec @@ -24,7 +24,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.9 +Version: 2.0.10 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -34,6 +34,8 @@ Source1: abrt1_to_abrt2 Patch0: abrt-rhelkeys.patch Patch1: blacklist.patch Patch2: abrt_disable_gpgcheck.diff +Patch3: 0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch +Patch4: 0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -48,7 +50,7 @@ BuildRequires: libtool BuildRequires: nss-devel BuildRequires: asciidoc BuildRequires: xmlto -BuildRequires: libreport-devel > 2.0.6 +BuildRequires: libreport-devel >= 2.0.10-2 BuildRequires: btparser-devel BuildRequires: elfutils-devel BuildRequires: elfutils-libelf-devel @@ -90,6 +92,7 @@ Development libraries and headers for %{name}. Summary: %{name}'s gui Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} +Requires: %{name}-dbus = %{version}-%{release} BuildRequires: libreport-gtk-devel # we used to have abrt-applet, now abrt-gui includes it: Provides: abrt-applet = %{version}-%{release} @@ -232,6 +235,8 @@ uses PolicyKit to authorize to access the problem data. #Fedora %patch1 -p1 -b .blacklist %patch2 -p1 -b .gpgcheck +%patch3 -p1 +%patch4 -p1 %build autoconf @@ -632,6 +637,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog +* Mon Apr 02 2012 Jiri Moskovcak 2.0.10-1 +- new upstream release +- fixed problem with empty problem directory rhzb#808131 +- Resolves: #808131 + * Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 - fixed problems with rhel gpg keys rhbz#800419 diff --git a/sources b/sources index ae25664..1c2b942 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -29598a2d5851ed820b1b5b030b8e9a42 abrt-2.0.9.tar.gz +82109d1d6d216a7e28a581190b89c1e7 abrt-2.0.10.tar.gz From da0e1f2b099b48b5e8bfe042c17c8a789f29f60d Mon Sep 17 00:00:00 2001 From: Jiri Date: Mon, 2 Apr 2012 13:50:20 +0200 Subject: [PATCH 050/318] fixed rhbz#804309 --- ...-check-the-len-if-the-line-array-bef.patch | 27 +++++++++++++++++++ abrt.spec | 5 +++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch diff --git a/0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch b/0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch new file mode 100644 index 0000000..96ef723 --- /dev/null +++ b/0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch @@ -0,0 +1,27 @@ +From cbb1054b9b557154c31ab5cf3af9ece7fd106ca2 Mon Sep 17 00:00:00 2001 +Message-Id: +From: Jiri Moskovcak +Date: Mon, 2 Apr 2012 13:37:56 +0200 +Subject: [PATCH] a-a-analyze-core: check the len if the line array before + accessing it rhbz#804309 + +--- + src/plugins/abrt-action-analyze-core | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-analyze-core b/src/plugins/abrt-action-analyze-core +index 0526211..b683fbe 100644 +--- a/src/plugins/abrt-action-analyze-core ++++ b/src/plugins/abrt-action-analyze-core +@@ -99,7 +99,7 @@ def extract_info_from_core(coredump_name): + + for line in lines: + b_ids_line = line.split() +- if len(b_ids_line) > 2: ++ if len(b_ids_line) >= EXECUTABLE: + # [exe] -> the executable itself + # linux-vdso.so.1 -> Virtual Dynamic Shared Object + # linux-gate.so.1 -> the same as vdso +-- +1.7.9.3 + diff --git a/abrt.spec b/abrt.spec index ba10530..b09acac 100644 --- a/abrt.spec +++ b/abrt.spec @@ -36,6 +36,7 @@ Patch1: blacklist.patch Patch2: abrt_disable_gpgcheck.diff Patch3: 0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch Patch4: 0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch +Patch5: 0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -237,6 +238,7 @@ uses PolicyKit to authorize to access the problem data. %patch2 -p1 -b .gpgcheck %patch3 -p1 %patch4 -p1 +%patch5 -p1 -b .rhbz804309 %build autoconf @@ -640,7 +642,8 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : * Mon Apr 02 2012 Jiri Moskovcak 2.0.10-1 - new upstream release - fixed problem with empty problem directory rhzb#808131 -- Resolves: #808131 +- fixed exception in a-a-a-core when eu-unstrip output is broken +- Resolves: #808131, #804309 * Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 - fixed problems with rhel gpg keys rhbz#800419 From 3872b9422d8d31f21f2a68251470ab9567e34b33 Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 18 Apr 2012 12:46:04 +0200 Subject: [PATCH 051/318] minor rhel7 build fixes --- abrt-rhelkeys.patch | 2 +- abrt.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/abrt-rhelkeys.patch b/abrt-rhelkeys.patch index a19e427..4db0ea9 100644 --- a/abrt-rhelkeys.patch +++ b/abrt-rhelkeys.patch @@ -1,5 +1,5 @@ --- abrt-2.0.3/src/daemon/gpg_keys 2011-06-08 17:00:18.000000000 +0200 -+++ abrt-2.0.3/src/daemon/gpg_keys_6_2 2011-07-14 20:57:09.000000000 +0200 ++++ abrt-2.0.3_/src/daemon/gpg_keys 2011-07-14 20:57:09.000000000 +0200 @@ -1 +1,5 @@ -/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora +/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta diff --git a/abrt.spec b/abrt.spec index b09acac..1b6dc29 100644 --- a/abrt.spec +++ b/abrt.spec @@ -25,7 +25,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -231,7 +231,7 @@ uses PolicyKit to authorize to access the problem data. %setup -q #RHEL %if 0%{?rhel} >= 7 - %patch0 -p1 -b .rhel_gpg +%patch0 -p1 -b .rhel_gpg %endif #Fedora %patch1 -p1 -b .blacklist @@ -639,6 +639,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog +* Wed Apr 18 2012 Jiri Moskovcak 2.0.10-2 +- minor rhel7 build fixes + * Mon Apr 02 2012 Jiri Moskovcak 2.0.10-1 - new upstream release - fixed problem with empty problem directory rhzb#808131 From 5079c04985ccd6210b16b7f8c1df8f096f0cd2a4 Mon Sep 17 00:00:00 2001 From: Jiri Date: Wed, 18 Apr 2012 13:39:17 +0200 Subject: [PATCH 052/318] fixed freeze in crashing python apps rhbz#808562 --- ...-add-timetout-to-sockets-rhbz-808562.patch | 70 +++++++++++++++++++ abrt.spec | 5 ++ 2 files changed, 75 insertions(+) create mode 100644 0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch diff --git a/0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch b/0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch new file mode 100644 index 0000000..35184ed --- /dev/null +++ b/0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch @@ -0,0 +1,70 @@ +From f7d7f594dcd5439bc05187361d55be720f07959e Mon Sep 17 00:00:00 2001 +Message-Id: +From: Jiri Moskovcak +Date: Wed, 11 Apr 2012 15:31:34 +0200 +Subject: [PATCH] pyhook: add timetout to sockets rhbz#808562 + +--- + src/hooks/abrt_exception_handler.py.in | 46 ++++++++++++++++++-------------- + 1 file changed, 26 insertions(+), 20 deletions(-) + +diff --git a/src/hooks/abrt_exception_handler.py.in b/src/hooks/abrt_exception_handler.py.in +index 9522a0f..cc00fc7 100644 +--- a/src/hooks/abrt_exception_handler.py.in ++++ b/src/hooks/abrt_exception_handler.py.in +@@ -37,26 +37,32 @@ def write_dump(tb): + try: + import socket + s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) +- s.connect(@VAR_RUN@ + "/abrt/abrt.socket") +- s.sendall("PUT / HTTP/1.1\r\n\r\n") +- s.sendall("PID=%s\0" % os.getpid()) +- s.sendall("EXECUTABLE=%s\0" % executable) +- s.sendall("ANALYZER=Python\0") +- s.sendall("BASENAME=pyhook\0") +- # This handler puts a short(er) crash descr in 1st line of the backtrace. +- # Example: +- # CCMainWindow.py:1::ZeroDivisionError: integer division or modulo by zero +- s.sendall("REASON=%s\0" % tb.splitlines()[0]) +- s.sendall("BACKTRACE=%s\0" % tb) +- s.shutdown(socket.SHUT_WR) +- +- # Read the response and log if there's anything wrong +- response = "" +- while True: +- buf = s.recv(256) +- if not buf: +- break; +- response += buf ++ s.settimeout(5) ++ try: ++ s.connect(@VAR_RUN@ + "/abrt/abrt.socket") ++ s.sendall("PUT / HTTP/1.1\r\n\r\n") ++ s.sendall("PID=%s\0" % os.getpid()) ++ s.sendall("EXECUTABLE=%s\0" % executable) ++ s.sendall("ANALYZER=Python\0") ++ s.sendall("BASENAME=pyhook\0") ++ # This handler puts a short(er) crash descr in 1st line of the backtrace. ++ # Example: ++ # CCMainWindow.py:1::ZeroDivisionError: integer division or modulo by zero ++ s.sendall("REASON=%s\0" % tb.splitlines()[0]) ++ s.sendall("BACKTRACE=%s\0" % tb) ++ s.shutdown(socket.SHUT_WR) ++ ++ ++ # Read the response and log if there's anything wrong ++ response = "" ++ while True: ++ buf = s.recv(256) ++ if not buf: ++ break ++ response += buf ++ except socket.timeout, ex: ++ import syslog ++ syslog.syslog("communication with ABRT daemon failed: %s" % str(ex)) + + s.close() + parts = response.split() +-- +1.7.10 + diff --git a/abrt.spec b/abrt.spec index 1b6dc29..69ddb68 100644 --- a/abrt.spec +++ b/abrt.spec @@ -37,6 +37,7 @@ Patch2: abrt_disable_gpgcheck.diff Patch3: 0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch Patch4: 0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch Patch5: 0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch +Patch6: 0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -639,6 +640,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog +* Wed Apr 18 2012 Jiri Moskovcak 2.0.10-3 +- fixed freeze in crashing python apps rhbz#808562 +- Resolves: #808562 + * Wed Apr 18 2012 Jiri Moskovcak 2.0.10-2 - minor rhel7 build fixes From 43894a7cdb35213cc88894ae92854702ea8752ff Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 10 May 2012 15:00:39 +0200 Subject: [PATCH 053/318] enable plugins unconditionally rhbz#819113 --- abrt.spec | 20 +++++++-------- abrt_systemd_requisite.patch | 48 ++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 11 deletions(-) create mode 100644 abrt_systemd_requisite.patch diff --git a/abrt.spec b/abrt.spec index 69ddb68..2a44564 100644 --- a/abrt.spec +++ b/abrt.spec @@ -25,7 +25,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.10 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -38,6 +38,7 @@ Patch3: 0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch Patch4: 0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch Patch5: 0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch Patch6: 0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch +Patch7: abrt_systemd_requisite.patch BuildRequires: dbus-devel BuildRequires: gtk2-devel BuildRequires: rpm-devel >= 4.6 @@ -239,7 +240,9 @@ uses PolicyKit to authorize to access the problem data. %patch2 -p1 -b .gpgcheck %patch3 -p1 %patch4 -p1 -%patch5 -p1 -b .rhbz804309 +%patch5 -p1 -b .rhbz804309 +%patch6 -p1 -b .socket_timeouts +%patch7 -p1 -b .systemd_requisit %build autoconf @@ -308,10 +311,8 @@ if [ $1 -eq 1 ]; then # If this old abrtd was enabled, then the new package # should have abrt-ccpp enabled too. %if %{with systemd} - if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then # Enable (but don't start) the units by default /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : - fi %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-ccpp @@ -323,10 +324,8 @@ fi if [ $1 -eq 1 ]; then # (see explanation in addon-ccpp section) %if %{with systemd} - if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then # Enable (but don't start) the units by default /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : - fi %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-oops @@ -338,10 +337,8 @@ fi if [ $1 -eq 1 ]; then # (see explanation in addon-ccpp section) %if %{with systemd} - if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then # Enable (but don't start) the units by default /bin/systemctl enable abrt-xorg.service >/dev/null 2>&1 || : - fi %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-xorg @@ -353,10 +350,8 @@ fi if [ $1 -eq 1 ]; then # (see explanation in addon-ccpp section) %if %{with systemd} - if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then # Enable (but don't start) the units by default /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : - fi %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-vmcore @@ -640,7 +635,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog -* Wed Apr 18 2012 Jiri Moskovcak 2.0.10-3 +* Thu May 10 2012 Jiri Moskovcak 2.0.10-3 +- enable plugins unconditionally rhbz#819113 + +* Wed Apr 18 2012 Jiri Moskovcak - fixed freeze in crashing python apps rhbz#808562 - Resolves: #808562 diff --git a/abrt_systemd_requisite.patch b/abrt_systemd_requisite.patch new file mode 100644 index 0000000..f1b6757 --- /dev/null +++ b/abrt_systemd_requisite.patch @@ -0,0 +1,48 @@ +diff -urp abrt-2.0.10/init-scripts/abrt-ccpp.service abrt-2.0.10_systemd/init-scripts/abrt-ccpp.service +--- abrt-2.0.10/init-scripts/abrt-ccpp.service 2012-03-08 11:20:16.000000000 +0100 ++++ abrt-2.0.10_systemd/init-scripts/abrt-ccpp.service 2012-05-10 10:27:13.596516564 +0200 +@@ -1,7 +1,7 @@ + [Unit] + Description=Install ABRT coredump hook + After=abrtd.service +-Requires=abrtd.service ++Requisite=abrtd.service + + [Service] + Type=oneshot +diff -urp abrt-2.0.10/init-scripts/abrt-oops.service abrt-2.0.10_systemd/init-scripts/abrt-oops.service +--- abrt-2.0.10/init-scripts/abrt-oops.service 2012-03-23 14:34:00.000000000 +0100 ++++ abrt-2.0.10_systemd/init-scripts/abrt-oops.service 2012-05-10 10:27:34.428515140 +0200 +@@ -1,7 +1,7 @@ + [Unit] + Description=ABRT kernel log watcher + After=abrtd.service +-Requires=abrtd.service ++Requisite=abrtd.service + + [Service] + # TODO: do we really need absolute paths here? +diff -urp abrt-2.0.10/init-scripts/abrt-vmcore.service abrt-2.0.10_systemd/init-scripts/abrt-vmcore.service +--- abrt-2.0.10/init-scripts/abrt-vmcore.service 2012-03-08 11:20:16.000000000 +0100 ++++ abrt-2.0.10_systemd/init-scripts/abrt-vmcore.service 2012-05-10 10:27:41.644514646 +0200 +@@ -1,7 +1,7 @@ + [Unit] + Description=Harvest vmcores for ABRT + After=abrtd.service +-Requires=abrtd.service ++Requisite=abrtd.service + + [Service] + Type=oneshot +diff -urp abrt-2.0.10/init-scripts/abrt-xorg.service abrt-2.0.10_systemd/init-scripts/abrt-xorg.service +--- abrt-2.0.10/init-scripts/abrt-xorg.service 2012-03-23 14:34:00.000000000 +0100 ++++ abrt-2.0.10_systemd/init-scripts/abrt-xorg.service 2012-05-10 10:27:48.444514182 +0200 +@@ -1,7 +1,7 @@ + [Unit] + Description=ABRT Xorg log watcher + After=abrtd.service +-Requires=abrtd.service ++Requisite=abrtd.service + + [Service] + ExecStart=/bin/sh -c 'exec /usr/bin/abrt-watch-log -F "`/usr/bin/abrt-dump-xorg -m`" /var/log/Xorg.0.log -- /usr/bin/abrt-dump-xorg -xD' From 6217dcbed4da97670904dd4eae9a5e313710b0c2 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 22 May 2012 10:46:18 +0200 Subject: [PATCH 054/318] abrt-desktop should require the retrace-client, so it can be used on livecd rhbz823812 --- abrt.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 2a44564..d160c39 100644 --- a/abrt.spec +++ b/abrt.spec @@ -25,7 +25,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -207,6 +207,7 @@ Requires: abrt-addon-python Requires: gdb >= 7.0-3 Requires: abrt-gui Requires: libreport-plugin-logger, libreport-plugin-bugzilla +Requires: abrt-retrace-client #Requires: abrt-plugin-firefox %if 0%{?fedora} Requires: libreport-plugin-bodhi @@ -635,6 +636,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog +* Tue May 22 2012 Jiri Moskovcak 2.0.10-4 +- abrt-desktop should require abrt-retrace-client +- Resolves: #823812 + * Thu May 10 2012 Jiri Moskovcak 2.0.10-3 - enable plugins unconditionally rhbz#819113 From 4af370dd2f7c4210af760345b7143ae1eb0b8856 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 10:30:00 -0500 Subject: [PATCH 055/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index d160c39..9395432 100644 --- a/abrt.spec +++ b/abrt.spec @@ -25,7 +25,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.10 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -636,6 +636,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 2.0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Tue May 22 2012 Jiri Moskovcak 2.0.10-4 - abrt-desktop should require abrt-retrace-client - Resolves: #823812 From a775d06e4526af805b5ea55540275e066b072f8d Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 2 Aug 2012 15:27:04 +0200 Subject: [PATCH 056/318] New upstream release 2.0.11 - Resolves: #622773, #741222, #823299, #825116, #826058, #826800, #831333, #832085, #838842 --- .gitignore | 1 + abrt.spec | 65 +++++++++++++++++++++++++++++++----------------------- sources | 2 +- 3 files changed, 39 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index e787f5b..9021195 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ abrt-1.1.13.tar.gz /abrt-2.0.7.tar.gz /abrt-2.0.9.tar.gz /abrt-2.0.10.tar.gz +/abrt-2.0.11.tar.gz diff --git a/abrt.spec b/abrt.spec index 9395432..1d2987c 100644 --- a/abrt.spec +++ b/abrt.spec @@ -24,8 +24,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.0.10 -Release: 5%{?dist} +Version: 2.0.11 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -34,13 +34,8 @@ Source1: abrt1_to_abrt2 Patch0: abrt-rhelkeys.patch Patch1: blacklist.patch Patch2: abrt_disable_gpgcheck.diff -Patch3: 0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch -Patch4: 0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch -Patch5: 0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch -Patch6: 0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch -Patch7: abrt_systemd_requisite.patch BuildRequires: dbus-devel -BuildRequires: gtk2-devel +BuildRequires: gtk3-devel BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel @@ -55,9 +50,6 @@ BuildRequires: asciidoc BuildRequires: xmlto BuildRequires: libreport-devel >= 2.0.10-2 BuildRequires: btparser-devel -BuildRequires: elfutils-devel -BuildRequires: elfutils-libelf-devel -BuildRequires: binutils-devel %if %{with systemd} Requires: systemd-units @@ -108,7 +100,7 @@ GTK+ wizard for convenient bug reporting. %package addon-ccpp Summary: %{name}'s C/C++ addon Group: System Environment/Libraries -Requires: elfutils, elfutils-libelf, elfutils-libs, cpio +Requires: cpio, btparser Requires: gdb >= 7.0-3 Requires: %{name} = %{version}-%{release} @@ -153,10 +145,23 @@ Summary: %{name}'s vmcore addon Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops +Requires: crash %description addon-vmcore This package contains plugin for collecting kernel crash information from vmcore files. +%package plugin-bodhi +Summary: %{name}'s bodhi plugin +BuildRequires: json-c-devel +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +BuildRequires: libreport-web-devel >= 2.0.10 +Obsoletes: libreport-plugin-bodhi > 0.0.1 +Provides: libreport-plugin-bodhi + +%description plugin-bodhi +Search for a new updates in bodhi server + %package addon-python Summary: %{name}'s addon for catching and analyzing Python exceptions Group: System Environment/Libraries @@ -202,12 +207,15 @@ Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: abrt-addon-vmcore Requires: abrt-addon-ccpp +Requires: abrt-retrace-client Requires: abrt-addon-python +Requires: abrt-addon-xorg # Default config of addon-ccpp requires gdb Requires: gdb >= 7.0-3 Requires: abrt-gui +Requires: abrt-plugin-bodhi Requires: libreport-plugin-logger, libreport-plugin-bugzilla -Requires: abrt-retrace-client +Requires: libreport-plugin-ureport #Requires: abrt-plugin-firefox %if 0%{?fedora} Requires: libreport-plugin-bodhi @@ -239,11 +247,6 @@ uses PolicyKit to authorize to access the problem data. #Fedora %patch1 -p1 -b .blacklist %patch2 -p1 -b .gpgcheck -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -b .rhbz804309 -%patch6 -p1 -b .socket_timeouts -%patch7 -p1 -b .systemd_requisit %build autoconf @@ -312,8 +315,8 @@ if [ $1 -eq 1 ]; then # If this old abrtd was enabled, then the new package # should have abrt-ccpp enabled too. %if %{with systemd} - # Enable (but don't start) the units by default - /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || : %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-ccpp @@ -325,8 +328,8 @@ fi if [ $1 -eq 1 ]; then # (see explanation in addon-ccpp section) %if %{with systemd} - # Enable (but don't start) the units by default - /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || : %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-oops @@ -338,8 +341,8 @@ fi if [ $1 -eq 1 ]; then # (see explanation in addon-ccpp section) %if %{with systemd} - # Enable (but don't start) the units by default - /bin/systemctl enable abrt-xorg.service >/dev/null 2>&1 || : + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-xorg.service >/dev/null 2>&1 || : %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-xorg @@ -351,8 +354,8 @@ fi if [ $1 -eq 1 ]; then # (see explanation in addon-ccpp section) %if %{with systemd} - # Enable (but don't start) the units by default - /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : + # Enable (but don't start) the units by default + /bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || : %else if /sbin/chkconfig abrtd >/dev/null 2>&1; then /sbin/chkconfig --add abrt-vmcore @@ -628,6 +631,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files desktop %defattr(-,root,root,-) +%files plugin-bodhi +%defattr(-,root,root,-) +%{_bindir}/abrt-bodhi +%{_mandir}/man1/abrt-bodhi.1.gz + %files dbus %defattr(-,root,root,-) %{_sbindir}/abrt-dbus @@ -636,8 +644,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog -* Wed Jul 18 2012 Fedora Release Engineering - 2.0.10-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild +* Thu Aug 02 2012 Jiri Moskovcak 2.0.11-1 +- new upstream release +- Resolves: #622773, #741222, #823299, #825116, #826058, #826800, #831333, #832085, #838842 * Tue May 22 2012 Jiri Moskovcak 2.0.10-4 - abrt-desktop should require abrt-retrace-client diff --git a/sources b/sources index 1c2b942..c7152b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -82109d1d6d216a7e28a581190b89c1e7 abrt-2.0.10.tar.gz +ab69b093ac1dbd5438ab166a0c53c60c abrt-2.0.11.tar.gz From de53221e71650e0d12149efc238aa050d530c5fe Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Fri, 10 Aug 2012 14:06:41 +0200 Subject: [PATCH 057/318] configure analyze retrace event with sending-sensitive-data opition --- abrt.spec | 10 +++- ...retrace_sensitive_data_configuration.patch | 26 +++++++++ no_elements_abrt_dbus_crash_fix.patch | 58 +++++++++++++++++++ 3 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 analyze_retrace_sensitive_data_configuration.patch create mode 100644 no_elements_abrt_dbus_crash_fix.patch diff --git a/abrt.spec b/abrt.spec index 1d2987c..5b4d7d5 100644 --- a/abrt.spec +++ b/abrt.spec @@ -25,7 +25,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.0.11 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -34,6 +34,8 @@ Source1: abrt1_to_abrt2 Patch0: abrt-rhelkeys.patch Patch1: blacklist.patch Patch2: abrt_disable_gpgcheck.diff +Patch3: no_elements_abrt_dbus_crash_fix.patch +Patch4: analyze_retrace_sensitive_data_configuration.patch BuildRequires: dbus-devel BuildRequires: gtk3-devel BuildRequires: rpm-devel >= 4.6 @@ -247,6 +249,8 @@ uses PolicyKit to authorize to access the problem data. #Fedora %patch1 -p1 -b .blacklist %patch2 -p1 -b .gpgcheck +%patch3 -p1 -b .noelements +%patch4 -p1 -b .senstive %build autoconf @@ -644,6 +648,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/polkit-1/actions/abrt_polkit.policy %changelog +* Fri Aug 10 2012 Jakub Filak 2.0.11-2 +- fix abrt-dbus crash if no element is found in GetInfo() +- set sending-sensitive-data option to 'yes' for analyze_RetraceServer event + * Thu Aug 02 2012 Jiri Moskovcak 2.0.11-1 - new upstream release - Resolves: #622773, #741222, #823299, #825116, #826058, #826800, #831333, #832085, #838842 diff --git a/analyze_retrace_sensitive_data_configuration.patch b/analyze_retrace_sensitive_data_configuration.patch new file mode 100644 index 0000000..9cf9bd4 --- /dev/null +++ b/analyze_retrace_sensitive_data_configuration.patch @@ -0,0 +1,26 @@ +From e5d7e2e0f3aa9047e1b7268965021b91b29d76e2 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 10 Aug 2012 13:13:18 +0200 +Subject: [PATCH 6/6] set sending-sensitive-data option to 'yes' for + analyze_RetraceServer event + +Signed-off-by: Jakub Filak +--- + src/plugins/analyze_RetraceServer.xml.in | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/plugins/analyze_RetraceServer.xml.in b/src/plugins/analyze_RetraceServer.xml.in +index a2ca859..e437cac 100644 +--- a/src/plugins/analyze_RetraceServer.xml.in ++++ b/src/plugins/analyze_RetraceServer.xml.in +@@ -8,6 +8,7 @@ + + backtrace + no ++ yes + + + +@@ -154,9 +139,7 @@ + + + 0 +- 5 +- 1 +- 1 ++ 6 + + + +@@ -172,8 +155,6 @@ + + 2 + 0 +- 1 +- 1 + + + +@@ -188,8 +169,6 @@ + + 2 + 1 +- 1 +- 1 + + + +@@ -204,8 +183,6 @@ + + 2 + 3 +- 1 +- 1 + + + +@@ -219,9 +196,7 @@ + + + 2 +- 4 +- 1 +- 1 ++ 5 + + + +@@ -235,9 +210,7 @@ + + + 2 +- 5 +- 1 +- 1 ++ 6 + + + +@@ -254,8 +227,6 @@ + + 0 + 0 +- 1 +- 1 + + + +@@ -270,8 +241,6 @@ + + 2 + 2 +- 1 +- 1 + + + +@@ -286,8 +255,6 @@ + + 0 + 2 +- 1 +- 1 + + + +@@ -301,8 +268,6 @@ + + 1 + 2 +- 1 +- 1 + + + +@@ -316,9 +281,7 @@ + + + 0 +- 6 +- 1 +- 1 ++ 7 + + + +@@ -331,9 +294,7 @@ + + + 1 +- 6 +- 1 +- 1 ++ 7 + + + +@@ -347,11 +308,26 @@ + + + 2 +- 6 +- 1 +- 1 ++ 7 + + ++ ++ ++ True ++ False ++ ++ ++ ++ ++ ++ 0 ++ 4 ++ 2 ++ ++ ++ ++ ++ + + + +-- +2.4.1 + diff --git a/abrt.spec b/abrt.spec index a45b174..011013a 100644 --- a/abrt.spec +++ b/abrt.spec @@ -46,7 +46,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.5.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://github.com/abrt/abrt/wiki/ABRT-Project @@ -56,6 +56,28 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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-testsuite-grab-beakerlib-stored-log-files-from-var-t.patch +#Patch0002: 0002-testsuite-add-the-machineid-test-case-to-rhel6.patch +#Patch0003: 0003-testsuite-add-test-for-abrt-cli-report-via-reporter-.patch +Patch0004: 0004-applet-switch-to-D-Bus-methods.patch +Patch0005: 0005-lib-add-new-kernel-taint-flags.patch +Patch0006: 0006-upload-validate-and-sanitize-uploaded-dump-directori.patch +#Patch0007: 0007-testsuite-don-t-run-whole-test-if-reporter-mantisbt-.patch +Patch0008: 0008-a-a-s-p-d-add-new-known-interpreter-to-conf-file.patch +#Patch0009: 0009-abrt-detect-DumpLocation-from-abrt.conf-instead-of-u.patch +Patch0010: 0010-applet-fix-problem-info-double-free.patch +Patch0011: 0011-cli-do-not-exit-with-segfault-if-dbus-fails.patch +#Patch0012: 0012-spec-add-a-dependency-on-abrt-dbus-to-abrt-cli.patch +Patch0013: 0013-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch +#Patch0014: 0014-spec-add-AUTHENTICATED_AUTOREPORTING-conditional.patch +Patch0015: 0015-abrt-action-list-dsos-do-not-decode-not-existing-obj.patch +Patch0016: 0016-doc-polkit-Spelling-grammar-fixes.patch +#Patch0017: 0017-testsuite-add-new-version-of-python-interpreters.patch +Patch0018: 0018-applet-migrate-Autoreporting-options-to-GSettings.patch +Patch0019: 0019-config-UI-read-glade-from-a-local-file-first.patch +Patch0020: 0020-config-UI-enable-options-without-config-files.patch +Patch0021: 0021-config-UI-Automatic-reporting-from-GSettings.patch +#Patch0022: 0022-testsuite-test-safeness-of-creating-user-cores.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -291,6 +313,7 @@ Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} +Requires: abrt-dbus %description tui This package contains a simple command line client for processing abrt reports @@ -459,8 +482,8 @@ to the shell # Default '__scm_apply_git' is 'git apply && git commit' but this workflow # doesn't allow us to create a new file within a patch, so we have to use # 'git am' (see /usr/lib/rpm/macros for more details) -%define __scm_apply_git(qp:m:) %{__git} am -#%%define __scm_apply_git(qp:m:) %%{__git} am --exclude libreport.spec.in --exclude .gitignore +#%%define __scm_apply_git(qp:m:) %%{__git} am +%define __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex %autosetup -S git %build @@ -1022,6 +1045,18 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed May 20 2015 Matej Habrnal 2.5.1-3 +- applet: switch to D-Bus methods +- upload: validate and sanitize uploaded dump directories +- applet: switch to D-Bus methods +- lib: add new kernel taint flags +- abrt-auto-reporting: require rhtsupport.conf file only on RHEL +- doc, polkit: Spelling/grammar fixes +- applet: migrate Autoreporting options to GSettings +- config UI: read glade from a local file first +- config UI: Automatic reporting from GSettings +- Resolves: #1217901 + * Mon Apr 13 2015 Jakub Filak 2.5.1-2 - Remove no longer needed posttrans scriptlet copying analyzer to type From a8bf279ba20b944cbe3f98da82f64c7f996dc5e9 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Wed, 10 Jun 2015 08:32:19 +0200 Subject: [PATCH 131/318] New upstream release 2.6.0 --- .gitignore | 1 + 0004-applet-switch-to-D-Bus-methods.patch | 427 ------------- 0005-lib-add-new-kernel-taint-flags.patch | 60 -- ...and-sanitize-uploaded-dump-directori.patch | 142 ----- ...d-new-known-interpreter-to-conf-file.patch | 29 - ...-applet-fix-problem-info-double-free.patch | 41 -- ...not-exit-with-segfault-if-dbus-fails.patch | 30 - ...ing-require-rhtsupport.conf-file-onl.patch | 589 ----------------- ...-dsos-do-not-decode-not-existing-obj.patch | 37 -- 0016-doc-polkit-Spelling-grammar-fixes.patch | 143 ----- ...e-Autoreporting-options-to-GSettings.patch | 123 ---- ...I-read-glade-from-a-local-file-first.patch | 39 -- ...-enable-options-without-config-files.patch | 55 -- ...I-Automatic-reporting-from-GSettings.patch | 602 ------------------ abrt.spec | 72 ++- sources | 2 +- 16 files changed, 45 insertions(+), 2347 deletions(-) delete mode 100644 0004-applet-switch-to-D-Bus-methods.patch delete mode 100644 0005-lib-add-new-kernel-taint-flags.patch delete mode 100644 0006-upload-validate-and-sanitize-uploaded-dump-directori.patch delete mode 100644 0008-a-a-s-p-d-add-new-known-interpreter-to-conf-file.patch delete mode 100644 0010-applet-fix-problem-info-double-free.patch delete mode 100644 0011-cli-do-not-exit-with-segfault-if-dbus-fails.patch delete mode 100644 0013-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch delete mode 100644 0015-abrt-action-list-dsos-do-not-decode-not-existing-obj.patch delete mode 100644 0016-doc-polkit-Spelling-grammar-fixes.patch delete mode 100644 0018-applet-migrate-Autoreporting-options-to-GSettings.patch delete mode 100644 0019-config-UI-read-glade-from-a-local-file-first.patch delete mode 100644 0020-config-UI-enable-options-without-config-files.patch delete mode 100644 0021-config-UI-Automatic-reporting-from-GSettings.patch diff --git a/.gitignore b/.gitignore index 11dfa5d..34d6c46 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ abrt-1.1.13.tar.gz /abrt-2.4.0.tar.gz /abrt-2.5.0.tar.gz /abrt-2.5.1.tar.gz +/abrt-2.6.0.tar.gz diff --git a/0004-applet-switch-to-D-Bus-methods.patch b/0004-applet-switch-to-D-Bus-methods.patch deleted file mode 100644 index ee6d7c5..0000000 --- a/0004-applet-switch-to-D-Bus-methods.patch +++ /dev/null @@ -1,427 +0,0 @@ -From a2977b0fe023a896c3006f27ee2b148690dff24a Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 8 Apr 2015 08:23:03 +0200 -Subject: [PATCH] applet: switch to D-Bus methods - -This patch is a part of our efforts to make abrt-applet independent on -the backend. - -This patch converts all data manipulation functions to D-Bus calls, so -the notifications are made of data obtained through D-Bus. - -The reporting still relies on file system access, though. - -Signed-off-by: Jakub Filak ---- - src/applet/applet.c | 181 ++++++++++++++++++++++++++++----------------- - src/include/libabrt.h | 16 ++++ - src/lib/problem_api_dbus.c | 61 +++++++++++---- - 3 files changed, 174 insertions(+), 84 deletions(-) - -diff --git a/src/applet/applet.c b/src/applet/applet.c -index 7b58f6e..4df69fc 100644 ---- a/src/applet/applet.c -+++ b/src/applet/applet.c -@@ -120,6 +120,7 @@ typedef struct problem_info { - bool reported; - bool was_announced; - bool is_writable; -+ int time; - } problem_info_t; - - static void push_to_deferred_queue(problem_info_t *pi) -@@ -137,6 +138,59 @@ static const char *problem_info_get_command_line(problem_info_t *pi) - return problem_data_get_content_or_NULL(pi->problem_data, FILENAME_CMDLINE); - } - -+static int problem_info_get_time(problem_info_t *pi) -+{ -+ if (pi->time == -1) -+ { -+ const char *time_str = problem_data_get_content_or_NULL(pi->problem_data, FILENAME_TIME); -+ -+ if (time_str == NULL) -+ error_msg_and_die("BUG: Problem info has data without the element time"); -+ -+ pi->time = atoi(time_str); -+ } -+ -+ return pi->time; -+} -+ -+static const char **problem_info_get_env(problem_info_t *pi) -+{ -+ if (pi->envp == NULL) -+ { -+ const char *env_str = problem_data_get_content_or_NULL(pi->problem_data, FILENAME_ENVIRON); -+ pi->envp = (env_str != NULL) ? g_strsplit (env_str, "\n", -1) : NULL; -+ } -+ -+ return (const char **)pi->envp; -+} -+ -+static int problem_info_get_pid(problem_info_t *pi) -+{ -+ if (pi->pid == -1) -+ { -+ const char *pid_str = problem_data_get_content_or_NULL(pi->problem_data, FILENAME_PID); -+ pi->pid = (pid_str != NULL) ? atoi (pid_str) : -1; -+ } -+ -+ return pi->pid; -+} -+ -+static int problem_info_get_count(problem_info_t *pi) -+{ -+ if (pi->count == -1) -+ { -+ const char *count_str = problem_data_get_content_or_NULL(pi->problem_data, FILENAME_COUNT); -+ pi->count = count_str ? atoi(count_str) : 1; -+ } -+ -+ return pi->count; -+} -+ -+static bool problem_info_is_reported(problem_info_t *pi) -+{ -+ return problem_data_get_content_or_NULL(pi->problem_data, FILENAME_REPORTED_TO) != NULL; -+} -+ - static void problem_info_set_dir(problem_info_t *pi, const char *dir) - { - problem_data_add_text_noteditable(pi->problem_data, CD_DUMPDIR, dir); -@@ -176,6 +230,9 @@ static problem_info_t *problem_info_new(const char *dir) - { - problem_info_t *pi = g_new0(problem_info_t, 1); - pi->refcount = 1; -+ pi->time = -1; -+ pi->pid = -1; -+ pi->count = -1; - pi->problem_data = problem_data_new(); - problem_info_set_dir(pi, dir); - return pi; -@@ -194,8 +251,6 @@ static void problem_info_unref(gpointer data) - return; - - problem_data_free(pi->problem_data); -- if (pi->envp) -- g_strfreev(pi->envp); - g_free(pi); - } - -@@ -556,7 +611,7 @@ static void notify_problem_list(GList *problems) - continue; - } - -- app = problem_create_app_from_env ((const char **)pi->envp, pi->pid); -+ app = problem_create_app_from_env (problem_info_get_env(pi), problem_info_get_pid(pi)); - - if (!app) - app = problem_create_app_from_cmdline (problem_info_get_command_line(pi)); -@@ -572,7 +627,7 @@ static void notify_problem_list(GList *problems) - gboolean is_packaged = pi->is_packaged; - gboolean is_running_again = is_app_running(app); - gboolean is_current_user = !pi->foreign; -- gboolean already_reported = (pi->count > 1); -+ gboolean already_reported = problem_info_get_count(pi) > 1; - - gboolean report_button = FALSE; - gboolean restart_button = FALSE; -@@ -914,14 +969,22 @@ static void Crash(GVariant *parameters) - if (foreign_problem && !g_user_is_admin) - return; - -- struct dump_dir *dd = dd_opendir(dir, DD_OPEN_READONLY); -- char *command_line = dd_load_text_ext(dd, FILENAME_CMDLINE, DD_FAIL_QUIETLY_ENOENT | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE); -- char *count_str = dd_load_text_ext(dd, FILENAME_COUNT, DD_FAIL_QUIETLY_ENOENT | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE); -- guint count = count_str ? atoi(count_str) : 1; -- g_free(count_str); -- char *env = dd_load_text_ext(dd, FILENAME_ENVIRON, DD_FAIL_QUIETLY_ENOENT | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE); -- char *pid = dd_load_text_ext(dd, FILENAME_PID, DD_FAIL_QUIETLY_ENOENT | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE); -- dd_close(dd); -+ static const char *elements[] = { -+ FILENAME_CMDLINE, -+ FILENAME_COUNT, -+ FILENAME_UUID, -+ FILENAME_DUPHASH, -+ FILENAME_COMPONENT, -+ FILENAME_ENVIRON, -+ FILENAME_PID, -+ NULL, -+ }; -+ -+ problem_info_t *pi = problem_info_new(dir); -+ fill_problem_data_over_dbus(dir, elements, pi->problem_data); -+ -+ pi->foreign = foreign_problem; -+ pi->is_packaged = (package_name != NULL); - - /* - * Can't append dir to the seen list because of directory stealing -@@ -929,24 +992,6 @@ static void Crash(GVariant *parameters) - * append_dirlist(dir); - * - */ -- -- problem_info_t *pi = problem_info_new(dir); -- if (uuid != NULL && uuid[0] != '\0') -- problem_data_add_text_noteditable(pi->problem_data, FILENAME_UUID, uuid); -- if (duphash != NULL && duphash[0] != '\0') -- problem_data_add_text_noteditable(pi->problem_data, FILENAME_DUPHASH, duphash); -- if (package_name != NULL && package_name[0] != '\0') -- problem_data_add_text_noteditable(pi->problem_data, FILENAME_COMPONENT, package_name); -- if (command_line != NULL) -- problem_data_add_text_noteditable(pi->problem_data, FILENAME_CMDLINE, command_line); -- pi->foreign = foreign_problem; -- pi->count = count; -- pi->is_packaged = (package_name != NULL); -- pi->envp = (env != NULL) ? g_strsplit (env, "\n", -1) : NULL; -- pi->pid = (pid != NULL) ? atoi (pid) : -1; -- free(command_line); -- free(env); -- free(pid); - show_problem_notification(pi); - } - -@@ -970,6 +1015,19 @@ name_acquired_handler (GDBusConnection *connection, - const gchar *name, - gpointer user_data) - { -+ static const char *elements[] = { -+ FILENAME_CMDLINE, -+ FILENAME_COUNT, -+ FILENAME_UUID, -+ FILENAME_DUPHASH, -+ FILENAME_COMPONENT, -+ FILENAME_UID, -+ FILENAME_TIME, -+ FILENAME_REPORTED_TO, -+ FILENAME_NOT_REPORTABLE, -+ NULL -+ }; -+ - /* If some new dirs appeared since our last run, let user know it */ - GList *new_dirs = NULL; - GList *notify_list = NULL; -@@ -980,58 +1038,45 @@ name_acquired_handler (GDBusConnection *connection, - /* Age limit = now - 3 days */ - const unsigned long min_born_time = (unsigned long)(time_before_ndays(3)); - -- while (new_dirs) -+ for ( ; new_dirs != NULL; new_dirs = g_list_next(new_dirs)) - { -- struct dump_dir *dd = dd_opendir((char *)new_dirs->data, DD_OPEN_READONLY); -- if (dd == NULL) -+ const char *problem_id = (const char *)new_dirs->data; -+ problem_info_t *pi = problem_info_new(problem_id); -+ -+ if (fill_problem_data_over_dbus(problem_id, elements, pi->problem_data) != 0) - { -- log_notice("'%s' is not a dump dir - ignoring\n", (char *)new_dirs->data); -- new_dirs = g_list_next(new_dirs); -+ log_notice("'%s' is not a dump dir - ignoring\n", problem_id); -+ problem_info_unref(pi); - continue; - } - -- if (dd->dd_time < min_born_time) -+ /* TODO: add a filter for only complete problems to GetProblems D-Bus method */ -+ if (!dbus_problem_is_complete(problem_id)) - { -- log_notice("Ignoring outdated problem '%s'", (char *)new_dirs->data); -- goto next; -+ log_notice("Ignoring incomplete problem '%s'", problem_id); -+ problem_info_unref(pi); -+ continue; - } - -- if (!problem_dump_dir_is_complete(dd)) -+ /* TODO: add a filter for max-old reported problems to GetProblems D-Bus method */ -+ if (problem_info_get_time(pi) < min_born_time) - { -- log_notice("Ignoring incomplete problem '%s'", (char *)new_dirs->data); -- goto next; -+ log_notice("Ignoring outdated problem '%s'", problem_id); -+ problem_info_unref(pi); -+ continue; - } - -- if (!dd_exist(dd, FILENAME_REPORTED_TO)) -+ /* TODO: add a filter for not-yet reported problems to GetProblems D-Bus method */ -+ if (problem_info_is_reported(pi)) - { -- problem_info_t *pi = problem_info_new(new_dirs->data); -- const char *elements[] = {FILENAME_UUID, FILENAME_DUPHASH, FILENAME_COMPONENT, FILENAME_NOT_REPORTABLE, FILENAME_CMDLINE}; -- -- for (size_t i = 0; i < sizeof(elements)/sizeof(*elements); ++i) -- { -- char * const value = dd_load_text_ext(dd, elements[i], -- DD_FAIL_QUIETLY_ENOENT | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE); -- if (value) -- problem_data_add_text_noteditable(pi->problem_data, elements[i], value); -- free(value); -- } -- -- /* Can't be foreign because if the problem is foreign then the -- * dd_opendir() call failed few lines above and the problem is ignored. -- * */ -- pi->foreign = false; -- -- notify_list = g_list_prepend(notify_list, pi); -- } -- else -- { -- log_notice("Ignoring already reported problem '%s'", (char *)new_dirs->data); -+ log_notice("Ignoring already reported problem '%s'", problem_id); -+ problem_info_unref(pi); -+ continue; - } - --next: -- dd_close(dd); -- -- new_dirs = g_list_next(new_dirs); -+ /* Can't be foreig because new_dir_exists() returns only own problems */ -+ pi->foreign = false; -+ notify_list = g_list_prepend(notify_list, pi); - } - - if (notify_list) -diff --git a/src/include/libabrt.h b/src/include/libabrt.h -index 19ad4a8..07dc172 100644 ---- a/src/include/libabrt.h -+++ b/src/include/libabrt.h -@@ -164,6 +164,15 @@ int chown_dir_over_dbus(const char *problem_dir_path); - int test_exist_over_dbus(const char *problem_id, const char *element_name); - - /** -+ @brief Checks whether the problem corresponding to the given ID is complete -+ -+ Might require authorization -+ -+ @return Positive number if such the proble is complete, 0 if doesn't and negative number if an error occurs. -+ */ -+int dbus_problem_is_complete(const char *problem_id); -+ -+/** - @ Returns value of the given element name - - Might require authorization -@@ -182,6 +191,13 @@ char *load_text_over_dbus(const char *problem_id, const char *element_name); - int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); - - /** -+ @brief Fetches given problem elements for specified problem id -+ -+ @return on failures returns non zero value and emits error message -+*/ -+int fill_problem_data_over_dbus(const char *problem_dir_path, const char **elements, problem_data_t *problem_data); -+ -+/** - @brief Fetches problem information for specified problem id - - @return problem_data_t or NULL on failure -diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c -index 5148932..ce5c47b 100644 ---- a/src/lib/problem_api_dbus.c -+++ b/src/lib/problem_api_dbus.c -@@ -101,23 +101,21 @@ int delete_problem_dirs_over_dbus(const GList *problem_dir_paths) - return 0; - } - --problem_data_t *get_problem_data_dbus(const char *problem_dir_path) -+int fill_problem_data_over_dbus(const char *problem_id, const char **elements, problem_data_t *problem_data) - { - INITIALIZE_LIBABRT(); - - GDBusProxy *proxy = get_dbus_proxy(); - if (!proxy) -- return NULL; -+ return -1; - -- GVariantBuilder *builder = g_variant_builder_new(G_VARIANT_TYPE("as")); -- g_variant_builder_add(builder, "s", FILENAME_TIME ); -- g_variant_builder_add(builder, "s", FILENAME_REASON ); -- g_variant_builder_add(builder, "s", FILENAME_NOT_REPORTABLE); -- g_variant_builder_add(builder, "s", FILENAME_COMPONENT ); -- g_variant_builder_add(builder, "s", FILENAME_EXECUTABLE ); -- g_variant_builder_add(builder, "s", FILENAME_REPORTED_TO ); -- GVariant *params = g_variant_new("(sas)", problem_dir_path, builder); -- g_variant_builder_unref(builder); -+ GVariantBuilder *args_builder = g_variant_builder_new(G_VARIANT_TYPE("as")); -+ -+ for (const char **iter = elements; *iter; ++iter) -+ g_variant_builder_add(args_builder, "s", *iter); -+ -+ GVariant *params = g_variant_new("(sas)", problem_id, args_builder); -+ g_variant_builder_unref(args_builder); - - GError *error = NULL; - GVariant *result = g_dbus_proxy_call_sync(proxy, -@@ -130,20 +128,46 @@ problem_data_t *get_problem_data_dbus(const char *problem_dir_path) - - if (error) - { -- error_msg(_("Can't get problem data from abrt-dbus: %s"), error->message); -+ error_msg(_("D-Bus GetInfo method call failed: %s"), error->message); - g_error_free(error); -- return NULL; -+ return -2; - } - -- problem_data_t *pd = problem_data_new(); -+ - char *key, *val; - GVariantIter *iter; - g_variant_get(result, "(a{ss})", &iter); - while (g_variant_iter_loop(iter, "{ss}", &key, &val)) -+ problem_data_add_text_noteditable(problem_data, key, val); -+ -+ g_variant_unref(result); -+ -+ return 0; -+} -+ -+problem_data_t *get_problem_data_dbus(const char *problem_dir_path) -+{ -+ INITIALIZE_LIBABRT(); -+ -+ static const char *elements[] = { -+ FILENAME_TIME, -+ FILENAME_REASON, -+ FILENAME_NOT_REPORTABLE, -+ FILENAME_COMPONENT, -+ FILENAME_EXECUTABLE, -+ FILENAME_REPORTED_TO, -+ NULL, -+ }; -+ -+ problem_data_t *pd = problem_data_new(); -+ -+ if (fill_problem_data_over_dbus(problem_dir_path, elements, pd) != 0) - { -- problem_data_add_text_noteditable(pd, key, val); -+ error_msg(_("Can't get problem data from abrt-dbus")); -+ problem_data_free(pd); -+ return NULL; - } -- g_variant_unref(result); -+ - return pd; - } - -@@ -259,6 +283,11 @@ int test_exist_over_dbus(const char *problem_id, const char *element_name) - return retval; - } - -+int dbus_problem_is_complete(const char *problem_id) -+{ -+ return test_exist_over_dbus(problem_id, FILENAME_COUNT); -+} -+ - char *load_text_over_dbus(const char *problem_id, const char *element_name) - { - INITIALIZE_LIBABRT(); --- -2.4.1 - diff --git a/0005-lib-add-new-kernel-taint-flags.patch b/0005-lib-add-new-kernel-taint-flags.patch deleted file mode 100644 index 555c5a5..0000000 --- a/0005-lib-add-new-kernel-taint-flags.patch +++ /dev/null @@ -1,60 +0,0 @@ -From e52d14214bd356f31856a5ab63ef14a60d318364 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 5 May 2015 10:46:06 +0200 -Subject: [PATCH] lib: add new kernel taint flags - -Signed-off-by: Jakub Filak ---- - src/lib/kernel.c | 16 +++++++++++----- - 1 file changed, 11 insertions(+), 5 deletions(-) - -diff --git a/src/lib/kernel.c b/src/lib/kernel.c -index af43ae0..dde3d28 100644 ---- a/src/lib/kernel.c -+++ b/src/lib/kernel.c -@@ -632,8 +632,14 @@ char *koops_extract_version(const char *linepointer) - * 'W' - Taint on warning. - * 'C' - modules from drivers/staging are loaded. - * 'I' - Working around severe firmware bug. -+ * 'O' - Out-of-tree module has been loaded. -+ * 'E' - Unsigned module has been loaded. -+ * 'L' - A soft lockup has previously occurred. -+ * 'K' - Kernel has been live patched. -+ * -+ * Compatibility flags from older versions and downstream sources: - * 'H' - Hardware is unsupported. -- * T - Tech_preview -+ * 'T' - Tech_preview - */ - - #if 0 /* unused */ -@@ -658,7 +664,7 @@ char *kernel_tainted_short(const char *kernel_bt) - return NULL; - - tainted += strlen("Tainted: "); -- /* 13 == current count of known flags */ -+ /* 17 + 2 == current count of known flags */ - /* http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=blob_plain;f=kernel/panic.c;hb=HEAD */ - /* 26 the maximal sane count of flags because of alphabet limits */ - unsigned sz = 26 + 1; -@@ -701,14 +707,14 @@ static const char *const tnts_long[] = { - /* B */ "System has hit bad_page.", - /* C */ "Modules from drivers/staging are loaded.", - /* D */ "Kernel has oopsed before", -- /* E */ NULL, -+ /* E */ "Unsigned module has been loaded." - /* F */ "Module has been forcibly loaded.", - /* G */ "Proprietary module has not been loaded.", - /* H */ NULL, - /* I */ "Working around severe firmware bug.", - /* J */ NULL, -- /* K */ NULL, -- /* L */ NULL, -+ /* K */ "Kernel has been live patched.", -+ /* L */ "A soft lockup has previously occurred.", - /* M */ "System experienced a machine check exception.", - /* N */ NULL, - /* O */ "Out-of-tree module has been loaded.", --- -2.4.1 - diff --git a/0006-upload-validate-and-sanitize-uploaded-dump-directori.patch b/0006-upload-validate-and-sanitize-uploaded-dump-directori.patch deleted file mode 100644 index 6823b33..0000000 --- a/0006-upload-validate-and-sanitize-uploaded-dump-directori.patch +++ /dev/null @@ -1,142 +0,0 @@ -From 3746b7627218438ae7d781fc8b18a221454e9091 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Mon, 20 Apr 2015 15:15:40 +0200 -Subject: [PATCH] upload: validate and sanitize uploaded dump directories - -It was discovered that, when moving problem reports from -/var/spool/abrt-upload to /var/spool/abrt or /var/tmp/abrt, -abrt-handle-upload does not verify that the new problem directory -has appropriate permissions and does not contain symbolic links. A -crafted problem report exposes other parts of abrt to attack, and -the abrt-handle-upload script allows to overwrite arbitrary files. - -Acknowledgement: - -This issue was discovered by Florian Weimer of Red Hat Product Security. - -Related: #1212953 - -Signed-off-by: Jakub Filak ---- - src/daemon/abrt-handle-upload.in | 78 +++++++++++++++++++++++++++++++++++----- - 1 file changed, 70 insertions(+), 8 deletions(-) - -diff --git a/src/daemon/abrt-handle-upload.in b/src/daemon/abrt-handle-upload.in -index 45ba72d..e812ef0 100755 ---- a/src/daemon/abrt-handle-upload.in -+++ b/src/daemon/abrt-handle-upload.in -@@ -10,6 +10,7 @@ import getopt - import tempfile - import shutil - import datetime -+import grp - - from reportclient import set_verbosity, error_msg_and_die, error_msg, log - -@@ -36,12 +37,77 @@ def init_gettext(): - - import problem - --def write_str_to(filename, s): -- fd = os.open(filename, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, @DEFAULT_DUMP_DIR_MODE@ | stat.S_IROTH) -+def write_str_to(filename, s, uid, gid, mode): -+ fd = os.open(filename, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, mode) - if fd >= 0: -+ os.fchown(fd, uid, gid) - os.write(fd, s) - os.close(fd) - -+ -+def validate_transform_move_and_notify(uploaded_dir_path, problem_dir_path, dest=None): -+ fsuid = 0 -+ fsgid = 0 -+ -+ try: -+ gabrt = grp.getgrnam("abrt") -+ fsgid = gabrt.gr_gid -+ except KeyError as ex: -+ error_msg("Failed to get GID of 'abrt' (using 0 instead): {0}'".format(str(ex))) -+ -+ try: -+ # give the uploaded directory to 'root:abrt' or 'root:root' -+ os.chown(uploaded_dir_path, fsuid, fsgid) -+ # set the right permissions for this machine -+ # (allow the owner and the group to access problem elements, -+ # the default dump dir mode lacks x bit for both) -+ os.chmod(uploaded_dir_path, @DEFAULT_DUMP_DIR_MODE@ | stat.S_IXUSR | stat.S_IXGRP) -+ -+ # sanitize problem elements -+ for item in os.listdir(uploaded_dir_path): -+ apath = os.path.join(uploaded_dir_path, item) -+ if os.path.islink(apath): -+ # remove symbolic links -+ os.remove(apath) -+ elif os.path.isdir(apath): -+ # remove directories -+ shutil.rmtree(apath) -+ elif os.path.isfile(apath): -+ # set file ownership to 'root:abrt' or 'root:root' -+ os.chown(apath, fsuid, fsgid) -+ # set the right file permissions for this machine -+ os.chmod(apath, @DEFAULT_DUMP_DIR_MODE@) -+ else: -+ # remove things that are neither files, symlinks nor directories -+ os.remove(apath) -+ except OSError as ex: -+ error_msg("Removing uploaded dir '{0}': '{1}'".format(uploaded_dir_path, str(ex))) -+ try: -+ shutil.rmtree(uploaded_dir_path) -+ except OSError as ex2: -+ error_msg_and_die("Failed to clean up dir '{0}': '{1}'".format(uploaded_dir_path, str(ex2))) -+ return -+ -+ # overwrite remote if it exists -+ remote_path = os.path.join(uploaded_dir_path, "remote") -+ write_str_to(remote_path, "1", fsuid, fsgid, @DEFAULT_DUMP_DIR_MODE@) -+ -+ # abrtd would increment count value and abrt-server refuses to process -+ # problem directories containing 'count' element when PrivateReports is on. -+ count_path = os.path.join(uploaded_dir_path, "count") -+ if os.path.exists(count_path): -+ # overwrite remote_count if it exists -+ remote_count_path = os.path.join(uploaded_dir_path, "remote_count") -+ os.rename(count_path, remote_count_path) -+ -+ if not dest: -+ dest = problem_dir_path -+ -+ shutil.move(uploaded_dir_path, dest) -+ -+ problem.notify_new_path(problem_dir_path) -+ -+ - if __name__ == "__main__": - - # Helper: exit with cleanup -@@ -177,21 +243,17 @@ if __name__ == "__main__": - # or one or more complete problem data directories. - # Checking second possibility first. - if (os.path.exists(tempdir+"/analyzer") or os.path.exists(tempdir+"/type")) and os.path.exists(tempdir+"/time"): -- write_str_to(tempdir+"/remote", "1") -- shutil.move(tempdir, abrt_dir) -- problem.notify_new_path(abrt_dir+"/"+os.path.basename(tempdir)) -+ validate_transform_move_and_notify(tempdir, abrt_dir+"/"+os.path.basename(tempdir), dest=abrt_dir) - else: - for d in os.listdir(tempdir): - if not os.path.isdir(tempdir+"/"+d): - continue -- write_str_to(tempdir+"/"+d+"/remote", "1") - dst = abrt_dir+"/"+d - if os.path.exists(dst): - dst += "."+str(os.getpid()) - if os.path.exists(dst): - continue -- shutil.move(tempdir+"/"+d, dst) -- problem.notify_new_path(dst) -+ validate_transform_move_and_notify(tempdir+"/"+d, dst) - - die_exitcode = 0 - # This deletes working_dir (== delete_on_exit) --- -2.4.1 - diff --git a/0008-a-a-s-p-d-add-new-known-interpreter-to-conf-file.patch b/0008-a-a-s-p-d-add-new-known-interpreter-to-conf-file.patch deleted file mode 100644 index 7a254b7..0000000 --- a/0008-a-a-s-p-d-add-new-known-interpreter-to-conf-file.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 7d5be427e208e565ee16a7f34be64acb781fb2f9 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Mon, 18 May 2015 08:45:48 +0200 -Subject: [PATCH] a-a-s-p-d: add new known interpreter to conf file - -There were new bugzillas opened with wrong component 'python3' because of a new -version of python (3.4). We don't want to blame the interpreters but the -running scripts. - -close #965 - -Signed-off-by: Matej Habrnal ---- - src/daemon/abrt-action-save-package-data.conf | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf -index 33cef8f..27b9607 100644 ---- a/src/daemon/abrt-action-save-package-data.conf -+++ b/src/daemon/abrt-action-save-package-data.conf -@@ -18,4 +18,4 @@ ProcessUnpackaged = yes - BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer - - # interpreters names --Interpreters = python2, python2.7, python, python3, python3.3, perl, perl5.16.2 -+Interpreters = python2, python2.7, python, python3, python3.3, python3.4, python3.5, perl, perl5.16.2 --- -2.4.1 - diff --git a/0010-applet-fix-problem-info-double-free.patch b/0010-applet-fix-problem-info-double-free.patch deleted file mode 100644 index 256ba04..0000000 --- a/0010-applet-fix-problem-info-double-free.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 65c24bb248b9b7b2e33e8b0ba9e3e06ffde4b291 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Mon, 18 May 2015 15:46:59 +0200 -Subject: [PATCH] applet: fix problem info double free - -There was a double free when an action function was called. -Problem info is freed when the notification is destroyed because the free -function is registred when the action is added -(notify_notification_add_action()). So the problem_info_unref() function in the -action function is moreover and causes the double free problem. - -Related to rhbz#1211644 - -Signed-off-by: Matej Habrnal ---- - src/applet/applet.c | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/src/applet/applet.c b/src/applet/applet.c -index 4df69fc..c00f7e3 100644 ---- a/src/applet/applet.c -+++ b/src/applet/applet.c -@@ -501,7 +501,6 @@ static void action_report(NotifyNotification *notification, gchar *action, gpoin - problem_info_t *pi = (problem_info_t *)user_data; - if (problem_info_get_dir(pi)) - fork_exec_gui(problem_info_get_dir(pi)); -- problem_info_unref(pi); - } - - static void action_restart(NotifyNotification *notification, gchar *action, gpointer user_data) -@@ -528,7 +527,6 @@ static void action_restart(NotifyNotification *notification, gchar *action, gpoi - err->message); - } - g_object_unref (app); -- problem_info_unref(pi); - } - - static void on_notify_close(NotifyNotification *notification, gpointer user_data) --- -2.4.1 - diff --git a/0011-cli-do-not-exit-with-segfault-if-dbus-fails.patch b/0011-cli-do-not-exit-with-segfault-if-dbus-fails.patch deleted file mode 100644 index c17e33e..0000000 --- a/0011-cli-do-not-exit-with-segfault-if-dbus-fails.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 82957a3390188509921ec16bddc27f2aeeb01b8d Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Mon, 4 May 2015 10:35:25 +0200 -Subject: [PATCH] cli: do not exit with segfault if dbus fails - -There was a segfault when we ran 'abrt-cli list' and dbus failed. - -Related to rhbz#1217901 - -Signed-off-by: Matej Habrnal ---- - src/cli/list.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/cli/list.c b/src/cli/list.c -index c0c819d..31d1835 100644 ---- a/src/cli/list.c -+++ b/src/cli/list.c -@@ -142,6 +142,8 @@ int cmd_list(int argc, const char **argv) - parse_opts(argc, (char **)argv, program_options, program_usage_string); - - vector_of_problem_data_t *ci = fetch_crash_infos(); -+ if (ci == NULL) -+ return 1; - - g_ptr_array_sort_with_data(ci, &cmp_problem_data, (char *) FILENAME_LAST_OCCURRENCE); - --- -2.4.1 - diff --git a/0013-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch b/0013-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch deleted file mode 100644 index 5fec7d9..0000000 --- a/0013-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch +++ /dev/null @@ -1,589 +0,0 @@ -From 0b8955a845f7a28a090bfe07d33a0acf161526e2 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Fri, 24 Apr 2015 15:37:15 +0200 -Subject: [PATCH] abrt-auto-reporting: require rhtsupport.conf file only on - RHEL - -abrt-auto-reporting required the rhtsupport.conf on Fedora and CentOS but the conf -file do not exists in those systems. - -Resolves abrt/abrt#957 - -Signed-off-by: Matej Habrnal ---- - configure.ac | 11 +++ - doc/Makefile.am | 13 +++- - doc/abrt-auto-reporting-authenticated.txt | 106 ++++++++++++++++++++++++++++ - doc/abrt-auto-reporting-unauthenticated.txt | 71 +++++++++++++++++++ - doc/abrt-auto-reporting.txt | 106 ---------------------------- - src/daemon/abrt-auto-reporting.c | 71 ++++++++++++++----- - 6 files changed, 254 insertions(+), 124 deletions(-) - create mode 100644 doc/abrt-auto-reporting-authenticated.txt - create mode 100644 doc/abrt-auto-reporting-unauthenticated.txt - delete mode 100644 doc/abrt-auto-reporting.txt - -diff --git a/configure.ac b/configure.ac -index acd0d32..6962d2c 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -296,6 +296,17 @@ AC_ARG_ENABLE(suggest-autoreporting, - - AM_CONDITIONAL(SUGGEST_AUTOREPORTING, test "$enable_suggest_autoreporting" = "yes") - -+# Authenticated autoreporting -+ -+AC_ARG_ENABLE(authenticated-autoreporting, -+ AS_HELP_STRING([--enable-authenticated-autoreporting], -+ [enable authenticated autoreporting]), -+ [enable_authenticated_autoreporting=$enableval], -+ [enable_authenticated_autoreporting=no] -+) -+ -+AM_CONDITIONAL(AUTHENTICATED_AUTOREPORTING, test "$enable_authenticated_autoreporting" = "yes") -+ - # Make satyr use GDB or elfutils/libunwind for unwinding? - - AC_ARG_ENABLE([native-unwinder], -diff --git a/doc/Makefile.am b/doc/Makefile.am -index 6efd6d6..3e7499c 100644 ---- a/doc/Makefile.am -+++ b/doc/Makefile.am -@@ -78,6 +78,17 @@ man1_MANS = ${MAN1_TXT:%.txt=%.1} - man5_MANS = ${MAN5_TXT:%.txt=%.5} ${MAN5_PREFORMATTED} - man8_MANS = ${MAN8_TXT:%.txt=%.8} - -+MAN_SOURCE = -+MAN_SOURCE = abrt-auto-reporting-authenticated.txt -+MAN_SOURCE = abrt-auto-reporting-unauthenticated.txt -+ -+if AUTHENTICATED_AUTOREPORTING -+abrt-auto-reporting.txt: abrt-auto-reporting-authenticated.txt -+else -+abrt-auto-reporting.txt: abrt-auto-reporting-unauthenticated.txt -+endif -+ cp $< $@ -+ - %.1 %.5 %.8: %.xml - $(XMLTO_SILENT) xmlto man $< 2>&1 | sed '/Note/d' - -@@ -86,6 +97,6 @@ man8_MANS = ${MAN8_TXT:%.txt=%.8} - --conf-file ../asciidoc.conf \ - -aabrt_version=$(PACKAGE_VERSION) -o $@ $< - --EXTRA_DIST = $(MAN1_TXT) $(MAN5_TXT) $(MAN8_TXT) $(MAN5_PREFORMATTED) -+EXTRA_DIST = $(MAN1_TXT) $(MAN5_TXT) $(MAN8_TXT) $(MAN5_PREFORMATTED) $(MAN_SOURCE) - - CLEANFILES = ${MAN1_TXT:%.txt=%.1} ${MAN5_TXT:%.txt=%.5} ${MAN8_TXT:%.txt=%.8} -diff --git a/doc/abrt-auto-reporting-authenticated.txt b/doc/abrt-auto-reporting-authenticated.txt -new file mode 100644 -index 0000000..2a27945 ---- /dev/null -+++ b/doc/abrt-auto-reporting-authenticated.txt -@@ -0,0 +1,106 @@ -+abrt-auto-reporting(1) -+====================== -+ -+NAME -+---- -+abrt-auto-reporting - Get or modify the auto reporting option values -+ -+SYNOPSIS -+-------- -+'abrt-auto-reporting' [-v] [ enabled | yes | 1 | on | disabled | no | 0 | off ] -+ [ [--anonymous] | -+ [--username USERNAME [--password PASSWORD] ] | -+ [--certificate SOURCE] ] -+ -+DESCRIPTION -+----------- -+Reads the configuration from abrt.conf and saves the changes to the same file. -+ -+The changes will take effect immediately without necessity to restart any ABRT -+process and will be persistent. -+ -+'disabled':: -+ User have to report the detect problems manually -+ -+'enabled':: -+ ABRT uploads an uReport which was generated for a detected problem -+ immediately after the detection phase. -+ -+Reads and saves the authentication configuration options in -+/etc/libreport/plugins/ureport.conf and /etc/libreport/plugins/rhtsupport.conf -+ -+uReport description -+~~~~~~~~~~~~~~~~~~~ -+ABRT supports uReports for four types of crashes: crashes of C/C++ programs -+that result in a core dump, uncaught Python exceptions, uncaught Java -+exceptions and kernel oopses. -+ -+Each uReport generally contains a stack trace, or multiple stack traces in the -+case of multi-threaded C/C++ and Java programs. The stack trace only describes -+the call stack of the program at the time of the crash and does not contain -+contents of any variables. -+ -+Every uReport also contains identification of the operating system, versions of -+the RPM packages involved in the crash, and whether the program ran under a -+root user. -+ -+There are also items specific to each crash type: -+ -+C/C++ crashes:: -+ these are path to the executable and signal delivered to the program, -+ -+Python exceptions:: -+ there is the type of the exception (without the error message, which may -+ contain sensitive data), -+ -+for kernel oopses:: -+ these are list of loaded kernel modules, list of taint flags, and full text -+ of the kernel oops. -+ -+The authenticated uReports also contains *hostname* and *machineid* to enable a -+server side filtering at https://access.redhat.com/. -+ -+The authenticated uReports have the benefit of rich server replies which may -+include a solution for the submitted crash. The authentication is done using -+either Red Hat Subscription Certificates or Red Hat Customer Portal -+credentials. -+ -+'Warning': -+The full text of a kernel oops might contain information like the -+identification of the host hardware type. You should disable the autoreporting -+feature if you do not want to share this information with Red Hat. -+ -+ -+OPTIONS -+------- -+-v, --verbose:: -+ Be more verbose. Can be given multiple times. -+ -+-a, --anonymous:: -+ Turns the authentication off by clearing both 'SSLClientAuth' and 'HTTPAuth' -+ configuration options in /etc/libreport/plugins/ureport.conf -+ -+-u, --username USERNAME:: -+ Turns HTTP Authentication on by setting 'HTTPAuth' configuration option to -+ *rhts-credentials* in /etc/libreport/plugins/ureport.conf and storing -+ USERNAME and PASSWORD in /etc/libreport/plugins/rhtsupport.conf -+ Also turns the SSL Client Authentication off, because these methods cannot -+ be used together. -+ -+-p, --password PASSWORD:: -+ Password for HTTP Authentication. If not provided, a prompt asking for it -+ will be issued. -+ -+-c, --certificate SOURCE:: -+ Turns SSL Client Authentication on by setting 'SSLClientAuth' configuration -+ option to SOURCE in /etc/libreport/plugins/ureport.conf. -+ Also turns the HTTP Authentication off, because these methods cannot -+ be used together. -+ -+SEE ALSO -+-------- -+abrt.conf(5), ureport.conf(5), rhtsupport.conf(5) -+ -+AUTHORS -+------- -+* ABRT team -diff --git a/doc/abrt-auto-reporting-unauthenticated.txt b/doc/abrt-auto-reporting-unauthenticated.txt -new file mode 100644 -index 0000000..320c803 ---- /dev/null -+++ b/doc/abrt-auto-reporting-unauthenticated.txt -@@ -0,0 +1,71 @@ -+abrt-auto-reporting(1) -+====================== -+ -+NAME -+---- -+abrt-auto-reporting - Get or modify the auto reporting option values -+ -+SYNOPSIS -+-------- -+'abrt-auto-reporting' [-v] [ enabled | yes | 1 | on | disabled | no | 0 | off ] -+ -+DESCRIPTION -+----------- -+Reads the configuration from abrt.conf and saves the changes to the same file. -+ -+The changes will take effect immediately without necessity to restart any ABRT -+process and will be persistent. -+ -+'disabled':: -+ User have to report the detect problems manually -+ -+'enabled':: -+ ABRT uploads an uReport which was generated for a detected problem -+ immediately after the detection phase. -+ -+uReport description -+~~~~~~~~~~~~~~~~~~~ -+ABRT supports uReports for four types of crashes: crashes of C/C++ programs -+that result in a core dump, uncaught Python exceptions, uncaught Java -+exceptions and kernel oopses. -+ -+Each uReport generally contains a stack trace, or multiple stack traces in the -+case of multi-threaded C/C++ and Java programs. The stack trace only describes -+the call stack of the program at the time of the crash and does not contain -+contents of any variables. -+ -+Every uReport also contains identification of the operating system, versions of -+the RPM packages involved in the crash, and whether the program ran under a -+root user. -+ -+There are also items specific to each crash type: -+ -+C/C++ crashes:: -+ these are path to the executable and signal delivered to the program, -+ -+Python exceptions:: -+ there is the type of the exception (without the error message, which may -+ contain sensitive data), -+ -+for kernel oopses:: -+ these are list of loaded kernel modules, list of taint flags, and full text -+ of the kernel oops. -+ -+'Warning': -+The full text of a kernel oops might contain information like the -+identification of the host hardware type. You should disable the autoreporting -+feature if you do not want to share this information with Red Hat. -+ -+ -+OPTIONS -+------- -+-v, --verbose:: -+ Be more verbose. Can be given multiple times. -+ -+SEE ALSO -+-------- -+abrt.conf(5) -+ -+AUTHORS -+------- -+* ABRT team -diff --git a/doc/abrt-auto-reporting.txt b/doc/abrt-auto-reporting.txt -deleted file mode 100644 -index 2a27945..0000000 ---- a/doc/abrt-auto-reporting.txt -+++ /dev/null -@@ -1,106 +0,0 @@ --abrt-auto-reporting(1) --====================== -- --NAME ------ --abrt-auto-reporting - Get or modify the auto reporting option values -- --SYNOPSIS ---------- --'abrt-auto-reporting' [-v] [ enabled | yes | 1 | on | disabled | no | 0 | off ] -- [ [--anonymous] | -- [--username USERNAME [--password PASSWORD] ] | -- [--certificate SOURCE] ] -- --DESCRIPTION ------------- --Reads the configuration from abrt.conf and saves the changes to the same file. -- --The changes will take effect immediately without necessity to restart any ABRT --process and will be persistent. -- --'disabled':: -- User have to report the detect problems manually -- --'enabled':: -- ABRT uploads an uReport which was generated for a detected problem -- immediately after the detection phase. -- --Reads and saves the authentication configuration options in --/etc/libreport/plugins/ureport.conf and /etc/libreport/plugins/rhtsupport.conf -- --uReport description --~~~~~~~~~~~~~~~~~~~ --ABRT supports uReports for four types of crashes: crashes of C/C++ programs --that result in a core dump, uncaught Python exceptions, uncaught Java --exceptions and kernel oopses. -- --Each uReport generally contains a stack trace, or multiple stack traces in the --case of multi-threaded C/C++ and Java programs. The stack trace only describes --the call stack of the program at the time of the crash and does not contain --contents of any variables. -- --Every uReport also contains identification of the operating system, versions of --the RPM packages involved in the crash, and whether the program ran under a --root user. -- --There are also items specific to each crash type: -- --C/C++ crashes:: -- these are path to the executable and signal delivered to the program, -- --Python exceptions:: -- there is the type of the exception (without the error message, which may -- contain sensitive data), -- --for kernel oopses:: -- these are list of loaded kernel modules, list of taint flags, and full text -- of the kernel oops. -- --The authenticated uReports also contains *hostname* and *machineid* to enable a --server side filtering at https://access.redhat.com/. -- --The authenticated uReports have the benefit of rich server replies which may --include a solution for the submitted crash. The authentication is done using --either Red Hat Subscription Certificates or Red Hat Customer Portal --credentials. -- --'Warning': --The full text of a kernel oops might contain information like the --identification of the host hardware type. You should disable the autoreporting --feature if you do not want to share this information with Red Hat. -- -- --OPTIONS --------- ---v, --verbose:: -- Be more verbose. Can be given multiple times. -- ---a, --anonymous:: -- Turns the authentication off by clearing both 'SSLClientAuth' and 'HTTPAuth' -- configuration options in /etc/libreport/plugins/ureport.conf -- ---u, --username USERNAME:: -- Turns HTTP Authentication on by setting 'HTTPAuth' configuration option to -- *rhts-credentials* in /etc/libreport/plugins/ureport.conf and storing -- USERNAME and PASSWORD in /etc/libreport/plugins/rhtsupport.conf -- Also turns the SSL Client Authentication off, because these methods cannot -- be used together. -- ---p, --password PASSWORD:: -- Password for HTTP Authentication. If not provided, a prompt asking for it -- will be issued. -- ---c, --certificate SOURCE:: -- Turns SSL Client Authentication on by setting 'SSLClientAuth' configuration -- option to SOURCE in /etc/libreport/plugins/ureport.conf. -- Also turns the HTTP Authentication off, because these methods cannot -- be used together. -- --SEE ALSO ---------- --abrt.conf(5), ureport.conf(5), rhtsupport.conf(5) -- --AUTHORS --------- --* ABRT team -diff --git a/src/daemon/abrt-auto-reporting.c b/src/daemon/abrt-auto-reporting.c -index 0fffeb6..b608c9b 100644 ---- a/src/daemon/abrt-auto-reporting.c -+++ b/src/daemon/abrt-auto-reporting.c -@@ -64,6 +64,7 @@ set_abrt_reporting(map_string_t *conf, const char *opt_value) - return 1; - } - -+#if AUTHENTICATED_AUTOREPORTING != 0 - static int - set_ureport_http_auth(map_string_t *conf, const char *opt_value) - { -@@ -134,6 +135,7 @@ set_rhts_credentials(map_string_t *conf, const char *username, const char *passw - /* No changes needed -> success */ - return 1; - } -+#endif - - static const char * - get_abrt_reporting(map_string_t *conf) -@@ -143,6 +145,7 @@ get_abrt_reporting(map_string_t *conf) - return REPORTING_STATES[index][0]; - } - -+#if AUTHENTICATED_AUTOREPORTING != 0 - static const char * - get_ureport_http_auth(map_string_t *conf) - { -@@ -154,6 +157,7 @@ get_ureport_client_auth(map_string_t *conf) - { - return get_map_string_item_or_NULL(conf, UREPORT_CLIENT_AUTH_OPTION); - } -+#endif - - int main(int argc, char *argv[]) - { -@@ -171,57 +175,78 @@ int main(int argc, char *argv[]) - textdomain(PACKAGE); - #endif - -+#define PROGRAM_USAGE_MIDDLE_PART \ -+ "\n" \ -+ "Get or modify a value of the auto-reporting option. The changes will take\n" \ -+ "effect immediately and will be persistent.\n" \ -+ "\n" \ -+ ""STATE_MANUAL":\n" \ -+ "User have to report the detect problems manually\n" \ -+ "\n" \ -+ ""STATE_AUTO":\n" \ -+ "ABRT uploads an uReport which was generated for a detected problem\n" \ -+ "immediately after the detection phase. uReport generally contains a stack\n" \ -+ "trace which only describes the call stack of the program at the time of the\n" \ -+ "crash and does not contain contents of any variables. Every uReport also\n" \ -+ "contains identification of the operating system, versions of the RPM packages\n" \ -+ "involved in the crash, and whether the program ran under a root user.\n" \ -+ "\n" -+ - abrt_init(argv); -+#if AUTHENTICATED_AUTOREPORTING != 0 - const char *program_usage_string = _( - "& [ "STATE_MANUAL" | "STATE_AUTO" | yes | no | 1 | 0 ] \\\n" - " [[--anonymous] | [--username USERNAME [--password PASSWORD]] | [--certificate SOURCE]]\n" -- "\n" -- "Get or modify a value of the auto-reporting option. The changes will take\n" -- "effect immediately and will be persistent.\n" -- "\n" -- ""STATE_MANUAL":\n" -- "User have to report the detect problems manually\n" -- "\n" -- ""STATE_AUTO":\n" -- "ABRT uploads an uReport which was generated for a detected problem\n" -- "immediately after the detection phase. uReport generally contains a stack\n" -- "trace which only describes the call stack of the program at the time of the\n" -- "crash and does not contain contents of any variables. Every uReport also\n" -- "contains identification of the operating system, versions of the RPM packages\n" -- "involved in the crash, and whether the program ran under a root user.\n" -- "\n" -+ PROGRAM_USAGE_MIDDLE_PART - "See abrt-auto-reporting(1), reporter-ureport(1) and reporter-rhtsupport(1)\n" - "for more details.\n" - ); -+#else -+ const char *program_usage_string = _( -+ "& [ "STATE_MANUAL" | "STATE_AUTO" | yes | no | 1 | 0 ]\n" -+ PROGRAM_USAGE_MIDDLE_PART -+ "See abrt-auto-reporting(1) and reporter-ureport(1) for more details.\n" -+ ); -+#endif - - enum { - OPT_v = 1 << 0, -+#if AUTHENTICATED_AUTOREPORTING != 0 - OPT_a = 1 << 1, - OPT_u = 1 << 2, - OPT_p = 1 << 3, - OPT_c = 1 << 4, -+#endif - }; - -+#if AUTHENTICATED_AUTOREPORTING != 0 - int anonymous = 0; - const char *username = NULL; - const char *password = NULL; - const char *certificate = NULL; -+#endif - - /* Keep enum above and order of options below in sync! */ - struct options program_options[] = { - OPT__VERBOSE(&g_verbose), -+#if AUTHENTICATED_AUTOREPORTING != 0 - OPT_BOOL ( 'a', "anonymous", &anonymous, _("Turns the authentication off")), - OPT_STRING( 'u', "username", &username, "USERNAME", _("Red Hat Support user name")), - OPT_STRING( 'p', "password", &password, "PASSWORD", _("Red Hat Support password, if not given, a prompt for it will be issued")), - OPT_STRING( 'c', "certificate", &certificate, "SOURCE", _("uReport SSL certificate paths or certificate type")), -+#endif - OPT_END() - }; - -- const unsigned opts = parse_opts(argc, argv, program_options, program_usage_string); -+#if AUTHENTICATED_AUTOREPORTING != 0 -+ const unsigned opts = -+#endif -+ parse_opts(argc, argv, program_options, program_usage_string); - - argv += optind; - argc -= optind; - -+#if AUTHENTICATED_AUTOREPORTING != 0 - if ((opts & OPT_p) && !(opts & OPT_u)) - { - error_msg(_("You also need to specify --username for --password")); -@@ -246,6 +271,7 @@ int main(int argc, char *argv[]) - show_usage_and_die(program_usage_string, program_options); - } - -+#endif - if (argc > 1) - { - error_msg(_("Invalid number of arguments")); -@@ -275,20 +301,25 @@ int main(int argc, char *argv[]) - int exit_code = EXIT_FAILURE; - - map_string_t *conf = new_map_string(); -+#if AUTHENTICATED_AUTOREPORTING != 0 - map_string_t *rhts_conf = new_map_string(); - map_string_t *rhts_conf_bck = NULL; -+#endif - map_string_t *ureport_conf = new_map_string(); - map_string_t *ureport_conf_bck = NULL; - - if (!load_abrt_conf_file(CONF_NAME, conf)) - goto finito; - -+#if AUTHENTICATED_AUTOREPORTING != 0 - if (!load_plugin_conf_file(RHTS_NAME, rhts_conf, false)) - goto finito; -+#endif - - if (!load_plugin_conf_file(UREPORT_NAME, ureport_conf, false)) - goto finito; - -+#if AUTHENTICATED_AUTOREPORTING != 0 - if ((opts & OPT_a)) - { - ureport_conf_bck = clone_map_string(ureport_conf); -@@ -334,11 +365,13 @@ int main(int argc, char *argv[]) - goto finito; - } - -+#endif - if (argc == 0) - { - printf("%s", get_abrt_reporting(conf)); - exit_code = EXIT_SUCCESS; - -+#if AUTHENTICATED_AUTOREPORTING != 0 - if (g_verbose >= 1) - { - const char *tmp = get_ureport_http_auth(ureport_conf); -@@ -350,7 +383,7 @@ int main(int argc, char *argv[]) - else - printf(" %s", _("anonymous auto reporting")); - } -- -+#endif - putchar('\n'); - - goto finito; -@@ -363,16 +396,20 @@ int main(int argc, char *argv[]) - if (ureport_conf_bck != NULL) - save_plugin_conf_file(UREPORT_NAME, ureport_conf_bck); - -+#if AUTHENTICATED_AUTOREPORTING != 0 - if (rhts_conf_bck != NULL) - save_plugin_conf_file(RHTS_NAME, rhts_conf_bck); -+#endif - } - - - finito: - free_map_string(ureport_conf); - free_map_string(ureport_conf_bck); -+#if AUTHENTICATED_AUTOREPORTING != 0 - free_map_string(rhts_conf); - free_map_string(rhts_conf_bck); -+#endif - free_map_string(conf); - return exit_code; - } --- -2.4.1 - diff --git a/0015-abrt-action-list-dsos-do-not-decode-not-existing-obj.patch b/0015-abrt-action-list-dsos-do-not-decode-not-existing-obj.patch deleted file mode 100644 index c1a15f4..0000000 --- a/0015-abrt-action-list-dsos-do-not-decode-not-existing-obj.patch +++ /dev/null @@ -1,37 +0,0 @@ -From c17cb1999357d9be51b8118661a8f35569c66dd0 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Thu, 14 May 2015 16:27:02 +0200 -Subject: [PATCH] abrt-action-list-dsos: do not decode not existing object - -If you build a package using 'make rpm', there is no vendor param in it. -So this is the reason why the Decode method was called on None object. - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-action-list-dsos | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-action-list-dsos b/src/plugins/abrt-action-list-dsos -index f4a1536..a3078a5 100644 ---- a/src/plugins/abrt-action-list-dsos -+++ b/src/plugins/abrt-action-list-dsos -@@ -82,10 +82,15 @@ if __name__ == "__main__": - if outname: - outfile = xopen(outname, "w") - outname = None -+ -+ vendor = h[rpm.RPMTAG_VENDOR] -+ if vendor != None: -+ verdor = vendor.decode('utf-8') -+ - outfile.write("%s %s (%s) %s\n" % - (path, - h[rpm.RPMTAG_NEVRA].decode('utf-8'), -- h[rpm.RPMTAG_VENDOR].decode('utf-8'), -+ verdor, - h[rpm.RPMTAG_INSTALLTIME]) - ) - --- -2.4.1 - diff --git a/0016-doc-polkit-Spelling-grammar-fixes.patch b/0016-doc-polkit-Spelling-grammar-fixes.patch deleted file mode 100644 index ef8b8a4..0000000 --- a/0016-doc-polkit-Spelling-grammar-fixes.patch +++ /dev/null @@ -1,143 +0,0 @@ -From e3df315b18f833bb44eb8aadeefc2ad932f39f97 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Ville=20Skytt=C3=A4?= -Date: Tue, 19 May 2015 09:29:28 +0300 -Subject: [PATCH] doc, polkit: Spelling/grammar fixes - ---- - doc/design | 6 +++--- - doc/problems-service/org.freedesktop.Problems.xml.in | 4 ++-- - doc/project/abrt.tex | 14 +++++++------- - src/dbus/abrt_polkit.policy | 4 ++-- - 4 files changed, 14 insertions(+), 14 deletions(-) - -diff --git a/doc/design b/doc/design -index a9ce040..f214caf 100644 ---- a/doc/design -+++ b/doc/design -@@ -37,7 +37,7 @@ to a dedicated server(s) for processing (backtrace, etc). - - Design - --Abrt design should be flexible enough to accomodate all -+Abrt design should be flexible enough to accommodate all - of the above usage scenarios. - - Since currently we do not know how to dump oops on demand, -@@ -70,7 +70,7 @@ uses inotify to watch for crashes. Instead the programs which create crashes - can trigger their initial ("post-create") processing themselves] - - Crashes conceptually go through "events" in their lives. --Apart from "post-create" event decribed above, they may have -+Apart from "post-create" event described above, they may have - "analyze" event, "report[_FOO]" events, - and arbitrarily-named other events. - abrt-handle-crashdump tool can be used to "run" an event on a directory, -@@ -124,7 +124,7 @@ Done: - * Make abrt-gui start abrtd on demand, so that abrt-gui can be started - even if abrtd does not run at the moment. - * make kerneloops plugin into separate daemon (convert it to a hook -- and get rid of "cron plugins" which are wrong idea since the begining) -+ and get rid of "cron plugins" which are wrong idea since the beginning) - * make C/C++ hook to be started by init script - * add "include FILE" feature to abrt_event.conf - -diff --git a/doc/problems-service/org.freedesktop.Problems.xml.in b/doc/problems-service/org.freedesktop.Problems.xml.in -index 118d4b2..b791bdb 100644 ---- a/doc/problems-service/org.freedesktop.Problems.xml.in -+++ b/doc/problems-service/org.freedesktop.Problems.xml.in -@@ -53,7 +53,7 @@ - - uid - -- Only a user with root priviledges can pass this field. For all other users the field is filled by caller's uid. -+ Only a user with root privileges can pass this field. For all other users the field is filled by caller's uid. - - - -@@ -309,7 +309,7 @@ for prblmid in problems.GetProblems(): - - - -- Beginnig of required time range. -+ Beginning of required time range. - - - -diff --git a/doc/project/abrt.tex b/doc/project/abrt.tex -index 9e7724e..03b5705 100644 ---- a/doc/project/abrt.tex -+++ b/doc/project/abrt.tex -@@ -194,7 +194,7 @@ information regarding their interests, involvement. - {\textbf{Package Maintainers} - \nodepart{second} \vspace{-5mm} - \begin{itemize} \itemsep1pt \parskip0pt \parsep0pt -- \item Fixing most frequently occured bugs -+ \item Fixing most frequently occurred bugs - \item Fixing bugs where the bug is well described - \end{itemize} - }; -@@ -265,7 +265,7 @@ Highlight important reports - In-depth bug fixing - ------------------- - --Collect core-dump for frequently occured reports -+Collect core-dump for frequently occurred reports - - Retrace coredumps on demand - -@@ -570,7 +570,7 @@ components. - Red Hat Bugzilla. - \end{description} - \item[Data Storage] Database and file storage for data required for -- the analysis, evaluation, adn processing of reports and problems. -+ the analysis, evaluation, and processing of reports and problems. - \begin{description} - \item[LLVM bitcode] We store LLVM bitcode of every binary and - dynamic library compiled from C/C++ source code. -@@ -582,8 +582,8 @@ components. - \begin{tikzpicture} - \umlclass[x=-4,y=0]{problem}{ - id : PRIMARY KEY \\ --first occurence : TIMESTAMP NOT NULL \\ --last occurence : TIMESTAMP NOT NULL \\ -+first occurrence : TIMESTAMP NOT NULL \\ -+last occurrence : TIMESTAMP NOT NULL \\ - }{} - - \umlclass[x=4,y=-2]{problem report}{ -@@ -616,8 +616,8 @@ Part of reports is populated from $\mu$reports. - \umlclass[x=-4,y=0]{report}{ - id : PRIMARY KEY AUTOINCREMENT \\ - type : ENUM (USERSPACE, KERNEL, PYTHON, SELINUX) \\ --first occurence : TIMESTAMP \\ --last occurence : TIMESTAMP \\ -+first occurrence : TIMESTAMP \\ -+last occurrence : TIMESTAMP \\ - count : INT \\ - component id : FOREIGN KEY \\ - problem id : FOREIGN KEY -diff --git a/src/dbus/abrt_polkit.policy b/src/dbus/abrt_polkit.policy -index a3425d9..2c75233 100644 ---- a/src/dbus/abrt_polkit.policy -+++ b/src/dbus/abrt_polkit.policy -@@ -17,7 +17,7 @@ Copyright (c) 2012 ABRT Team - - - Get problems from all users -- Reading others problems requires authentication -+ Reading other users' problems requires authentication - - auth_admin - auth_admin_keep -@@ -28,7 +28,7 @@ Copyright (c) 2012 ABRT Team - - - Set value of configuration properties -- Update configuration values reuquires authentication -+ Updating configuration values requires authentication - - auth_admin - auth_admin_keep --- -2.4.1 - diff --git a/0018-applet-migrate-Autoreporting-options-to-GSettings.patch b/0018-applet-migrate-Autoreporting-options-to-GSettings.patch deleted file mode 100644 index db67e55..0000000 --- a/0018-applet-migrate-Autoreporting-options-to-GSettings.patch +++ /dev/null @@ -1,123 +0,0 @@ -From 70b2e6981b667d5cfb31f894527e16f3eeed14c9 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Fri, 15 May 2015 14:45:40 +0200 -Subject: [PATCH] applet: migrate Autoreporting options to GSettings - -Read the option's value from the app's configuration file, update the -gnome setting if needed and remove the option from the app's -configuration file in order to skip the migration at next start. - -Related to #966 - -Signed-off-by: Jakub Filak ---- - src/applet/applet.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++++----- - 1 file changed, 55 insertions(+), 5 deletions(-) - -diff --git a/src/applet/applet.c b/src/applet/applet.c -index 4df69fc..b534839 100644 ---- a/src/applet/applet.c -+++ b/src/applet/applet.c -@@ -36,6 +36,10 @@ - #include "libabrt.h" - #include "problem_api.h" - -+#define APP_NAME "abrt-applet" -+#define GS_SCHEMA_ID_PRIVACY "org.gnome.desktop.privacy" -+#define GS_PRIVACY_OPT_AUTO_REPORTING "report-technical-problems" -+ - /* libnotify action keys */ - #define A_REPORT_REPORT "REPORT" - #define A_RESTART_APPLICATION "RESTART" -@@ -55,15 +59,60 @@ static bool is_autoreporting_enabled(void) - GSettings *settings; - gboolean ret; - -- settings = g_settings_new ("org.gnome.desktop.privacy"); -- ret = g_settings_get_boolean (settings, "report-technical-problems"); -+ settings = g_settings_new (GS_SCHEMA_ID_PRIVACY); -+ ret = g_settings_get_boolean (settings, GS_PRIVACY_OPT_AUTO_REPORTING); - g_object_unref (settings); - return ret; - } - -+static void migrate_auto_reporting_to_gsettings(void) -+{ -+#define OPT_NAME "AutoreportingEnabled" -+ map_string_t *settings = new_map_string(); -+ if (!load_app_conf_file(APP_NAME, settings)) -+ goto finito; -+ -+ /* Silently ignore not configured options */ -+ int sv_logmode = logmode; -+ /* but only if we run in silent mode (no -v on command line) */ -+ logmode = g_verbose == 0 ? 0 : sv_logmode; -+ -+ int auto_reporting = 0; -+ int configured = try_get_map_string_item_as_bool(settings, OPT_NAME, &auto_reporting); -+ -+ logmode = sv_logmode; -+ -+ if (!configured) -+ goto finito; -+ -+ /* Enable the GS option if AutoreportingEnabled is true because the user -+ * turned the Autoreporting in abrt-applet in a before GS. -+ * -+ * Do not disable the GS option if AutoreportingEvent is false because the -+ * GS option is false by default, thus disabling would revert the user's -+ * decision to automatically report technical problems. -+ */ -+ if (auto_reporting) -+ { -+ GSettings *settings = g_settings_new(GS_SCHEMA_ID_PRIVACY); -+ g_settings_set_boolean(settings, GS_PRIVACY_OPT_AUTO_REPORTING, TRUE); -+ g_object_unref(settings); -+ } -+ -+ remove_map_string_item(settings, OPT_NAME); -+ save_app_conf_file(APP_NAME, settings); -+ -+ log("Successfully migrated "APP_NAME":"OPT_NAME" to "GS_SCHEMA_ID_PRIVACY":"GS_PRIVACY_OPT_AUTO_REPORTING); -+ -+#undef OPT_NAME -+finito: -+ free_map_string(settings); -+ return; -+} -+ - static const char *get_autoreport_event_name(void) - { -- load_user_settings("abrt-applet"); -+ load_user_settings(APP_NAME); - const char *configured = get_user_setting("AutoreportingEvent"); - return configured ? configured : g_settings_autoreporting_event; - } -@@ -554,7 +603,7 @@ static NotifyNotification *new_warn_notification(const char *body) - - notify_notification_set_urgency(notification, NOTIFY_URGENCY_NORMAL); - notify_notification_set_timeout(notification, NOTIFY_EXPIRES_DEFAULT); -- notify_notification_set_hint(notification, "desktop-entry", g_variant_new_string("abrt-applet")); -+ notify_notification_set_hint(notification, "desktop-entry", g_variant_new_string(APP_NAME)); - - return notification; - } -@@ -1147,13 +1196,14 @@ int main(int argc, char** argv) - /*unsigned opts =*/ parse_opts(argc, argv, program_options, program_usage_string); - - migrate_to_xdg_dirs(); -+ migrate_auto_reporting_to_gsettings(); - - export_abrt_envvars(0); - msg_prefix = g_progname; - - load_abrt_conf(); - load_event_config_data(); -- load_user_settings("abrt-applet"); -+ load_user_settings(APP_NAME); - - /* Initialize our (dbus_abrt) machinery by filtering - * for signals: --- -2.4.1 - diff --git a/0019-config-UI-read-glade-from-a-local-file-first.patch b/0019-config-UI-read-glade-from-a-local-file-first.patch deleted file mode 100644 index 4381744..0000000 --- a/0019-config-UI-read-glade-from-a-local-file-first.patch +++ /dev/null @@ -1,39 +0,0 @@ -From eb1e45a1e8070bee6ba44f325f7dd0ca8900dc77 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Sat, 16 May 2015 06:46:17 +0200 -Subject: [PATCH] config UI: read glade from a local file first - -If you read the system file first, you won't be able to the application -from a development directory. - -Signed-off-by: Jakub Filak ---- - src/configuration-gui/abrt-config-widget.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c -index 664180d..2c75429 100644 ---- a/src/configuration-gui/abrt-config-widget.c -+++ b/src/configuration-gui/abrt-config-widget.c -@@ -221,14 +221,14 @@ abrt_config_widget_init(AbrtConfigWidget *self) - self->priv->builder = gtk_builder_new(); - gtk_builder_set_translation_domain(self->priv->builder, GETTEXT_PACKAGE); - -- gtk_builder_add_from_file(self->priv->builder, ABRT_UI_DIR "/" UI_FILE_NAME, &error); -+ gtk_builder_add_from_file(self->priv->builder, UI_FILE_NAME, &error); - if(error != NULL) { -- g_warning("Failed to load '%s': %s", ABRT_UI_DIR "/" UI_FILE_NAME, error->message); -+ log_debug("Failed to load '%s': %s", UI_FILE_NAME, error->message); - g_error_free(error); - error = NULL; -- gtk_builder_add_from_file(self->priv->builder, UI_FILE_NAME, &error); -+ gtk_builder_add_from_file(self->priv->builder, ABRT_UI_DIR "/" UI_FILE_NAME, &error); - if(error != NULL) { -- g_warning("Failed to load '%s': %s", UI_FILE_NAME, error->message); -+ g_warning("Failed to load '%s': %s", ABRT_UI_DIR "/" UI_FILE_NAME, error->message); - g_error_free(error); - return; - } --- -2.4.1 - diff --git a/0020-config-UI-enable-options-without-config-files.patch b/0020-config-UI-enable-options-without-config-files.patch deleted file mode 100644 index 5dd83fd..0000000 --- a/0020-config-UI-enable-options-without-config-files.patch +++ /dev/null @@ -1,55 +0,0 @@ -From 5d544028c3dd3f4af9d4da83a4c57d2c05c09014 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Sat, 16 May 2015 06:51:09 +0200 -Subject: [PATCH] config UI: enable options without config files - -Signed-off-by: Jakub Filak ---- - src/configuration-gui/abrt-config-widget.c | 14 ++++++++++++-- - 1 file changed, 12 insertions(+), 2 deletions(-) - -diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c -index 2c75429..8bfc269 100644 ---- a/src/configuration-gui/abrt-config-widget.c -+++ b/src/configuration-gui/abrt-config-widget.c -@@ -175,10 +175,13 @@ on_switch_activate(GObject *object, - GParamSpec *spec, - AbrtConfigWidget *config) - { -+ AbrtConfigWidgetOption *option = g_object_get_data(G_OBJECT(object), "abrt-option"); -+ if (option->config == NULL) -+ return; -+ - const gboolean state = gtk_switch_get_active(GTK_SWITCH(object)); - const char *const val = state ? "yes" : "no"; - -- AbrtConfigWidgetOption *option = g_object_get_data(G_OBJECT(object), "abrt-option"); - log_debug("%s : %s", option->name, val); - abrt_app_configuration_set_value(option->config, option->name, val); - abrt_app_configuration_save(option->config); -@@ -191,7 +194,11 @@ update_option_current_value(AbrtConfigWidget *self, enum AbrtOptions opid) - assert((opid >= _ABRT_OPT_BEGIN_ && opid < _ABRT_OPT_END_) || !"Out of range Option ID value"); - - AbrtConfigWidgetOption *option = &(self->priv->options[opid]); -- const char *val = abrt_app_configuration_get_value(option->config, option->name); -+ -+ const char *val = NULL; -+ if (option->config != NULL) -+ val = abrt_app_configuration_get_value(option->config, option->name); -+ - option->current_value = val ? string_to_bool(val) : option->default_value; - } - -@@ -209,6 +216,9 @@ connect_switch_with_option(AbrtConfigWidget *self, enum AbrtOptions opid, const - g_object_set_data(G_OBJECT(gsw), "abrt-option", option); - g_signal_connect(G_OBJECT(gsw), "notify::active", - G_CALLBACK(on_switch_activate), self); -+ -+ if (option->config == NULL) -+ gtk_widget_set_sensitive(GTK_WIDGET(gsw), FALSE); - } - - static void --- -2.4.1 - diff --git a/0021-config-UI-Automatic-reporting-from-GSettings.patch b/0021-config-UI-Automatic-reporting-from-GSettings.patch deleted file mode 100644 index 29a8abd..0000000 --- a/0021-config-UI-Automatic-reporting-from-GSettings.patch +++ /dev/null @@ -1,602 +0,0 @@ -From abdedafd3a530ad4baa992010a3cfc87645d98d1 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Sat, 16 May 2015 06:51:37 +0200 -Subject: [PATCH] config UI: Automatic reporting from GSettings - -If Privacy panels exists: - Make the widget insensitive because the user can only read its value. - Add a button launching Privacy panel. -Else: - Read/write the GSettings and show a warning about modifying the - GSettings. - -Signed-off-by: Jakub Filak ---- - po/POTFILES.in | 1 + - src/configuration-gui/abrt-config-widget.c | 201 +++++++++++++++++++++++-- - src/configuration-gui/abrt-config-widget.glade | 82 ++++------ - 3 files changed, 217 insertions(+), 67 deletions(-) - -diff --git a/po/POTFILES.in b/po/POTFILES.in -index 0da1396..8c31438 100644 ---- a/po/POTFILES.in -+++ b/po/POTFILES.in -@@ -3,6 +3,7 @@ - # Please keep this file sorted alphabetically. - src/applet/abrt-applet.desktop.in - src/applet/applet.c -+src/configuration-gui/abrt-config-widget.c - src/configuration-gui/abrt-config-widget.glade - src/configuration-gui/system-config-abrt.c - src/configuration-gui/main.c -diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c -index 8bfc269..c9b0b02 100644 ---- a/src/configuration-gui/abrt-config-widget.c -+++ b/src/configuration-gui/abrt-config-widget.c -@@ -21,6 +21,8 @@ - #endif - - #include "abrt-config-widget.h" -+#include -+#include - - #include "libabrt.h" - #include -@@ -32,19 +34,36 @@ - - #define UI_FILE_NAME "abrt-config-widget.glade" - -+/* AbrtConfigWidgetPrivate: -+ * + AbrtConfigWidgetOption == "abrt-option" of GtkSwitch -+ * + AbrtConfigWidgetOption == "abrt-option" of GtkSwitch -+ * + ... -+ * -+ * + AbrtAppConfiguration == config of AbrtConfigWidgetOption -+ * + AbrtAppConfiguration == config of AbrtConfigWidgetOption -+ * + ... -+ */ -+ -+/* This structure represents either an ABRT configuration file or a GSettings -+ * schema. -+ */ - typedef struct { -- char *app_name; -- map_string_t *settings; -+ char *app_name; ///< e.g abrt-applet, org.gnome.desktop.privacy -+ map_string_t *settings; ///< ABRT configuration file -+ GSettings *glib_settings; ///< GSettings - } AbrtAppConfiguration; - -+/* This structure represents a single switch. -+ */ - typedef struct { -- const char *name; -+ const char *name; ///< e.g. ask_steal_dir, report-technical-problems - GtkSwitch *widget; - gboolean default_value; - gboolean current_value; - AbrtAppConfiguration *config; - } AbrtConfigWidgetOption; - -+/* Each configuration option has its own number. */ - enum AbrtOptions - { - _ABRT_OPT_BEGIN_, -@@ -60,11 +79,15 @@ enum AbrtOptions - _ABRT_OPT_END_, - }; - -+/* This structure holds private data of AbrtConfigWidget -+ */ - struct AbrtConfigWidgetPrivate { - GtkBuilder *builder; - AbrtAppConfiguration *report_gtk_conf; - AbrtAppConfiguration *abrt_applet_conf; -+ AbrtAppConfiguration *privacy_gsettings; - -+ /* Static array for all switches */ - AbrtConfigWidgetOption options[_ABRT_OPT_END_]; - }; - -@@ -79,6 +102,8 @@ static guint s_signals[SN_LAST_SIGNAL] = { 0 }; - - static void abrt_config_widget_finalize(GObject *object); - -+/* New ABRT configuration file wrapper -+ */ - static AbrtAppConfiguration * - abrt_app_configuration_new(const char *app_name) - { -@@ -86,6 +111,7 @@ abrt_app_configuration_new(const char *app_name) - - conf->app_name = xstrdup(app_name); - conf->settings = new_map_string(); -+ conf->glib_settings = NULL; - - if(!load_app_conf_file(conf->app_name, conf->settings)) { - g_warning("Failed to load config for '%s'", conf->app_name); -@@ -94,22 +120,50 @@ abrt_app_configuration_new(const char *app_name) - return conf; - } - -+/* New GSettings wrapper -+ */ -+static AbrtAppConfiguration * -+abrt_app_configuration_new_glib(const char *schema) -+{ -+ AbrtAppConfiguration *conf = xmalloc(sizeof(*conf)); -+ -+ conf->app_name = xstrdup(schema); -+ conf->settings = NULL; -+ conf->glib_settings = g_settings_new(conf->app_name); -+ -+ return conf; -+} -+ - static void - abrt_app_configuration_set_value(AbrtAppConfiguration *conf, const char *name, const char *value) - { -- set_app_user_setting(conf->settings, name, value); -+ if (conf->settings) -+ set_app_user_setting(conf->settings, name, value); -+ else if (conf->glib_settings) -+ g_settings_set_boolean(conf->glib_settings, name, string_to_bool(value)); -+ else -+ assert(!"BUG: not properly initialized AbrtAppConfiguration"); - } - - static const char * - abrt_app_configuration_get_value(AbrtAppConfiguration *conf, const char *name) - { -- return get_app_user_setting(conf->settings, name); -+ if (conf->settings) -+ return get_app_user_setting(conf->settings, name); -+ -+ if (conf->glib_settings) -+ return g_settings_get_boolean(conf->glib_settings, name) ? "yes" : "no"; -+ -+ assert(!"BUG: not properly initialized AbrtAppConfiguration"); - } - - static void - abrt_app_configuration_save(AbrtAppConfiguration *conf) - { -- save_app_conf_file(conf->app_name, conf->settings); -+ if (conf->settings) -+ save_app_conf_file(conf->app_name, conf->settings); -+ -+ /* No need to save GSettings because changes are applied instantly */ - } - - static void -@@ -121,8 +175,17 @@ abrt_app_configuration_free(AbrtAppConfiguration *conf) - free(conf->app_name); - conf->app_name = (void *)0xDEADBEAF; - -- free_map_string(conf->settings); -- conf->settings = (void *)0xDEADBEAF; -+ if (conf->settings) -+ { -+ free_map_string(conf->settings); -+ conf->settings = (void *)0xDEADBEAF; -+ } -+ -+ if (conf->glib_settings) -+ { -+ g_object_unref(conf->glib_settings); -+ conf->glib_settings = (void *)0xDEADBEAF; -+ } - } - - static void -@@ -161,6 +224,9 @@ abrt_config_widget_finalize(GObject *object) - abrt_app_configuration_free(self->priv->abrt_applet_conf); - self->priv->abrt_applet_conf = NULL; - -+ abrt_app_configuration_free(self->priv->privacy_gsettings); -+ self->priv->privacy_gsettings = NULL; -+ - G_OBJECT_CLASS(abrt_config_widget_parent_class)->finalize(object); - } - -@@ -217,8 +283,31 @@ connect_switch_with_option(AbrtConfigWidget *self, enum AbrtOptions opid, const - g_signal_connect(G_OBJECT(gsw), "notify::active", - G_CALLBACK(on_switch_activate), self); - -- if (option->config == NULL) -- gtk_widget_set_sensitive(GTK_WIDGET(gsw), FALSE); -+ /* If the option has no config, make the corresponding insensitive. */ -+ gtk_widget_set_sensitive(GTK_WIDGET(gsw), option->config != NULL); -+} -+ -+static void -+pp_launcher_clicked(GtkButton *launcher, gpointer *unused_data) -+{ -+ GDesktopAppInfo *app = g_object_get_data(G_OBJECT(launcher), "launched-app"); -+ GError *err = NULL; -+ if (!g_app_info_launch(G_APP_INFO(app), NULL, NULL, &err)) -+ { -+ perror_msg("Could not launch '%s': %s", -+ g_desktop_app_info_get_filename(G_DESKTOP_APP_INFO (app)), -+ err->message); -+ } -+} -+ -+static void -+os_release_callback(char *key, char *value, void *data) -+{ -+ if (strcmp(key, "PRIVACY_POLICY") == 0) -+ *(char **)data = value; -+ else -+ free(value); -+ free(key); - } - - static void -@@ -249,6 +338,7 @@ abrt_config_widget_init(AbrtConfigWidget *self) - - self->priv->report_gtk_conf = abrt_app_configuration_new("report-gtk"); - self->priv->abrt_applet_conf = abrt_app_configuration_new("abrt-applet"); -+ self->priv->privacy_gsettings = abrt_app_configuration_new_glib("org.gnome.desktop.privacy"); - - /* Initialize options */ - /* report-gtk */ -@@ -259,15 +349,98 @@ abrt_config_widget_init(AbrtConfigWidget *self) - self->priv->options[ABRT_OPT_UPLOAD_COREDUMP].name = "abrt_analyze_smart_ask_upload_coredump"; - self->priv->options[ABRT_OPT_UPLOAD_COREDUMP].default_value = TRUE; - self->priv->options[ABRT_OPT_UPLOAD_COREDUMP].config = self->priv->report_gtk_conf; -- - self->priv->options[ABRT_OPT_PRIVATE_TICKET].name = CREATE_PRIVATE_TICKET; - self->priv->options[ABRT_OPT_PRIVATE_TICKET].default_value = FALSE; - self->priv->options[ABRT_OPT_PRIVATE_TICKET].config = self->priv->report_gtk_conf; - - /* abrt-applet */ -- self->priv->options[ABRT_OPT_SEND_UREPORT].name = "AutoreportingEnabled"; -- self->priv->options[ABRT_OPT_SEND_UREPORT].default_value = g_settings_autoreporting; -- self->priv->options[ABRT_OPT_SEND_UREPORT].config = self->priv->abrt_applet_conf; -+ self->priv->options[ABRT_OPT_SEND_UREPORT].name = "report-technical-problems"; -+ self->priv->options[ABRT_OPT_SEND_UREPORT].default_value = -+ string_to_bool(abrt_app_configuration_get_value(self->priv->privacy_gsettings, -+ "report-technical-problems")); -+ { -+ /* Get the container widget for the lauch button and warnings */ -+ GtkWidget *hbox_auto_reporting = WID("hbox_auto_reporting"); -+ assert(hbox_auto_reporting); -+ -+ /* Be able to use another desktop file while debugging */ -+ const char *gpp_app = getenv("ABRT_PRIVACY_APP_DESKTOP"); -+ if (gpp_app == NULL) -+ gpp_app = "gnome-privacy-panel.desktop"; -+ -+ GDesktopAppInfo *app = g_desktop_app_info_new(gpp_app); -+ char *message = NULL; -+ char *markup = NULL; -+ if (!app) -+ { -+ /* Make the switch editable */ -+ self->priv->options[ABRT_OPT_SEND_UREPORT].config = self->priv->privacy_gsettings; -+ -+ char *os_release = xmalloc_open_read_close("/etc/os-release", /*no size limit*/NULL); -+ char *privacy_policy = NULL; -+ -+ /* Try to get the value of PRIVACY_POLICY from /etc/os-release */ -+ sr_parse_os_release(os_release, os_release_callback, (void *)&privacy_policy); -+ -+ message = xasprintf(_("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'.")); -+ -+ /* Do not add Privacy Policy link if /etc/os-release does not contain PRIVACY_POLICY */ -+ if (privacy_policy != NULL) -+ markup = xasprintf("%s\n\nPrivacy Policy", message, privacy_policy); -+ else -+ markup = xasprintf("%s", message); -+ -+ free(privacy_policy); -+ free(os_release); -+ } -+ else -+ { -+ /* Make the switch read-only */ -+ self->priv->options[ABRT_OPT_SEND_UREPORT].config = NULL; -+ -+ message = xasprintf(_("The configuration option above can be configured in")); -+ markup = xasprintf("%s", message); -+ -+ GtkWidget *launcher = gtk_button_new_with_label(g_app_info_get_display_name(G_APP_INFO(app))); -+ -+ /* Here we could pass the launcher to pp_launcher_clicked() as the -+ * 4th argument of g_signal_connect() but we would leek the -+ * launcher's memory. Therefore we need to find a way how to free -+ * the launcher when it is not needed anymore. GtkWidget inherits -+ * from GObject which offers a functionality for attaching an -+ * arbitrary data to its instances. The last argument is a function -+ * called to destroy the arbirarty data when the instance is being -+ * destoryed. */ -+ g_object_set_data_full(G_OBJECT(launcher), "launched-app", app, g_object_unref); -+ g_signal_connect(launcher, "clicked", G_CALLBACK(pp_launcher_clicked), NULL); -+ -+ /* Make the launcher button narrow, otherwise it would expand to -+ * the width of the warninig. */ -+ gtk_widget_set_hexpand(launcher, FALSE); -+ gtk_widget_set_vexpand(launcher, FALSE); -+ -+ /* Make the launcher button alligned on center of the warning. */ -+ gtk_widget_set_halign(launcher, GTK_ALIGN_CENTER); -+ gtk_widget_set_valign(launcher, GTK_ALIGN_CENTER); -+ -+ gtk_box_pack_end(GTK_BOX(hbox_auto_reporting), launcher, false, false, 0); -+ } -+ -+ -+ GtkWidget *lbl = gtk_label_new(message); -+ gtk_label_set_markup(GTK_LABEL(lbl), markup); -+ /* Do not expand the window by too long warning. */ -+ gtk_label_set_line_wrap(GTK_LABEL(lbl), TRUE); -+ /* Let users to copy the warning. */ -+ gtk_label_set_selectable(GTK_LABEL(lbl), TRUE); -+ -+ free(markup); -+ free(message); -+ -+ gtk_box_pack_start(GTK_BOX(hbox_auto_reporting), lbl, false, false, 0); -+ } - - self->priv->options[ABRT_OPT_SHORTENED_REPORTING].name = "ShortenedReporting"; - self->priv->options[ABRT_OPT_SHORTENED_REPORTING].default_value = g_settings_shortenedreporting; -diff --git a/src/configuration-gui/abrt-config-widget.glade b/src/configuration-gui/abrt-config-widget.glade -index 3aa566c..7f613c7 100644 ---- a/src/configuration-gui/abrt-config-widget.glade -+++ b/src/configuration-gui/abrt-config-widget.glade -@@ -1,6 +1,7 @@ - -+ - -- -+ - - False - -@@ -11,7 +12,6 @@ - 10 - 10 - 10 -- True - - - True -@@ -26,8 +26,6 @@ - - 0 - 1 -- 1 -- 1 - - - -@@ -44,8 +42,6 @@ - - 0 - 3 -- 1 -- 1 - - - -@@ -59,8 +55,6 @@ - - 1 - 0 -- 1 -- 1 - - - -@@ -74,13 +68,12 @@ - - 1 - 1 -- 1 -- 1 - - - - - True -+ False - True - end - center -@@ -89,8 +82,6 @@ - - 1 - 3 -- 1 -- 1 - - - -@@ -106,9 +97,7 @@ - - - 0 -- 4 -- 1 -- 1 -+ 5 - - - -@@ -121,9 +110,7 @@ - - - 1 -- 4 -- 1 -- 1 -+ 5 - - - -@@ -136,9 +123,7 @@ - - - 1 -- 5 -- 1 -- 1 -+ 6 - - - -@@ -154,9 +139,7 @@ - - - 0 -- 5 -- 1 -- 1 -+ 6 - - - -@@ -172,8 +155,6 @@ - - 2 - 0 -- 1 -- 1 - - - -@@ -188,8 +169,6 @@ - - 2 - 1 -- 1 -- 1 - - - -@@ -204,8 +183,6 @@ - - 2 - 3 -- 1 -- 1 - - - -@@ -219,9 +196,7 @@ - - - 2 -- 4 -- 1 -- 1 -+ 5 - - - -@@ -235,9 +210,7 @@ - - - 2 -- 5 -- 1 -- 1 -+ 6 - - - -@@ -254,8 +227,6 @@ - - 0 - 0 -- 1 -- 1 - - - -@@ -270,8 +241,6 @@ - - 2 - 2 -- 1 -- 1 - - - -@@ -286,8 +255,6 @@ - - 0 - 2 -- 1 -- 1 - - - -@@ -301,8 +268,6 @@ - - 1 - 2 -- 1 -- 1 - - - -@@ -316,9 +281,7 @@ - - - 0 -- 6 -- 1 -- 1 -+ 7 - - - -@@ -331,9 +294,7 @@ - - - 1 -- 6 -- 1 -- 1 -+ 7 - - - -@@ -347,11 +308,26 @@ - - - 2 -- 6 -- 1 -- 1 -+ 7 - - -+ -+ -+ True -+ False -+ -+ -+ -+ -+ -+ 0 -+ 4 -+ 2 -+ -+ -+ -+ -+ - - - --- -2.4.1 - diff --git a/abrt.spec b/abrt.spec index 011013a..73805a5 100644 --- a/abrt.spec +++ b/abrt.spec @@ -21,6 +21,9 @@ %endif %endif +# build abrt-atomic subpackage +%bcond_without atomic + %ifarch aarch64 %define have_kexec_tools 0 %else @@ -40,13 +43,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.5.1 -%define satyr_ver 0.16 +%define libreport_ver 2.6.0 +%define satyr_ver 0.18 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.5.1 -Release: 3%{?dist} +Version: 2.6.0 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://github.com/abrt/abrt/wiki/ABRT-Project @@ -56,28 +59,6 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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-testsuite-grab-beakerlib-stored-log-files-from-var-t.patch -#Patch0002: 0002-testsuite-add-the-machineid-test-case-to-rhel6.patch -#Patch0003: 0003-testsuite-add-test-for-abrt-cli-report-via-reporter-.patch -Patch0004: 0004-applet-switch-to-D-Bus-methods.patch -Patch0005: 0005-lib-add-new-kernel-taint-flags.patch -Patch0006: 0006-upload-validate-and-sanitize-uploaded-dump-directori.patch -#Patch0007: 0007-testsuite-don-t-run-whole-test-if-reporter-mantisbt-.patch -Patch0008: 0008-a-a-s-p-d-add-new-known-interpreter-to-conf-file.patch -#Patch0009: 0009-abrt-detect-DumpLocation-from-abrt.conf-instead-of-u.patch -Patch0010: 0010-applet-fix-problem-info-double-free.patch -Patch0011: 0011-cli-do-not-exit-with-segfault-if-dbus-fails.patch -#Patch0012: 0012-spec-add-a-dependency-on-abrt-dbus-to-abrt-cli.patch -Patch0013: 0013-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch -#Patch0014: 0014-spec-add-AUTHENTICATED_AUTOREPORTING-conditional.patch -Patch0015: 0015-abrt-action-list-dsos-do-not-decode-not-existing-obj.patch -Patch0016: 0016-doc-polkit-Spelling-grammar-fixes.patch -#Patch0017: 0017-testsuite-add-new-version-of-python-interpreters.patch -Patch0018: 0018-applet-migrate-Autoreporting-options-to-GSettings.patch -Patch0019: 0019-config-UI-read-glade-from-a-local-file-first.patch -Patch0020: 0020-config-UI-enable-options-without-config-files.patch -Patch0021: 0021-config-UI-Automatic-reporting-from-GSettings.patch -#Patch0022: 0022-testsuite-test-safeness-of-creating-user-cores.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -104,6 +85,7 @@ BuildRequires: satyr-devel >= %{satyr_ver} BuildRequires: systemd-python BuildRequires: systemd-python3 BuildRequires: augeas +BuildRequires: libselinux-devel Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} @@ -391,11 +373,13 @@ Provides: bug-buddy = 2.28.0 Virtual package to install all necessary packages for usage from desktop environment. +%if %{with atomic} %package atomic Summary: Package to make easy default installation on Atomic hosts Group: Applications/System Requires: %{name}-addon-coredump-helper = %{version}-%{release} Conflicts: %{name}-addon-ccpp +%endif %description atomic Package to install all necessary packages for usage from Atomic @@ -418,6 +402,7 @@ Summary: ABRT Python API Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-dbus = %{version}-%{release} Requires: pygobject2 Requires: dbus-python Requires: libreport-python @@ -445,6 +430,7 @@ Summary: ABRT Python 3 API Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-dbus = %{version}-%{release} Requires: pygobject3 Requires: python3-dbus Requires: libreport-python3 @@ -493,6 +479,9 @@ CFLAGS="%{optflags} -Werror" %configure --enable-doxygen-docs \ %ifnarch arm armhfp armv7hl armv7l aarch64 --enable-native-unwinder \ %endif +%if %{without atomic} + --without-atomic \ +%endif %if %{?have_kexec_tools} == 0 --disable-addon-vmcore \ %endif @@ -520,7 +509,7 @@ find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt -mkdir -p $RPM_BUILD_ROOT/var/tmp/abrt +mkdir -p $RPM_BUILD_ROOT/var/spool/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/abrt @@ -627,6 +616,7 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di # update icon cache touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : +%if %{with atomic} %post atomic if [ -f /etc/abrt/plugins/CCpp.conf ]; then mv /etc/abrt/plugins/CCpp.conf /etc/abrt/plugins/CCpp.conf.rpmsave.atomic || exit 1; @@ -654,6 +644,7 @@ fi %postun atomic %systemd_postun_with_restart abrt-coredump-helper.service +%endif %post libs -p /sbin/ldconfig @@ -700,6 +691,11 @@ service abrt-upload-watch condrestart >/dev/null 2>&1 || : %posttrans gui gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +%posttrans dbus +# Force abrt-dbus to restart like we do with the other services +killall abrt-dbus >/dev/null 2>&1 || : + + %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING @@ -736,7 +732,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man5/abrt_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf %{_mandir}/man5/smart_event.conf.5.gz -%dir %attr(0751, abrt, abrt) %{_localstatedir}/tmp/%{name} +%dir %attr(0751, abrt, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} @@ -987,6 +983,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files desktop %defattr(-,root,root,-) +%if %{with atomic} %files atomic %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp_Atomic.conf @@ -996,6 +993,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-save-package-data %{_mandir}/man1/abrt-action-save-package-data.1.gz %{_mandir}/man5/abrt-action-save-package-data.conf.5.gz +%endif %files plugin-bodhi %defattr(-,root,root,-) @@ -1045,8 +1043,24 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jun 09 2015 Jakub Filak 2.6.0-1 +- move the default dump location to /var/spool/abrt from /var/tmp/abrt +- hooks: use root for owner of all dump directories +- ccpp: do not unlink failed and big user cores +- ccpp: don't save the system logs by default +- ccpp: stop reading hs_error.log from /tmp +- ccpp: emulate selinux for creation of compat cores +- koops: don't save dmesg if kernel.dmesg_restrict=1 +- dbus: validate passed arguments +- turn off exploring crashed process's root directories +- abrt-python: bug fixes and improvements +- fixes for CVE-2015-3315, CVE-2015-3142, CVE-2015-1869, CVE-2015-1870 +- fixes for CVE-2015-3147, CVE-2015-3151, CVE-2015-3150, CVE-2015-3159 +- spec: add abrt-dbus to Rs of abrt-python and abrt-cli +- spec: restart abrt-dbus in posttrans + * Wed May 20 2015 Matej Habrnal 2.5.1-3 -- applet: switch to D-Bus methods +- applet: fix problem info double free - upload: validate and sanitize uploaded dump directories - applet: switch to D-Bus methods - lib: add new kernel taint flags diff --git a/sources b/sources index c611641..13cafef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d24b5f4e4826a0832e6a21e6b0864c2e abrt-2.5.1.tar.gz +b764d6a2a12aaae8cbab3fb7fbe37089 abrt-2.6.0.tar.gz From 9d664f2339edce0daf391c16e6febab080e0d1d7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:33:34 +0000 Subject: [PATCH 132/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 73805a5..7cd345b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://github.com/abrt/abrt/wiki/ABRT-Project @@ -1043,6 +1043,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Tue Jun 09 2015 Jakub Filak 2.6.0-1 - move the default dump location to /var/spool/abrt from /var/tmp/abrt - hooks: use root for owner of all dump directories From 071dfeb34c8f12621ca46d254db192ce80fe4141 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Fri, 3 Jul 2015 14:49:41 +0200 Subject: [PATCH 133/318] New upstream release 2.6.1 Resolves #1217901 --- .gitignore | 1 + abrt.spec | 33 +++++++++++++++++++++++++-------- sources | 2 +- 3 files changed, 27 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 34d6c46..7c125c7 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ abrt-1.1.13.tar.gz /abrt-2.5.0.tar.gz /abrt-2.5.1.tar.gz /abrt-2.6.0.tar.gz +/abrt-2.6.1.tar.gz diff --git a/abrt.spec b/abrt.spec index 7cd345b..03e5deb 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,16 +43,16 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.6.0 -%define satyr_ver 0.18 +%define libreport_ver 2.6.1 +%define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.6.0 -Release: 2%{?dist} +Version: 2.6.1 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System -URL: https://github.com/abrt/abrt/wiki/ABRT-Project +URL: https://abrt.readthedocs.org/ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz # don't remove this patch, packages in rawhide are not signed! Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch @@ -167,7 +167,11 @@ This package contains hook for C/C++ crashed programs. Summary: %{name}'s C/C++ addon Group: System Environment/Libraries Requires: cpio -Requires: gdb >= 7.8.1-31 +%if 0%{?fedora:%{fedora} > 22} +Requires: gdb >= gdb-7.9.50.20150531 +%else +Requires: gdb >= 7.9.1-16 +%endif Requires: elfutils %if 0%{!?rhel:1} # abrt-action-perform-ccpp-analysis wants to run analyze_RetraceServer: @@ -403,7 +407,6 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} -Requires: pygobject2 Requires: dbus-python Requires: libreport-python BuildRequires: python-nose @@ -431,7 +434,6 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} -Requires: pygobject3 Requires: python3-dbus Requires: libreport-python3 BuildRequires: python3-nose @@ -485,6 +487,7 @@ CFLAGS="%{optflags} -Werror" %configure --enable-doxygen-docs \ %if %{?have_kexec_tools} == 0 --disable-addon-vmcore \ %endif + --enable-dump-time-unwind \ --disable-silent-rules make %{?_smp_mflags} @@ -1043,6 +1046,20 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jul 03 2015 Matej Habrnal 2.6.1-1 +- keep the polkit authorization for all clients +- enable polkit authentication on command line +- use TID to find crash thread +- remove PyGObject from all Requires +- update version of gdb because of -ascending +- make it easier to find the backtrace of th crash thread +- save TID in the file 'tid' +- get TID from correct cmd line argument +- add option always generate backtrace locally +- add processor information to sosreport +- update abrt-cli man page +- Resolves #1217901 + * Tue Jun 16 2015 Fedora Release Engineering - 2.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 13cafef..88a4585 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b764d6a2a12aaae8cbab3fb7fbe37089 abrt-2.6.0.tar.gz +936fa2b51d58d5c00729b8512ffa2a68 abrt-2.6.1.tar.gz From 9705d07480e71d89fa5927e577c85d10672b2df5 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Fri, 17 Jul 2015 16:14:31 +0200 Subject: [PATCH 134/318] New upstream release 2.6.2 --- .gitignore | 1 + abrt.spec | 31 +++++++++++++++++++------------ sources | 2 +- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 7c125c7..3475e35 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,4 @@ abrt-1.1.13.tar.gz /abrt-2.5.1.tar.gz /abrt-2.6.0.tar.gz /abrt-2.6.1.tar.gz +/abrt-2.6.2.tar.gz diff --git a/abrt.spec b/abrt.spec index 03e5deb..d2bdef8 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,12 +43,12 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.6.1 +%define libreport_ver 2.6.2 %define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.6.1 +Version: 2.6.2 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -83,7 +83,7 @@ BuildRequires: xmlto BuildRequires: libreport-devel >= %{libreport_ver} BuildRequires: satyr-devel >= %{satyr_ver} BuildRequires: systemd-python -BuildRequires: systemd-python3 +BuildRequires: python3-systemd BuildRequires: augeas BuildRequires: libselinux-devel @@ -95,10 +95,10 @@ Requires: systemd-units %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} -Requires: %{name}-python = %{version}-%{release} +Requires: %{name}-python3 = %{version}-%{release} Requires(pre): shadow-utils -Requires: python-dbus -Requires: python-dmidecode +Requires: python3-dbus +Requires: python3-dmidecode Requires: libreport-plugin-ureport >= %{libreport_ver} %description @@ -180,7 +180,7 @@ Requires: %{name}-retrace-client Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} Requires: %{name}-addon-coredump-helper = %{version}-%{release} -Requires: libreport-python +Requires: libreport-python3 %description addon-ccpp This package contains %{name}'s C/C++ analyzer plugin. @@ -238,8 +238,8 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: kexec-tools -Requires: abrt-python -Requires: python-augeas +Requires: abrt-python3 +Requires: python3-augeas %description addon-vmcore This package contains plugin for collecting kernel crash information from @@ -286,7 +286,7 @@ Summary: %{name}'s addon for catching and analyzing Python 3 exceptions Group: System Environment/Libraries Requires: python3 Requires: %{name} = %{version}-%{release} -Requires: systemd-python3 +Requires: python3-systemd Requires: abrt-python3 %description addon-python3 @@ -316,7 +316,6 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp -Requires: abrt-addon-python Requires: abrt-addon-python3 Requires: abrt-addon-xorg %if 0%{?rhel} @@ -351,7 +350,6 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp -Requires: abrt-addon-python Requires: abrt-addon-python3 Requires: abrt-addon-xorg # Default config of addon-ccpp requires gdb @@ -936,6 +934,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore %{_bindir}/abrt-action-check-oops-for-hw-error +%{_bindir}/abrt-action-check-oops-for-alt-component %{_mandir}/man1/abrt-harvest-vmcore.1* %{_mandir}/man5/abrt-vmcore.conf.5* %{_mandir}/man1/abrt-action-analyze-vmcore.1* @@ -1046,6 +1045,14 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jul 17 2015 Jakub Filak 2.6.2-1 +- switch to Python 3 +- reassign components of certain Kernel oopses to xorg-x11-drv-* +- de-prioritize post-mortem processes +- applet: do not crash if the new problem has no command_line +- abrt-hook-ccpp: do not crash if generate_core_backtrace fails +- cli: enable authentication for all commands + * Fri Jul 03 2015 Matej Habrnal 2.6.1-1 - keep the polkit authorization for all clients - enable polkit authentication on command line diff --git a/sources b/sources index 88a4585..d727097 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -936fa2b51d58d5c00729b8512ffa2a68 abrt-2.6.1.tar.gz +749274c6a9c4dae7422639a2c2d0c217 abrt-2.6.2.tar.gz From 207cb13ae34563dfca1ad3aa49f19f37657ca00c Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 22 Jul 2015 18:18:18 +0200 Subject: [PATCH 135/318] Use gettext instead of lgettext in all python scripts Signed-off-by: Matej Habrnal --- ...ead-of-lgettext-in-all-python-script.patch | 146 ++++++++++++++++++ abrt.spec | 6 +- 2 files changed, 151 insertions(+), 1 deletion(-) create mode 100644 0001-use-gettext-instead-of-lgettext-in-all-python-script.patch diff --git a/0001-use-gettext-instead-of-lgettext-in-all-python-script.patch b/0001-use-gettext-instead-of-lgettext-in-all-python-script.patch new file mode 100644 index 0000000..4eeb7d4 --- /dev/null +++ b/0001-use-gettext-instead-of-lgettext-in-all-python-script.patch @@ -0,0 +1,146 @@ +From 6cac02cec6f457e4ab4edca8cebe2cda8dc4061d Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 22 Jul 2015 15:22:31 +0200 +Subject: [PATCH] use gettext instead of lgettext in all python scripts + +This is related to the transition from Python2 to Python3. + +lgettext returns an array of bytes but we require string (because of Python3). +Without this patch the scripts exit with 'TypeError' exception ('must be str, +not bytes'). + +Related to rhbz#1245600 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-handle-upload.in | 2 +- + src/plugins/abrt-action-analyze-core.in | 2 +- + src/plugins/abrt-action-analyze-vmcore.in | 2 +- + src/plugins/abrt-action-check-oops-for-alt-component.in | 2 +- + src/plugins/abrt-action-check-oops-for-hw-error.in | 2 +- + src/plugins/abrt-action-install-debuginfo.in | 2 +- + src/plugins/abrt-action-perform-ccpp-analysis.in | 2 +- + src/plugins/abrt-action-ureport | 2 +- + src/plugins/abrt-gdb-exploitable | 2 +- + 9 files changed, 9 insertions(+), 9 deletions(-) + +diff --git a/src/daemon/abrt-handle-upload.in b/src/daemon/abrt-handle-upload.in +index dc630bc..3db6561 100755 +--- a/src/daemon/abrt-handle-upload.in ++++ b/src/daemon/abrt-handle-upload.in +@@ -18,7 +18,7 @@ GETTEXT_PROGNAME = "abrt" + import locale + import gettext + +-_ = lambda x: gettext.lgettext(x) ++_ = lambda x: gettext.gettext(x) + + def init_gettext(): + try: +diff --git a/src/plugins/abrt-action-analyze-core.in b/src/plugins/abrt-action-analyze-core.in +index 486994a..448bdab 100644 +--- a/src/plugins/abrt-action-analyze-core.in ++++ b/src/plugins/abrt-action-analyze-core.in +@@ -12,7 +12,7 @@ GETTEXT_PROGNAME = "@PACKAGE@" + import locale + import gettext + +-_ = lambda x: gettext.lgettext(x) ++_ = lambda x: gettext.gettext(x) + + + verbose = 0 +diff --git a/src/plugins/abrt-action-analyze-vmcore.in b/src/plugins/abrt-action-analyze-vmcore.in +index c3ae071..c91737f 100644 +--- a/src/plugins/abrt-action-analyze-vmcore.in ++++ b/src/plugins/abrt-action-analyze-vmcore.in +@@ -14,7 +14,7 @@ GETTEXT_PROGNAME = "abrt" + import locale + import gettext + +-_ = lambda x: gettext.lgettext(x) ++_ = lambda x: gettext.gettext(x) + + def init_gettext(): + try: +diff --git a/src/plugins/abrt-action-check-oops-for-alt-component.in b/src/plugins/abrt-action-check-oops-for-alt-component.in +index 3dce42e..b5152c1 100644 +--- a/src/plugins/abrt-action-check-oops-for-alt-component.in ++++ b/src/plugins/abrt-action-check-oops-for-alt-component.in +@@ -9,7 +9,7 @@ import re + + GETTEXT_PROGNAME = "abrt" + +-_ = gettext.lgettext ++_ = gettext.gettext + + tags = [ + "WARNING:", +diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in +index ff8ff5d..400ed99 100644 +--- a/src/plugins/abrt-action-check-oops-for-hw-error.in ++++ b/src/plugins/abrt-action-check-oops-for-hw-error.in +@@ -9,7 +9,7 @@ import re + + GETTEXT_PROGNAME = "abrt" + +-_ = gettext.lgettext ++_ = gettext.gettext + + def file_has_string(filename, string): + try: +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index ed453df..f70ebcd 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -26,7 +26,7 @@ GETTEXT_PROGNAME = "abrt" + import locale + import gettext + +-_ = lambda x: gettext.lgettext(x) ++_ = lambda x: gettext.gettext(x) + + def init_gettext(): + try: +diff --git a/src/plugins/abrt-action-perform-ccpp-analysis.in b/src/plugins/abrt-action-perform-ccpp-analysis.in +index fd75fd4..c25de96 100644 +--- a/src/plugins/abrt-action-perform-ccpp-analysis.in ++++ b/src/plugins/abrt-action-perform-ccpp-analysis.in +@@ -19,7 +19,7 @@ from reportclient import (ask_yes_no_yesforever, + + GETTEXT_PROGNAME = "abrt" + +-_ = gettext.lgettext ++_ = gettext.gettext + + def handle_event(event_name, problem_dir): + """Helper function handling a single event +diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport +index 1c63749..75e5c62 100755 +--- a/src/plugins/abrt-action-ureport ++++ b/src/plugins/abrt-action-ureport +@@ -17,7 +17,7 @@ GETTEXT_PROGNAME = "abrt" + import locale + import gettext + +-_ = lambda x: gettext.lgettext(x) ++_ = lambda x: gettext.gettext(x) + + def init_gettext(): + try: +diff --git a/src/plugins/abrt-gdb-exploitable b/src/plugins/abrt-gdb-exploitable +index cfdf293..758c4c5 100755 +--- a/src/plugins/abrt-gdb-exploitable ++++ b/src/plugins/abrt-gdb-exploitable +@@ -14,7 +14,7 @@ import locale + import gdb + + GETTEXT_PROGNAME = "abrt" +-_ = gettext.lgettext ++_ = gettext.gettext + + def init_gettext(): + try: +-- +2.4.6 + diff --git a/abrt.spec b/abrt.spec index d2bdef8..0705929 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -59,6 +59,7 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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-use-gettext-instead-of-lgettext-in-all-python-script.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -1045,6 +1046,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 22 2015 Matej Habrnal 2.6.2-2 +- use gettext instead of lgettext in all python scripts + * Fri Jul 17 2015 Jakub Filak 2.6.2-1 - switch to Python 3 - reassign components of certain Kernel oopses to xorg-x11-drv-* From 66b169ccf2a98d8eea8cb88d6725c47790bff435 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Fri, 24 Jul 2015 14:58:43 +0200 Subject: [PATCH 136/318] Fixes related to transition to Python 3 and fix in abrt-merge-pstoreoops Resolves #1246459 Signed-off-by: Matej Habrnal --- ...eoops-merge-files-in-descending-orde.patch | 35 +++++++++++++++ ...coded-Unicode-to-hashlib.sha1.update.patch | 44 +++++++++++++++++++ 0007-vmcore-read-vmcore-by-chunks.patch | 38 ++++++++++++++++ abrt.spec | 14 +++++- 4 files changed, 130 insertions(+), 1 deletion(-) create mode 100644 0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch create mode 100644 0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch create mode 100644 0007-vmcore-read-vmcore-by-chunks.patch diff --git a/0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch b/0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch new file mode 100644 index 0000000..90ccc4d --- /dev/null +++ b/0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch @@ -0,0 +1,35 @@ +From 668014b725660785c43b880e73a9ff723abc0be5 Mon Sep 17 00:00:00 2001 +From: "knoha@redhat.com" +Date: Fri, 24 Jul 2015 07:56:02 +0200 +Subject: [PATCH] abrt-merge-pstoreoops: merge files in descending order + +fs/pstore reads the data from kmsg_dump_get_buffer(), which starts at +the end of the kmsg buffer, in a while loop and increases Part no. in +each iteration. + +Related: rhbz#1233662 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-merge-pstoreoops.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-merge-pstoreoops.c b/src/hooks/abrt-merge-pstoreoops.c +index 6fc3109..36f1e0b 100644 +--- a/src/hooks/abrt-merge-pstoreoops.c ++++ b/src/hooks/abrt-merge-pstoreoops.c +@@ -64,9 +64,9 @@ int compare_oops_texts(const void *a, const void *b) + return -1; + if (aa->panic_no > bb->panic_no) + return 1; +- if (aa->part_no < bb->part_no) ++ if (aa->part_no > bb->part_no) + return -1; +- return (aa->part_no > bb->part_no); ++ return (aa->part_no < bb->part_no); + } + + int main(int argc, char **argv) +-- +2.4.6 + diff --git a/0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch b/0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch new file mode 100644 index 0000000..d4a567e --- /dev/null +++ b/0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch @@ -0,0 +1,44 @@ +From ed7aaffdcac4f29cd513cd4c1086339512320a1c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 24 Jul 2015 13:47:15 +0200 +Subject: [PATCH] pass encoded Unicode to hashlib.sha1.update() + +Python 3 compatibility commit. + +Related: rhbz#1246459 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-check-oops-for-hw-error.in | 2 +- + src/plugins/abrt-action-generate-machine-id | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in +index 400ed99..1695ddb 100644 +--- a/src/plugins/abrt-action-check-oops-for-hw-error.in ++++ b/src/plugins/abrt-action-check-oops-for-hw-error.in +@@ -88,7 +88,7 @@ if __name__ == "__main__": + oops_hash = hashlib.sha1() + with open("backtrace", "r") as btfile: + for line in btfile: +- oops_hash.update(line) ++ oops_hash.update(line.encode()) + + with open_or_die("uuid", "w") as f: + f.write(oops_hash.hexdigest()) +diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id +index 1005b2c..63b5c93 100644 +--- a/src/plugins/abrt-action-generate-machine-id ++++ b/src/plugins/abrt-action-generate-machine-id +@@ -63,7 +63,7 @@ def generate_machine_id_dmidecode(): + data = dmixp.xpathEval(k) + for d in data: + # Update the hash as we find the fields we are looking for +- machine_id.update(d.get_content()) ++ machine_id.update(d.get_content().encode()) + + del dmixp + del xmldoc +-- +2.4.6 + diff --git a/0007-vmcore-read-vmcore-by-chunks.patch b/0007-vmcore-read-vmcore-by-chunks.patch new file mode 100644 index 0000000..a172ec5 --- /dev/null +++ b/0007-vmcore-read-vmcore-by-chunks.patch @@ -0,0 +1,38 @@ +From 8f26482402179dc64b9488be05ef9686922446ec Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 24 Jul 2015 13:50:00 +0200 +Subject: [PATCH] vmcore: read vmcore by chunks + +Reading vmcore by lines was not a good idea and the switch to Python 3 +makes it impossible because of the binary format of that file (the file +does not contain only valid Unicode strings and that raises +UnicodeDecodeError from the for statement). + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt_harvest_vmcore.py.in | 9 ++++++--- + 1 file changed, 6 insertions(+), 3 deletions(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index c5e7d53..61a6e57 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -214,9 +214,12 @@ def harvest_vmcore(): + hashobj = hashlib.sha1() + # Iterate over the file a line at a time in order to not load the whole + # vmcore file +- with open(os.path.join(f_full, 'vmcore'), 'r') as corefile: +- for line in corefile: +- hashobj.update(line) ++ with open(os.path.join(f_full, 'vmcore'), 'rb') as corefile: ++ while True: ++ chunk = corefile.read(8192) ++ if not chunk: ++ break ++ hashobj.update(chunk) + + dd = create_abrtd_info(destdirnew, hashobj.hexdigest()) + if dd is None: +-- +2.4.6 + diff --git a/abrt.spec b/abrt.spec index 0705929..d6a2c84 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -60,6 +60,12 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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-use-gettext-instead-of-lgettext-in-all-python-script.patch +Patch0002: 0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch +#Patch0003: 0003-testsuite-pstore-adapt-to-merging-in-descending-orde.patch +#Patch0004: 0004-testsuite-a-a-reporting-sanity-add-test-for-missing-.patch +#Patch0005: 0005-testsuite-pstore-harvest-adapt-to-merging-in-descend.patch +Patch0006: 0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch +Patch0007: 0007-vmcore-read-vmcore-by-chunks.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -1046,6 +1052,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jul 24 2015 Matej Habrnal 2.6.2-3 +- read vmcore by chunks +- pass encoded Unicode to hashlib.sha1.update() +- abrt-merge-pstoreoops: merge files in descending order +- Resolves #1246459 + * Wed Jul 22 2015 Matej Habrnal 2.6.2-2 - use gettext instead of lgettext in all python scripts From d01f0fa5206ed74fc48225635bf71a149e2c80fe Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Tue, 28 Jul 2015 16:14:01 +0200 Subject: [PATCH 137/318] Rebuild for rpmlib https://lists.fedoraproject.org/pipermail/devel/2015-July/212672.html --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index d6a2c84..27d487c 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1052,6 +1052,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jul 28 2015 Jakub Filak - 2.6.2-4 +- Rebuild for rmplib : https://lists.fedoraproject.org/pipermail/devel/2015-July/212672.html + * Fri Jul 24 2015 Matej Habrnal 2.6.2-3 - read vmcore by chunks - pass encoded Unicode to hashlib.sha1.update() From a6a1fceb2c9306376819d6fd46d04cf7e3114ef0 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Wed, 29 Jul 2015 17:49:11 +0200 Subject: [PATCH 138/318] Add python3-augeas to Requires --- abrt.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 27d487c..dfacc07 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -104,6 +104,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-python3 = %{version}-%{release} Requires(pre): shadow-utils +Requires: python3-augeas Requires: python3-dbus Requires: python3-dmidecode Requires: libreport-plugin-ureport >= %{libreport_ver} @@ -1052,6 +1053,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 29 2015 Jakub Filak - 2.6.2-5 +- Add python3-augeas to Requires: (FAF report #529272) + * Tue Jul 28 2015 Jakub Filak - 2.6.2-4 - Rebuild for rmplib : https://lists.fedoraproject.org/pipermail/devel/2015-July/212672.html From b52e1a767abfec0987935a8dda4169946928d636 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Fri, 14 Aug 2015 10:54:04 +0200 Subject: [PATCH 139/318] Fix bugs in a-auto-reporting, dbus, a-hook-ccpp and abrt-cli Correct usage of abrt-gdb-exploitable. Signed-off-by: Matej Habrnal --- ...ing-fix-related-to-conditional-compi.patch | 33 +++++++ ...to-conditional-compilation-of-man-pa.patch | 44 +++++++++ 0018-dbus-api-unify-reporting-of-errors.patch | 99 +++++++++++++++++++ ...fix-testing-of-DBus-API-return-codes.patch | 56 +++++++++++ ...-related-to-MakeCompatCore-option-in.patch | 59 +++++++++++ 0023-ccpp-use-global-TID.patch | 37 +++++++ ...orrect-usage-of-abrt-gdb-exploitable.patch | 46 +++++++++ abrt.spec | 31 +++++- 8 files changed, 404 insertions(+), 1 deletion(-) create mode 100644 0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch create mode 100644 0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch create mode 100644 0018-dbus-api-unify-reporting-of-errors.patch create mode 100644 0019-cli-fix-testing-of-DBus-API-return-codes.patch create mode 100644 0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch create mode 100644 0023-ccpp-use-global-TID.patch create mode 100644 0027-correct-usage-of-abrt-gdb-exploitable.patch diff --git a/0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch b/0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch new file mode 100644 index 0000000..a738522 --- /dev/null +++ b/0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch @@ -0,0 +1,33 @@ +From 6099fa38833e0679f32488770e59e10b6ac72b6d Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 28 Jul 2015 13:17:25 +0200 +Subject: [PATCH] abrt-auto-reporting: fix related to conditional compilation + +We discovered that conditional compilation in abrt-auto-reporting does not +work. We forgot add -DAUTHENTICATED_AUTOREPORTING=1 flag if +AUTHENTICATED_AUTOREPORTING is enabled. + +Related to rhbz#1191572 +--- + src/daemon/Makefile.am | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am +index a8f3fa2..563923a 100644 +--- a/src/daemon/Makefile.am ++++ b/src/daemon/Makefile.am +@@ -122,6 +122,11 @@ abrt_auto_reporting_CPPFLAGS = \ + -I$(srcdir)/../lib \ + $(LIBREPORT_CFLAGS) \ + -D_GNU_SOURCE ++ ++if AUTHENTICATED_AUTOREPORTING ++abrt_auto_reporting_CPPFLAGS += -DAUTHENTICATED_AUTOREPORTING=1 ++endif ++ + abrt_auto_reporting_LDADD = \ + ../lib/libabrt.la \ + $(LIBREPORT_LIBS) +-- +2.4.3 + diff --git a/0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch b/0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch new file mode 100644 index 0000000..e8ce118 --- /dev/null +++ b/0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch @@ -0,0 +1,44 @@ +From 930d035e7a56ecb18414b56d1fa906f2948b2d9e Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 28 Jul 2015 16:20:47 +0200 +Subject: [PATCH] doc: fix related to conditional compilation of man page + +abrt-auto-reporting.txt is a copy of either +abrt-auto-reporting-authenticated.txt or +abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always +exists because MAN1_TXT variable contains it and is distributed (the file is listed +in the EXTRA_DIST variable). It would be difficult to ensure +to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it +from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems +like the easiest way. + +Related to rhbz#1191572 + +Signed-off-by: Matej Habrnal +--- + doc/Makefile.am | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/doc/Makefile.am b/doc/Makefile.am +index f39c3bf..fdd08cf 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -82,6 +82,15 @@ MAN_SOURCE = + MAN_SOURCE += abrt-auto-reporting-authenticated.txt + MAN_SOURCE += abrt-auto-reporting-unauthenticated.txt + ++# abrt-auto-reporting.txt is a copy of either ++# abrt-auto-reporting-authenticated.txt or ++# abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always ++# exists because MAN1_TXT variable contains it and is distributed (the file is listed ++# in the EXTRA_DIST variable). It would be difficult to ensure ++# to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it ++# from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems ++# like the easiest way. ++.PHONY: abrt-auto-reporting.txt + if AUTHENTICATED_AUTOREPORTING + abrt-auto-reporting.txt: abrt-auto-reporting-authenticated.txt + else +-- +2.4.3 + diff --git a/0018-dbus-api-unify-reporting-of-errors.patch b/0018-dbus-api-unify-reporting-of-errors.patch new file mode 100644 index 0000000..6faaa0b --- /dev/null +++ b/0018-dbus-api-unify-reporting-of-errors.patch @@ -0,0 +1,99 @@ +From e027392d560aa5f4cf11151bf8b53183502ac464 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 11 Aug 2015 09:54:55 +0200 +Subject: [PATCH] dbus-api: unify reporting of errors + +User ERR_PTR for failures in all functions because some of the functions +use NULL as a valid response (NULL is an empty GList). + +Related: rhbz#1224984 + +Signed-off-by: Jakub Filak +--- + src/include/libabrt.h | 16 +++++++++------- + src/lib/problem_api_dbus.c | 2 +- + 2 files changed, 10 insertions(+), 8 deletions(-) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 4e73a0d..da565f9 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -163,7 +163,7 @@ void koops_print_suspicious_strings_filtered(const regex_t **filterout); + + Requires authorization + +- @return 0 if successfull non-zeru on failure ++ @return 0 if successful; non-zero on failure + */ + int chown_dir_over_dbus(const char *problem_dir_path); + +@@ -181,7 +181,7 @@ int test_exist_over_dbus(const char *problem_id, const char *element_name); + + Might require authorization + +- @return Positive number if such the proble is complete, 0 if doesn't and negative number if an error occurs. ++ @return Positive number if the problem is complete, 0 if doesn't and negative number if an error occurs. + */ + int dbus_problem_is_complete(const char *problem_id); + +@@ -198,7 +198,8 @@ char *load_text_over_dbus(const char *problem_id, const char *element_name); + @brief Delets multiple problems specified by their id (as returned from problem_data_save) + + @param problem_dir_paths List of problem ids +- @return 0 if operation was successfull, non-zero on failure ++ ++ @return 0 if operation was successful, non-zero on failure + */ + + int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); +@@ -206,21 +207,21 @@ int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); + /** + @brief Fetches given problem elements for specified problem id + +- @return on failures returns non zero value and emits error message ++ @return returns non-zero value on failures and prints error message + */ + int fill_problem_data_over_dbus(const char *problem_dir_path, const char **elements, problem_data_t *problem_data); + + /** + @brief Fetches problem information for specified problem id + +- @return problem_data_t or NULL on failure ++ @return a valid pointer to problem_data_t or ERR_PTR on failure + */ + problem_data_t *get_problem_data_dbus(const char *problem_dir_path); + + /** + @brief Fetches full problem data for specified problem id + +- @return problem_data_t or ERR_PTR on failure ++ @return a valid pointer to problem_data_t or ERR_PTR on failure + */ + problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); + +@@ -228,7 +229,8 @@ problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); + @brief Fetches all problems from problem database + + @param authorize If set to true will try to fetch even problems owned by other users (will require root authorization over policy kit) +- @return List of problem ids or NULL on failure ++ ++ @return List of problem ids or ERR_PTR on failure (NULL is an empty list) + */ + GList *get_problems_over_dbus(bool authorize); + +diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c +index ce5c47b..0bf86e2 100644 +--- a/src/lib/problem_api_dbus.c ++++ b/src/lib/problem_api_dbus.c +@@ -165,7 +165,7 @@ problem_data_t *get_problem_data_dbus(const char *problem_dir_path) + { + error_msg(_("Can't get problem data from abrt-dbus")); + problem_data_free(pd); +- return NULL; ++ return ERR_PTR; + } + + return pd; +-- +2.4.3 + diff --git a/0019-cli-fix-testing-of-DBus-API-return-codes.patch b/0019-cli-fix-testing-of-DBus-API-return-codes.patch new file mode 100644 index 0000000..a7b150d --- /dev/null +++ b/0019-cli-fix-testing-of-DBus-API-return-codes.patch @@ -0,0 +1,56 @@ +From de667f35fe7fd1d4a5fde8f5d0419387c33db9a2 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 11 Aug 2015 10:01:53 +0200 +Subject: [PATCH] cli: fix testing of DBus API return codes + +The DBus wrapper functions uses ERR_PTR to report an error, so the +callers has to test the returned pointers for NULL and for ERR_PTR. + +Related: rhbz#1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 3 +++ + src/cli/status.c | 5 ++++- + 2 files changed, 7 insertions(+), 1 deletion(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index 68dda47..d069695 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -36,6 +36,9 @@ static problem_data_t *load_problem_data(const char *problem_id) + + /* First, check if there is a problem with the passed id */ + GList *problems = get_problems_over_dbus(g_cli_authenticate); ++ if (problems == ERR_PTR) ++ return NULL; ++ + GList *item = g_list_find_custom(problems, problem_id, (GCompareFunc)strcmp); + + /* (git requires at least 5 char hash prefix, we do the same) */ +diff --git a/src/cli/status.c b/src/cli/status.c +index 0635289..3620cea 100644 +--- a/src/cli/status.c ++++ b/src/cli/status.c +@@ -27,6 +27,9 @@ static unsigned int count_problem_dirs(unsigned long since) + unsigned count = 0; + + GList *problems = get_problems_over_dbus(g_cli_authenticate); ++ if (problems == ERR_PTR) ++ return count; ++ + for (GList *iter = problems; iter != NULL; iter = g_list_next(iter)) + { + const char *problem_id = (const char *)iter->data; +@@ -37,7 +40,7 @@ static unsigned int count_problem_dirs(unsigned long since) + } + + char *time_str = load_text_over_dbus(problem_id, FILENAME_LAST_OCCURRENCE); +- if (time_str == NULL) ++ if (time_str == ERR_PTR || time_str == NULL) + { + log_debug("Not counting problem %s: failed to get time element", problem_id); + continue; +-- +2.4.3 + diff --git a/0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch b/0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch new file mode 100644 index 0000000..de953aa --- /dev/null +++ b/0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch @@ -0,0 +1,59 @@ +From 452fd36a5eac35dff14dbaf3a128c2b0e562db41 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 11 Aug 2015 16:17:40 +0200 +Subject: [PATCH] ccpp: fix comment related to 'MakeCompatCore' option in + CCpp.conf + +The comment fits only on the default core_pattern template. +If the core_pattern is not default, the comment does not fit. + +Related to rhbz#1252384 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-CCpp.conf.txt | 9 +++++++-- + src/hooks/CCpp.conf | 9 +++++++-- + 2 files changed, 14 insertions(+), 4 deletions(-) + +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index 498d53d..cf9b213 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -11,8 +11,13 @@ The configuration file consists of items in the format "Option = Value". + Ithe following items are recognized: + + MakeCompatCore = 'yes' / 'no' ...:: +- If you also want to dump file named "core" +- in crashed process' current dir, set to "yes". ++ CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file ++ and stores the original template in the "/var/run/abrt/saved_core_pattern" ++ file. If you want CCpp hook to create a core dump file named according to ++ the original template as well, set 'MakeCompatCore' to 'yes'. ++ If the original template string starts with "|", the string "core" is used ++ instead of the template. ++ For more information about naming core dump files see 'man 5 core'. + + SaveBinaryImage = 'yes' / 'no' ...:: + Do you want a copy of crashed binary be saved? +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index 92d7438..03b9b03 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -1,7 +1,12 @@ + # Configuration file for CCpp hook + +-# If you also want to dump file named "core" +-# in crashed process' current dir, set to "yes" ++# CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file ++# and stores the original template in the "/var/run/abrt/saved_core_pattern" ++# file. If you want CCpp hook to create a core dump file named according to ++# the original template as well, set 'MakeCompatCore' to 'yes'. ++# If the original template string starts with "|", the string "core" is used ++# instead of the template. ++# For more information about naming core dump files see 'man 5 core'. + MakeCompatCore = yes + + # Do you want a copy of crashed binary be saved? +-- +2.4.3 + diff --git a/0023-ccpp-use-global-TID.patch b/0023-ccpp-use-global-TID.patch new file mode 100644 index 0000000..ff1f7d5 --- /dev/null +++ b/0023-ccpp-use-global-TID.patch @@ -0,0 +1,37 @@ +From d4758cf4c0c153ee41ddca06dcb213b210f4dd8b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 12 Aug 2015 17:40:12 +0200 +Subject: [PATCH] ccpp: use global TID + +'%i' is TID of the thread from the crashed process's PID namespace but +abrt-hook-ccpp is run by kernel in the init PID namespace, so '%i' +is TID of a completely unrelated process. + +For mode details see 'man 5 core'. + +Related: rhbz#1252590 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-install-ccpp-hook.in | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index 13832ab..707c57d 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,9 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %i" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" + # Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %i" ++PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +-- +2.4.3 + diff --git a/0027-correct-usage-of-abrt-gdb-exploitable.patch b/0027-correct-usage-of-abrt-gdb-exploitable.patch new file mode 100644 index 0000000..ed88659 --- /dev/null +++ b/0027-correct-usage-of-abrt-gdb-exploitable.patch @@ -0,0 +1,46 @@ +From d3e01c97970b11d400aad2058bc215778da95513 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 17 Aug 2015 09:34:22 +0200 +Subject: [PATCH] correct usage of abrt-gdb-exploitable + +Fixes #988 +Related to bugzilla.redhat.com/1253590 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-analyze-vulnerability | 2 +- + src/plugins/abrt-gdb-exploitable | 4 ++-- + 2 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/plugins/abrt-action-analyze-vulnerability b/src/plugins/abrt-action-analyze-vulnerability +index aa63ff0..be5a492 100755 +--- a/src/plugins/abrt-action-analyze-vulnerability ++++ b/src/plugins/abrt-action-analyze-vulnerability +@@ -30,7 +30,7 @@ export SIGNO_OF_THE_COREDUMP + # with explanation if severity is >= 4 + GDBOUT=$( + gdb --batch \ +- -ex 'python execfile("/usr/libexec/abrt-gdb-exploitable")' \ ++ -ex 'python exec(open("/usr/libexec/abrt-gdb-exploitable").read())' \ + -ex 'core-file ./coredump' \ + -ex 'abrt-exploitable 4 ./exploitable' \ + 2>&1 \ +diff --git a/src/plugins/abrt-gdb-exploitable b/src/plugins/abrt-gdb-exploitable +index 758c4c5..ac19668 100755 +--- a/src/plugins/abrt-gdb-exploitable ++++ b/src/plugins/abrt-gdb-exploitable +@@ -1,9 +1,9 @@ + #!/usr/bin/python3 + # This is a GDB plugin. + # Usage: +-# gdb --batch -ex 'python execfile("THIS_FILE")' -ex run -ex abrt-exploitable PROG ++# gdb --batch -ex 'python exec(open("THIS_FILE").read())' -ex run -ex abrt-exploitable PROG + # or +-# gdb --batch -ex 'python execfile("THIS_FILE")' -ex 'core COREDUMP' -ex abrt-exploitable ++# gdb --batch -ex 'python exec(open("THIS_FILE").read())' -ex 'core COREDUMP' -ex abrt-exploitable + + import sys + import os +-- +2.4.3 + diff --git a/abrt.spec b/abrt.spec index dfacc07..baeae6a 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -66,6 +66,26 @@ Patch0002: 0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch #Patch0005: 0005-testsuite-pstore-harvest-adapt-to-merging-in-descend.patch Patch0006: 0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch Patch0007: 0007-vmcore-read-vmcore-by-chunks.patch +Patch0008: 0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch +#Patch0009: 0009-testsuite-add-the-results-for-pstoreoops.patch +Patch0010: 0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch +#Patch0011: 0011-testsuite-make-check_dump_dir_attributes-distro-spec.patch +#Patch0012: 0012-testsuite-make-kernel-vmcore-harvest-distro-specific.patch +#Patch0013: 0013-testsuite-make-oops-processing-distro-specific.patch +#Patch0014: 0014-testsuite-make-journald-integration-test-distro-spec.patch +#Patch0015: 0015-testsuite-fix-path-to-aux-lib.sh-in-distro_specific-.patch +#Patch0016: 0016-testsuite-add-a-test-checking-sanity-of-abrtd-logs.patch +#Patch0017: 0017-testsuite-make-the-meaningful-logs-test-working-for-.patch +Patch0018: 0018-dbus-api-unify-reporting-of-errors.patch +Patch0019: 0019-cli-fix-testing-of-DBus-API-return-codes.patch +#Patch0020: 0020-testsuite-dbus-configuration-read-option-values-from.patch +Patch0021: 0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch +#Patch0022: 0022-testsuite-abrt-auto-reporting-sanity-exclude-one-pha.patch +Patch0023: 0023-ccpp-use-global-TID.patch +#Patch0024: 0024-testsuite-generate-core-backtrace-in-new-PID-NS.patch +#Patch0025: 0025-testsutie-first-wait_for_hooks-then-get_crash_path.patch +#Patch0026: 0026-testsuite-make-ccpp-plugin-hook-unwind-more-robust.patch +Patch0027: 0027-correct-usage-of-abrt-gdb-exploitable.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -1053,6 +1073,15 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Aug 14 2015 Matej Habrnal 2.6.2-6 +- ccpp - use global TID +- fix comment related to 'MakeCompatCore' option in CCpp.conf +- fix testing of DBus API return codes +- dbus-api: unify reporting of errors +- fix related to conditional compilation of man page +- abrt-auto-reporting: fix related to conditional compilation +- correct usage of abrt-gdb-exploitable + * Wed Jul 29 2015 Jakub Filak - 2.6.2-5 - Add python3-augeas to Requires: (FAF report #529272) From ef5d23d3b1f757c1a09f30b77bb969041173ca7c Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 26 Aug 2015 16:52:35 +0200 Subject: [PATCH 140/318] Bug fixes - introduce bodhi2 to abrt-bodhi - don't start reporting of not-reportable problems - add hawkey to BRs of abrt-bodhi - add bash on the package blacklist Resolves #1250379 Signed-off-by: Matej Habrnal --- ...-d-add-bash-on-the-package-blacklist.patch | 31 ++ ...reporting-of-not-reportable-problems.patch | 45 +++ ...nvert-all-ex.message-stmts-to-str-ex.patch | 85 +++++ 0033-introduce-bodhi2-to-abrt-bodhi.patch | 317 ++++++++++++++++++ ...break-the-reporting-if-a-bodhi-fails.patch | 28 ++ 0036-bodhi-add-ignoring-of-Rawhide.patch | 53 +++ ...bodhi-add-parsing-of-error-responses.patch | 110 ++++++ abrt.spec | 27 +- 8 files changed, 694 insertions(+), 2 deletions(-) create mode 100644 0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch create mode 100644 0029-cli-don-t-start-reporting-of-not-reportable-problems.patch create mode 100644 0032-convert-all-ex.message-stmts-to-str-ex.patch create mode 100644 0033-introduce-bodhi2-to-abrt-bodhi.patch create mode 100644 0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch create mode 100644 0036-bodhi-add-ignoring-of-Rawhide.patch create mode 100644 0037-bodhi-add-parsing-of-error-responses.patch diff --git a/0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch b/0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch new file mode 100644 index 0000000..71250b0 --- /dev/null +++ b/0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch @@ -0,0 +1,31 @@ +From 5938d89ac666e825aa880691fc109ae79b848f7a Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 20 Aug 2015 09:40:59 +0200 +Subject: [PATCH] a-a-s-p-d: add bash on the package blacklist + +In case of this package, the reported data doesn't yield sufficient information +to solve a bug. + +Related to rhbz#1250379 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-action-save-package-data.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf +index 27b9607..0129399 100644 +--- a/src/daemon/abrt-action-save-package-data.conf ++++ b/src/daemon/abrt-action-save-package-data.conf +@@ -7,7 +7,7 @@ OpenGPGCheck = yes + + # Blacklisted packages + # +-BlackList = nspluginwrapper, valgrind, strace, mono-core, firefox ++BlackList = nspluginwrapper, valgrind, strace, mono-core, firefox, bash + + # Process crashes in executables which do not belong to any package? + # +-- +2.5.0 + diff --git a/0029-cli-don-t-start-reporting-of-not-reportable-problems.patch b/0029-cli-don-t-start-reporting-of-not-reportable-problems.patch new file mode 100644 index 0000000..da7d8a1 --- /dev/null +++ b/0029-cli-don-t-start-reporting-of-not-reportable-problems.patch @@ -0,0 +1,45 @@ +From 37794a0573fd7b3586e72071d27f27f173459142 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 20 Aug 2015 11:15:59 +0200 +Subject: [PATCH] cli: don't start reporting of not-reportable problems + +If the reported problem data contains 'not-reportable' element, the +reporting process fails unexpectedly and after the reporter already spent some +time on it. + +This commit ensures that the reporting process won't start, so +abrt-cli's behaviour will be consistent with ABRT GUI. + +However, this is not an ideal solution because we might want to allow +the reporter to report the problem directly to developers via e-mail. + +Closes #986 + +Signed-off-by: Jakub Filak +--- + src/cli/report.c | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/src/cli/report.c b/src/cli/report.c +index 19b4c51..cc4035e 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -36,6 +36,15 @@ int _cmd_report(const char **dirs_strv, int remove) + continue; + } + ++ const int not_reportable = test_exist_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); ++ if (not_reportable != 0) ++ { ++ error_msg(_("Problem '%s' cannot be reported"), real_problem_id); ++ free(real_problem_id); ++ ++ret; ++ continue; ++ } ++ + const int res = chown_dir_over_dbus(real_problem_id); + if (res != 0) + { +-- +2.5.0 + diff --git a/0032-convert-all-ex.message-stmts-to-str-ex.patch b/0032-convert-all-ex.message-stmts-to-str-ex.patch new file mode 100644 index 0000000..3d866bd --- /dev/null +++ b/0032-convert-all-ex.message-stmts-to-str-ex.patch @@ -0,0 +1,85 @@ +From fe4196bd067e938303ec3cdee7c912e84cea6aa0 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 25 Aug 2015 08:25:19 +0200 +Subject: [PATCH] convert all 'ex.message' stmts to 'str(ex)' + +Python 3 exceptions do not have the 'message' attribute. +The 'message' attribute has been deprecated since Python 2.6 +https://www.python.org/dev/peps/pep-0352/ + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-generate-machine-id | 2 +- + src/plugins/abrt-action-notify | 12 ++++++------ + 2 files changed, 7 insertions(+), 7 deletions(-) + +diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id +index 63b5c93..c547d7c 100644 +--- a/src/plugins/abrt-action-generate-machine-id ++++ b/src/plugins/abrt-action-generate-machine-id +@@ -110,7 +110,7 @@ def generate_machine_id(generators): + ids[sd] = workers[sd]() + except RuntimeError as ex: + logging.error("Machine-ID generator '{0}' failed: {1}" +- .format(sd, ex.message)) ++ .format(sd, str(ex))) + + return ids + +diff --git a/src/plugins/abrt-action-notify b/src/plugins/abrt-action-notify +index 716de45..ca8f807 100644 +--- a/src/plugins/abrt-action-notify ++++ b/src/plugins/abrt-action-notify +@@ -116,7 +116,7 @@ def emit_crash_dbus_signal(problem_data): + bus.send_message(msg) + except dbus.exceptions.DBusException as ex: + raise RuntimeError("Failed to emit D-Bus Crash signal: {0}" +- .format(ex.message)) ++ .format(str(ex))) + finally: + if bus is not None: + bus.close() +@@ -213,7 +213,7 @@ if __name__ == "__main__": + PD = build_notification_problem_data(DIR_PATH) + except ValueError as ex: + sys.stderr.write("Cannot notify '{0}': {1}\n". +- format(DIR_PATH, ex.message)) ++ format(DIR_PATH, str(ex))) + sys.exit(RETURN_FAILURE) + + # The execution must continue because we should try to notify via all +@@ -223,13 +223,13 @@ if __name__ == "__main__": + emit_crash_dbus_signal(PD) + except RuntimeError as ex: + sys.stderr.write("Cannot notify '{0}' via D-Bus: {1}\n". +- format(DIR_PATH, ex.message)) ++ format(DIR_PATH, str(ex))) + return_status = RETURN_FAILURE + except KeyError as ex: + # this is a bug in build_notification_problem_data() + sys.stderr.write("BUG: problem data misses required element '{0}'" + " required for D-Bus notification\n" +- .format(ex.message)) ++ .format(str(ex))) + + return_status = RETURN_FAILURE + +@@ -247,13 +247,13 @@ if __name__ == "__main__": + run_autoreport(PD, event_name) + except RuntimeError as ex: + sys.stderr.write("Cannot notify '{0}' via uReport: {1}\n". +- format(DIR_PATH, ex.message)) ++ format(DIR_PATH, str(ex))) + return_status = RETURN_FAILURE + except KeyError as ex: + # this is a bug in build_notification_problem_data() + sys.stderr.write( + "BUG: problem data misses required element '{0}'" +- " required for uReport notification\n".format(ex.message)) ++ " required for uReport notification\n".format(str(ex))) + + return_status = RETURN_FAILURE + +-- +2.5.0 + diff --git a/0033-introduce-bodhi2-to-abrt-bodhi.patch b/0033-introduce-bodhi2-to-abrt-bodhi.patch new file mode 100644 index 0000000..e8a6df0 --- /dev/null +++ b/0033-introduce-bodhi2-to-abrt-bodhi.patch @@ -0,0 +1,317 @@ +From 084a2aaa6373f178d6bf1ac66c196476d2faa438 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 25 Aug 2015 16:03:51 +0200 +Subject: [PATCH] introduce bodhi2 to abrt-bodhi + +Resolves: rhbz#1256493 + +Signed-off-by: Jakub Filak +--- + configure.ac | 1 + + src/plugins/Makefile.am | 2 + + src/plugins/bodhi.c | 197 +++++++++++++++++++++++++++--------------------- + 3 files changed, 114 insertions(+), 86 deletions(-) + +diff --git a/configure.ac b/configure.ac +index b372e12..1013e3b 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -376,6 +376,7 @@ PKG_CHECK_MODULES([JSON_C], [json], [ + if test -z "$NO_BODHI" + then + PKG_CHECK_MODULES([LIBREPORT_WEB], [libreport-web]) ++PKG_CHECK_MODULES([HAWKEY], [hawkey]) + AM_CONDITIONAL(BUILD_BODHI, true) + else + AM_CONDITIONAL(BUILD_BODHI, false) +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index aa426ff..1c1ff8a 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -366,10 +366,12 @@ abrt_bodhi_SOURCES = \ + $(LIBREPORT_WEB_CFLAGS) \ + $(JSON_C_CFLAGS) \ + $(RPM_CFLAGS) \ ++ $(HAWKEY_CFLAGS) \ + -D_GNU_SOURCE + abrt_bodhi_LDADD = \ + $(JSON_C_LIBS) \ + $(RPM_LIBS) \ ++ $(HAWKEY_LIBS) \ + $(LIBREPORT_LIBS) \ + $(LIBREPORT_WEB_LIBS) + endif +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index fcdbd83..831f5ff 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + #include + #include +@@ -32,85 +33,103 @@ + /* bodhi returns json structure + + { +- "num_items":2, +- "title":"2 updats found", +- "tg_flash":null, +- "updates":[ +- { +- "status":"stable", +- "close_bugs":true, +- "request":null, +- "date_submitted":"2011-03-18 17:25:14", +- "unstable_karma":-3, +- "submitter":"twaugh", +- "critpath":false, +- "approved":null, +- "stable_karma":2, +- "date_pushed":"2011-03-19 05:34:27", +- "builds":[ +- { +- "nvr":"system-config-printer-1.3.2-1.fc15", +- "package":{ +- "suggest_reboot":false, +- "committers":[ +- "twaugh", +- "jpopelka" +- ], +- "name":"system-config-printer" +- } +- }, +- { +- .... +- } +- ], +- "title":"system-config-printer-1.3.2-1.fc15", +- "notes":"This update fixes several bugs and re-enables translations that were accidentally disabled.", +- "date_modified":null, +- "nagged":null, +- "bugs":[ +- { +- "bz_id":685098, +- "security":false, +- "parent":false, +- "title":"[abrt] system-config-printer-1.3.1-1.fc15: authconn.py:197:_connect:RuntimeError: failed to connect to server" +- }, +- { +- ... +- } +- ], +- "comments":[ +- { +- "group":null, +- "karma":0, +- "anonymous":false, +- "author":"bodhi", +- "timestamp":"2011-03-18 17:26:34", +- "text":"This update has been submitted for testing by twaugh. " +- }, +- { +- ... +- } +- ], +- "critpath_approved":false, +- "updateid":"FEDORA-2011-3596", +- "karma":0, +- "release":{ +- "dist_tag":"dist-f15", +- "id_prefix":"FEDORA", +- "locked":false, +- "name":"F15", +- "long_name":"Fedora 15" +- }, +- "type":"bugfix" +- }, +- { +- ... +- } +- ] ++ "rows_per_page": 20, ++ "total": 1, ++ "chrome": true, ++ "display_user": true, ++ "pages": 1, ++ "updates": [ ++ { ++ "close_bugs": true, ++ "old_updateid": "FEDORA-2015-13720", ++ "pushed": true, ++ "require_testcases": false, ++ "critpath": false, ++ "date_approved": null, ++ "stable_karma": null, ++ "date_pushed": "2015-08-19 04:49:00", ++ "requirements": null, ++ "severity": "unspecified", ++ "title": "hwloc-1.11.0-3.fc22", ++ "suggest": "unspecified", ++ "require_bugs": false, ++ "comments": [ ++ { ++ "bug_feedback": [], ++ "user_id": 91, ++ "text": "This update has been submitted for testing by jhladky. ", ++ "testcase_feedback": [], ++ "karma_critpath": 0, ++ "update": 21885, ++ "update_id": 21885, ++ "karma": 0, ++ "anonymous": false, ++ "timestamp": "2015-08-18 13:38:35", ++ "id": 166016, ++ "user": {"stacks": [], ++ "name": "bodhi", ++ "avatar": "https://apps.fedoraproject.org/img/icons/bodhi-24.png"} ++ }, ++ { ++ ... ++ } ++ ], ++ "updateid": "FEDORA-2015-13720", ++ "cves": [], ++ "type": "bugfix", ++ "status": "testing", ++ "date_submitted": "2015-08-18 13:37:26", ++ "unstable_karma": null, ++ "submitter": "jhladky", ++ "user": ++ { ++ "stacks": [], ++ "buildroot_overrides": [], ++ "name": "jhladky", ++ "avatar": "https://seccdn.libravatar.org/avatar/b838b78fcf707a13cdaeb1c846d514e614d617cbf2c106718e71cb397607f59b?s=24&d=retro" ++ }, ++ "locked": false, ++ "builds": [{"override": null, ++ "nvr": "hwloc-1.11.0-3.fc22"}], ++ "date_modified": null, ++ "test_cases": [], ++ "notes": "Fix for BZ1253977", ++ "request": null, ++ "bugs": [ ++ { ++ "bug_id": 1253977, ++ "security": false, ++ "feedback": [], ++ "parent": false, ++ "title": "conflict between hwloc-libs-1.11.0-1.fc22.i686 and hwloc-libs-1.11.0-1.fc22.x86_64" ++ } ++ ], ++ "alias": "FEDORA-2015-13720", ++ "karma": 0, ++ "release": ++ { ++ "dist_tag": "f22", ++ "name": "F22", ++ "testing_tag": "f22-updates-testing", ++ "pending_stable_tag": "f22-updates-pending", ++ "long_name": "Fedora 22", ++ "state": "current", ++ "version": "22", ++ "override_tag": "f22-override", ++ "branch": "f22", ++ "id_prefix": "FEDORA", ++ "pending_testing_tag": "f22-updates-testing-pending", ++ "stable_tag": "f22-updates", ++ "candidate_tag": "f22-updates-candidate" ++ } ++ } ++ ], ++ "display_request": true, ++ "page": 1 + } + */ + +-static const char *bodhi_url = "https://admin.fedoraproject.org/updates"; ++static const char *bodhi_url = "https://bodhi.fedoraproject.org/updates"; + + struct bodhi { + char *nvr; +@@ -202,7 +221,7 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) + { + + int num_items = 0; +- bodhi_read_value(json, "num_items", &num_items, BODHI_READ_INT); ++ bodhi_read_value(json, "total", &num_items, BODHI_READ_INT); + if (num_items <= 0) + return NULL; + +@@ -241,13 +260,19 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) + b = xzalloc(sizeof(struct bodhi)); + + char *name = NULL; ++ long ign_e; ++ char *ign_v, *ign_r, *ign_a; ++ + json_object *build = json_object_array_get_idx(builds_item, k); + + bodhi_read_value(build, "nvr", &b->nvr, BODHI_READ_STR); + +- json_object *package = NULL; +- bodhi_read_value(build, "package", &package, BODHI_READ_JSON_OBJ); +- bodhi_read_value(package, "name", &name, BODHI_READ_STR); ++ if (hy_split_nevra(b->nvr, &name, &ign_e, &ign_v, &ign_r, &ign_a)) ++ error_msg_and_die("hawkey failed to parse '%s'", b->nvr); ++ ++ free(ign_v); ++ free(ign_r); ++ free(ign_a); + + struct bodhi *bodhi_tbl_item = g_hash_table_lookup(bodhi_table, name); + if (bodhi_tbl_item && rpmvercmp(bodhi_tbl_item->nvr, b->nvr) > 0) +@@ -287,7 +312,7 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) + + static GHashTable *bodhi_query_list(const char *query, const char *release) + { +- char *bodhi_url_bugs = xasprintf("%s/list", bodhi_url); ++ char *bodhi_url_bugs = xasprintf("%s/?%s", bodhi_url, query); + + post_state_t *post_state = new_post_state(POST_WANT_BODY + | POST_WANT_SSL_VERIFY +@@ -298,8 +323,8 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) + NULL + }; + +- post_string(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", +- headers, query); ++ get(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", ++ headers); + + if (post_state->http_resp_code != 200) + { +@@ -397,7 +422,7 @@ int main(int argc, char **argv) + { + if (release) + { +- query = strbuf_append_strf(query, "release=%s&", release); ++ query = strbuf_append_strf(query, "releases=%s&", release); + } + else + { +@@ -414,7 +439,7 @@ int main(int argc, char **argv) + map_string_t *osinfo = new_map_string(); + problem_data_get_osinfo(problem_data, osinfo); + parse_osinfo_for_rhts(osinfo, &product, &version); +- query = strbuf_append_strf(query, "release=f%s&", version); ++ query = strbuf_append_strf(query, "releases=f%s&", version); + free(product); + free(version); + free_map_string(osinfo); +@@ -424,7 +449,7 @@ int main(int argc, char **argv) + if (argv[optind]) + { + char *escaped = g_uri_escape_string(argv[optind], NULL, 0); +- query = strbuf_append_strf(query, "package=%s&", escaped); ++ query = strbuf_append_strf(query, "packages=%s&", escaped); + free(escaped); + } + +-- +2.5.0 + diff --git a/0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch b/0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch new file mode 100644 index 0000000..b50343a --- /dev/null +++ b/0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch @@ -0,0 +1,28 @@ +From 7cf5d9fe151713b65314c714c9968f04367691fe Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 26 Aug 2015 08:28:07 +0200 +Subject: [PATCH] ccpp: do not break the reporting if a-bodhi fails + +Related: rhbz#1256493 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-analyze-ccpp-local.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-analyze-ccpp-local.in b/src/plugins/abrt-action-analyze-ccpp-local.in +index de131c8..5a42a03 100644 +--- a/src/plugins/abrt-action-analyze-ccpp-local.in ++++ b/src/plugins/abrt-action-analyze-ccpp-local.in +@@ -39,7 +39,7 @@ if [ $? = 0 ]; then + bug_id=$(reporter-bugzilla -h "`cat duphash`") + if $WITH_BODHI; then + if test -n "$bug_id"; then +- abrt-bodhi -r -b $bug_id ++ abrt-bodhi -r -b $bug_id || : + fi + fi + fi +-- +2.5.0 + diff --git a/0036-bodhi-add-ignoring-of-Rawhide.patch b/0036-bodhi-add-ignoring-of-Rawhide.patch new file mode 100644 index 0000000..a93b156 --- /dev/null +++ b/0036-bodhi-add-ignoring-of-Rawhide.patch @@ -0,0 +1,53 @@ +From 783f4ea59bfcd7f563a3b0ab0012f41fcd289eff Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 26 Aug 2015 13:18:26 +0200 +Subject: [PATCH] bodhi: add ignoring of Rawhide + +Resolves: rhbz#1256493 + +Signed-off-by: Matej Habrnal +--- + src/plugins/bodhi.c | 17 ++++++++++++++++- + 1 file changed, 16 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index 831f5ff..9149347 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -422,6 +422,10 @@ int main(int argc, char **argv) + { + if (release) + { ++ /* There are no bodhi updates for Rawhide */ ++ if (strcasecmp(release, "rawhide") == 0) ++ error_msg_and_die("Reselase \"%s\" is not supported",release); ++ + query = strbuf_append_strf(query, "releases=%s&", release); + } + else +@@ -439,10 +443,21 @@ int main(int argc, char **argv) + map_string_t *osinfo = new_map_string(); + problem_data_get_osinfo(problem_data, osinfo); + parse_osinfo_for_rhts(osinfo, &product, &version); +- query = strbuf_append_strf(query, "releases=f%s&", version); ++ ++ /* There are no bodhi updates for Rawhide */ ++ bool rawhide = strcasecmp(release, "rawhide") == 0; ++ if (!rawhide) ++ query = strbuf_append_strf(query, "releases=f%s&", version); ++ + free(product); + free(version); + free_map_string(osinfo); ++ ++ if (rawhide) ++ { ++ strbuf_free(query); ++ error_msg_and_die("Reselase \"Rawhide\" is not supported"); ++ } + } + } + +-- +2.5.0 + diff --git a/0037-bodhi-add-parsing-of-error-responses.patch b/0037-bodhi-add-parsing-of-error-responses.patch new file mode 100644 index 0000000..f783937 --- /dev/null +++ b/0037-bodhi-add-parsing-of-error-responses.patch @@ -0,0 +1,110 @@ +From 878d29d13773d035fc6a41d6b2c402f021e10dbd Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 26 Aug 2015 13:41:27 +0200 +Subject: [PATCH] bodhi: add parsing of error responses + +Resolves: rhbz#1256493 + +Signed-off-by: Matej Habrnal +--- + src/plugins/bodhi.c | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++- + 1 file changed, 69 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index 9149347..b348a26 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -217,6 +217,58 @@ static void print_bodhi(struct bodhi *b) + } + #endif + ++/* bodhi returns following json structure in case of error ++{ ++ "status": "error", ++ "errors": ++ [ ++ { ++ "location": "querystring", ++ "name": "releases", ++ "description": "Invalid releases specified: Rawhide" ++ } ++ ] ++} ++*/ ++static void bodhi_print_errors_from_json(json_object *json) ++{ ++ ++ json_object *errors_array = NULL; ++ bodhi_read_value(json, "errors", &errors_array, BODHI_READ_JSON_OBJ); ++ if (!errors_array) ++ { ++ error_msg("Error: unable to read 'errors' array from json"); ++ return; ++ } ++ ++ int errors_len = json_object_array_length(errors_array); ++ for (int i = 0; i < errors_len; ++i) ++ { ++ json_object *error = json_object_array_get_idx(errors_array, i); ++ if (!error) ++ { ++ error_msg("Error: unable to get 'error[%d]'", i); ++ json_object_put(errors_array); ++ return; ++ } ++ ++ char *desc_item = NULL; ++ bodhi_read_value(error, "description", &desc_item, BODHI_READ_STR); ++ if (!desc_item) ++ { ++ error_msg("Error: unable to get 'description' from 'error[%d]'", i); ++ continue; ++ } ++ ++ error_msg("Error: %s", desc_item); ++ json_object_put(error); ++ free(desc_item); ++ } ++ ++ json_object_put(errors_array); ++ return; ++} ++ + static GHashTable *bodhi_parse_json(json_object *json, const char *release) + { + +@@ -326,7 +378,7 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) + get(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", + headers); + +- if (post_state->http_resp_code != 200) ++ if (post_state->http_resp_code != 200 && post_state->http_resp_code != 400) + { + char *errmsg = post_state->curl_error_msg; + if (errmsg && errmsg[0]) +@@ -340,6 +392,22 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) + if (is_error(json)) + error_msg_and_die("fatal: unable parse response from bodhi server"); + ++ /* we must check the http_resp_code because only error responses contain ++ * 'status' item. 'bodhi_read_value' function prints an error message in ++ * the case it did not found the item */ ++ if (post_state->http_resp_code != 200) ++ { ++ char *status_item = NULL; ++ bodhi_read_value(json, "status", &status_item, BODHI_READ_STR); ++ if (status_item != NULL && strcmp(status_item, "error") == 0) ++ { ++ free(status_item); ++ bodhi_print_errors_from_json(json); ++ json_object_put(json); ++ xfunc_die(); // error_msg are printed in bodhi_print_errors_from_json ++ } ++ } ++ + GHashTable *bodhi_table = bodhi_parse_json(json, release); + json_object_put(json); + free_post_state(post_state); +-- +2.5.0 + diff --git a/abrt.spec b/abrt.spec index baeae6a..5b85436 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,13 +43,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.6.2 +%define libreport_ver 2.6.2-4 %define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -86,6 +86,17 @@ Patch0023: 0023-ccpp-use-global-TID.patch #Patch0025: 0025-testsutie-first-wait_for_hooks-then-get_crash_path.patch #Patch0026: 0026-testsuite-make-ccpp-plugin-hook-unwind-more-robust.patch Patch0027: 0027-correct-usage-of-abrt-gdb-exploitable.patch +Patch0028: 0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch +Patch0029: 0029-cli-don-t-start-reporting-of-not-reportable-problems.patch +#Patch0030: 0030-testsuite-cli-sanity-not-reportable-problems-are-not.patch +#Patch0031: 0031-testsuite-useless-var_log_messages-files-are-not-cre.patch +Patch0032: 0032-convert-all-ex.message-stmts-to-str-ex.patch +Patch0033: 0033-introduce-bodhi2-to-abrt-bodhi.patch +#Patch0034: 0034-spec-add-hawkey-to-BRs-of-abrt-bodhi.patch +Patch0035: 0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch +Patch0036: 0036-bodhi-add-ignoring-of-Rawhide.patch +Patch0037: 0037-bodhi-add-parsing-of-error-responses.patch +#Patch0038: 0038-testsuite-d-e-handling-set-PrivateReports-to-no-in-a.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -291,6 +302,7 @@ BuildRequires: json-c-devel Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} BuildRequires: libreport-web-devel >= %{libreport_ver} +BuildRequires: hawkey-devel Obsoletes: libreport-plugin-bodhi > 0.0.1 Provides: libreport-plugin-bodhi @@ -1073,6 +1085,17 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Aug 26 2015 Matej Habrnal 2.6.2-7 +- bodhi: add parsing of error responses +- bodhi: add ignoring of Rawhide +- do not break the reporting if a-bodhi fails +- spec: add hawkey to BRs of abrt-bodhi +- introduce bodhi2 to abrt-bodhi +- convert all 'ex.message' stmts to 'str(ex)' +- don't start reporting of not-reportable problems +- add bash on the package blacklist +- Resolves #1250379 + * Fri Aug 14 2015 Matej Habrnal 2.6.2-6 - ccpp - use global TID - fix comment related to 'MakeCompatCore' option in CCpp.conf From 58ac8d6e9a308a8922cf8b2a89539f97b539f882 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Tue, 15 Sep 2015 12:55:38 +0200 Subject: [PATCH 141/318] bodhi: fix a segfault when testing an os-release opt for 'rawhide' and actualize the abrt-bodhi man page Signed-off-by: Matej Habrnal --- ...oc-actualize-the-abrt-bodhi-man-page.patch | 41 +++++++++++++++++++ ...ault-when-testing-an-os-release-opt-.patch | 29 +++++++++++++ abrt.spec | 17 +++++++- 3 files changed, 86 insertions(+), 1 deletion(-) create mode 100644 0042-doc-actualize-the-abrt-bodhi-man-page.patch create mode 100644 0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch diff --git a/0042-doc-actualize-the-abrt-bodhi-man-page.patch b/0042-doc-actualize-the-abrt-bodhi-man-page.patch new file mode 100644 index 0000000..9c3a163 --- /dev/null +++ b/0042-doc-actualize-the-abrt-bodhi-man-page.patch @@ -0,0 +1,41 @@ +From 655a356abb1f0557690fa21a0d008af472c56788 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 2 Sep 2015 12:29:31 +0200 +Subject: [PATCH] doc: actualize the abrt-bodhi man page + +Parameters -d and -u were not in the man page. + +Signed-off-by: Matej Habrnal +--- + doc/abrt-bodhi.txt | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/doc/abrt-bodhi.txt b/doc/abrt-bodhi.txt +index 945a4a9..fe790d6 100644 +--- a/doc/abrt-bodhi.txt ++++ b/doc/abrt-bodhi.txt +@@ -7,7 +7,7 @@ abrt-bodhi - The ABRT bodhi client. + + SYNOPSIS + -------- +-'abrt-bodhi' [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... ++'abrt-bodhi' [-v] [-r[RELEASE]] [-u URL] [-d DIR] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... + + DESCRIPTION + ----------- +@@ -25,6 +25,12 @@ OPTIONS + -b, --bugs ID1,ID2,.. + Specify any number of Bugzilla IDs (--bugs=1234,5678) + ++-d, --problem-dir DIR:: ++ Path to problem directory ++ ++-u, --url URL:: ++ Specify a bodhi server url ++ + AUTHORS + ------- + * ABRT team +-- +2.5.0 + diff --git a/0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch b/0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch new file mode 100644 index 0000000..6e4b603 --- /dev/null +++ b/0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch @@ -0,0 +1,29 @@ +From afe242542e3c372a05de51a7259f417c1df058d2 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 7 Sep 2015 10:23:30 +0200 +Subject: [PATCH] bodhi: fix a segfault when testing an os-release opt for + 'rawhide' + +Resolves: rhbz#1260259 + +Signed-off-by: Jakub Filak +--- + src/plugins/bodhi.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index b348a26..bbd88f7 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -513,7 +513,7 @@ int main(int argc, char **argv) + parse_osinfo_for_rhts(osinfo, &product, &version); + + /* There are no bodhi updates for Rawhide */ +- bool rawhide = strcasecmp(release, "rawhide") == 0; ++ bool rawhide = strcasecmp(version, "rawhide") == 0; + if (!rawhide) + query = strbuf_append_strf(query, "releases=f%s&", version); + +-- +2.5.0 + diff --git a/abrt.spec b/abrt.spec index 5b85436..09fd5f5 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.6.2 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -97,6 +97,17 @@ Patch0035: 0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch Patch0036: 0036-bodhi-add-ignoring-of-Rawhide.patch Patch0037: 0037-bodhi-add-parsing-of-error-responses.patch #Patch0038: 0038-testsuite-d-e-handling-set-PrivateReports-to-no-in-a.patch +#Patch0039: 0039-autogen-use-dnf-instead-of-yum-to-install-dependenci.patch +#Patch0040: 0040-testsuite-fix-test-oops_processing.patch +#Patch0041: 0041-testsuite-improve-logging-in-dont-blame-interpret-te.patch +Patch0042: 0042-doc-actualize-the-abrt-bodhi-man-page.patch +#Patch0043: 0043-testsuite-improve-logging-in-bz652338-removed-proc-P.patch +#Patch0044: 0044-testsuite-fix-console-notification-test.patch +#Patch0045: 0045-testsuite-verify-core_backtrace-frames-generated-by-.patch +Patch0046: 0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch +#Patch0047: 0047-testsuite-fix-a-bug-in-ccpp-plugin-hook-unwind.patch +#Patch0048: 0048-testsuite-run-will_segfault-in-new-PID-NS.patch +#Patch0049: 0049-testsuite-ccpp-plugin-test-crash-in-non-init-PID-NS.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -1085,6 +1096,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Sep 15 2015 Matej Habrnal 2.6.2-8 +- doc: actualize the abrt-bodhi man page +- bodhi: fix a segfault when testing an os-release opt for 'rawhide' + * Wed Aug 26 2015 Matej Habrnal 2.6.2-7 - bodhi: add parsing of error responses - bodhi: add ignoring of Rawhide From 52400fcf42289bd53a4c6335e9606c7cce5e6f1b Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Thu, 15 Oct 2015 16:25:31 +0200 Subject: [PATCH 142/318] New version 2.7.0 Signed-off-by: Matej Habrnal --- .gitignore | 1 + abrt.spec | 95 ++++++++++++++++++++++++------------------------------ sources | 2 +- 3 files changed, 45 insertions(+), 53 deletions(-) diff --git a/.gitignore b/.gitignore index 3475e35..7ac1a98 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,4 @@ abrt-1.1.13.tar.gz /abrt-2.6.0.tar.gz /abrt-2.6.1.tar.gz /abrt-2.6.2.tar.gz +/abrt-2.7.0.tar.gz diff --git a/abrt.spec b/abrt.spec index 09fd5f5..4e0e062 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,13 +43,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.6.2-4 +%define libreport_ver 2.6.3 %define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.6.2 -Release: 8%{?dist} +Version: 2.7.0 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -59,55 +59,6 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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-use-gettext-instead-of-lgettext-in-all-python-script.patch -Patch0002: 0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch -#Patch0003: 0003-testsuite-pstore-adapt-to-merging-in-descending-orde.patch -#Patch0004: 0004-testsuite-a-a-reporting-sanity-add-test-for-missing-.patch -#Patch0005: 0005-testsuite-pstore-harvest-adapt-to-merging-in-descend.patch -Patch0006: 0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch -Patch0007: 0007-vmcore-read-vmcore-by-chunks.patch -Patch0008: 0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch -#Patch0009: 0009-testsuite-add-the-results-for-pstoreoops.patch -Patch0010: 0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch -#Patch0011: 0011-testsuite-make-check_dump_dir_attributes-distro-spec.patch -#Patch0012: 0012-testsuite-make-kernel-vmcore-harvest-distro-specific.patch -#Patch0013: 0013-testsuite-make-oops-processing-distro-specific.patch -#Patch0014: 0014-testsuite-make-journald-integration-test-distro-spec.patch -#Patch0015: 0015-testsuite-fix-path-to-aux-lib.sh-in-distro_specific-.patch -#Patch0016: 0016-testsuite-add-a-test-checking-sanity-of-abrtd-logs.patch -#Patch0017: 0017-testsuite-make-the-meaningful-logs-test-working-for-.patch -Patch0018: 0018-dbus-api-unify-reporting-of-errors.patch -Patch0019: 0019-cli-fix-testing-of-DBus-API-return-codes.patch -#Patch0020: 0020-testsuite-dbus-configuration-read-option-values-from.patch -Patch0021: 0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch -#Patch0022: 0022-testsuite-abrt-auto-reporting-sanity-exclude-one-pha.patch -Patch0023: 0023-ccpp-use-global-TID.patch -#Patch0024: 0024-testsuite-generate-core-backtrace-in-new-PID-NS.patch -#Patch0025: 0025-testsutie-first-wait_for_hooks-then-get_crash_path.patch -#Patch0026: 0026-testsuite-make-ccpp-plugin-hook-unwind-more-robust.patch -Patch0027: 0027-correct-usage-of-abrt-gdb-exploitable.patch -Patch0028: 0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch -Patch0029: 0029-cli-don-t-start-reporting-of-not-reportable-problems.patch -#Patch0030: 0030-testsuite-cli-sanity-not-reportable-problems-are-not.patch -#Patch0031: 0031-testsuite-useless-var_log_messages-files-are-not-cre.patch -Patch0032: 0032-convert-all-ex.message-stmts-to-str-ex.patch -Patch0033: 0033-introduce-bodhi2-to-abrt-bodhi.patch -#Patch0034: 0034-spec-add-hawkey-to-BRs-of-abrt-bodhi.patch -Patch0035: 0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch -Patch0036: 0036-bodhi-add-ignoring-of-Rawhide.patch -Patch0037: 0037-bodhi-add-parsing-of-error-responses.patch -#Patch0038: 0038-testsuite-d-e-handling-set-PrivateReports-to-no-in-a.patch -#Patch0039: 0039-autogen-use-dnf-instead-of-yum-to-install-dependenci.patch -#Patch0040: 0040-testsuite-fix-test-oops_processing.patch -#Patch0041: 0041-testsuite-improve-logging-in-dont-blame-interpret-te.patch -Patch0042: 0042-doc-actualize-the-abrt-bodhi-man-page.patch -#Patch0043: 0043-testsuite-improve-logging-in-bz652338-removed-proc-P.patch -#Patch0044: 0044-testsuite-fix-console-notification-test.patch -#Patch0045: 0045-testsuite-verify-core_backtrace-frames-generated-by-.patch -Patch0046: 0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch -#Patch0047: 0047-testsuite-fix-a-bug-in-ccpp-plugin-hook-unwind.patch -#Patch0048: 0048-testsuite-run-will_segfault-in-new-PID-NS.patch -#Patch0049: 0049-testsuite-ccpp-plugin-test-crash-in-non-init-PID-NS.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -135,6 +86,12 @@ BuildRequires: systemd-python BuildRequires: python3-systemd BuildRequires: augeas BuildRequires: libselinux-devel +BuildRequires: python-argcomplete +BuildRequires: python3-argcomplete +BuildRequires: python-argh +BuildRequires: python3-argh +BuildRequires: python-humanize +BuildRequires: python3-humanize Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} @@ -356,6 +313,22 @@ Requires: abrt-dbus This package contains a simple command line client for processing abrt reports in command line environment. +%package cli-ng +Summary: %{name}'s improved command line interface +Group: User Interface/Desktops +Requires: %{name} = %{version}-%{release} +Requires: libreport-cli >= %{libreport_ver} +Requires: abrt-libs = %{version}-%{release} +Requires: abrt-dbus +Requires: abrt-python +Requires: abrt-addon-ccpp +Requires: python-argh +Requires: python-argcomplete +Requires: python-humanize + +%description cli-ng +New generation command line interface for ABRT + %package cli Summary: Virtual package to make easy default installation on non-graphical environments Group: Applications/System @@ -1033,6 +1006,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_bindir}/abrt-cli %{_mandir}/man1/abrt-cli.1.gz +%files cli-ng +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion +%{_bindir}/abrt +%{python_sitearch}/abrtcli/ +%{_mandir}/man1/abrt.1.gz + %files desktop %defattr(-,root,root,-) @@ -1051,7 +1031,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %files plugin-bodhi %defattr(-,root,root,-) %{_bindir}/abrt-bodhi +%{_bindir}/abrt-action-find-bodhi-update %{_mandir}/man1/abrt-bodhi.1.gz +%{_mandir}/man1/abrt-action-find-bodhi-update.1.gz %files dbus %defattr(-,root,root,-) @@ -1096,6 +1078,15 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Oct 15 2015 Matej Habrnal 2.7.0-1 +- cli-ng: initial +- bodhi: introduce wrapper for 'reporter-bugzilla -h' and 'abrt-bodhi' +- handle-event: remove obsolete workaround +- remove 'not needed' code +- doc: change /var/tmp/abrt to /var/spool/abrt +- doc: fix default DumpLocation in abrt.conf man page +- abrt-dump-xorg: support Xorg log backtraces prefixed by (EE) + * Tue Sep 15 2015 Matej Habrnal 2.6.2-8 - doc: actualize the abrt-bodhi man page - bodhi: fix a segfault when testing an os-release opt for 'rawhide' diff --git a/sources b/sources index d727097..ce9bff2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -749274c6a9c4dae7422639a2c2d0c217 abrt-2.6.2.tar.gz +1e132c42d1f0161db95c82c0c720e697 abrt-2.7.0.tar.gz From 820caf519c8843d7a2c8bb4e30bb64414620d86c Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Wed, 28 Oct 2015 00:34:04 +0100 Subject: [PATCH 143/318] Fix broken problem details in abrt-cli/gnome-abrt --- ...expected-bytes-width-of-DBus-numbers.patch | 32 +++++++++++++++++++ abrt.spec | 6 +++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch diff --git a/0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch b/0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch new file mode 100644 index 0000000..f1418a0 --- /dev/null +++ b/0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch @@ -0,0 +1,32 @@ +From 7fe8403abed51dc951aa497bf149c19d61a19555 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 28 Oct 2015 00:21:12 +0100 +Subject: [PATCH] dbus: ensure expected bytes width of DBus numbers + +t - UINT64 - guint64 (unsigned long is not wide enough on 32bit architectures) + +Resolves: rhbz#1256456 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 44778a2..500ddb2 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -625,8 +625,8 @@ static void handle_method_call(GDBusConnection *connection, + + g_variant_builder_add(response_builder, "{s(its)}", + element_name, +- element_info->flags, +- size, ++ (gint32)element_info->flags, ++ (guint64)size, + element_info->content); + } + +-- +2.5.0 + diff --git a/abrt.spec b/abrt.spec index 4e0e062..2e97eb4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.7.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -59,6 +59,7 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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 +Patch0012: 0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -1078,6 +1079,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Oct 28 2015 Jakub Filak 2.7.0-2 +- Fix broken problem details in abrt-cli/gnome-abrt + * Thu Oct 15 2015 Matej Habrnal 2.7.0-1 - cli-ng: initial - bodhi: introduce wrapper for 'reporter-bugzilla -h' and 'abrt-bodhi' From 46dc322c4182ca91267c9c7f9607c68f26cb3287 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Fri, 6 Nov 2015 11:06:27 +0100 Subject: [PATCH 144/318] Rebuilt for Python3.5 rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 2e97eb4..e9c2ce2 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.7.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1079,6 +1079,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Nov 6 2015 Jakub Filak - 2.7.0-3 +- Rebuilt for Python3.5 rebuild + * Wed Oct 28 2015 Jakub Filak 2.7.0-2 - Fix broken problem details in abrt-cli/gnome-abrt From 55488e54c7f88efa84c9488c50546be3698c57f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 14 Nov 2015 15:00:41 -0500 Subject: [PATCH 145/318] Update requires on python-argcomplete --- abrt.spec | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/abrt.spec b/abrt.spec index e9c2ce2..62af06e 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.7.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -87,7 +87,7 @@ BuildRequires: systemd-python BuildRequires: python3-systemd BuildRequires: augeas BuildRequires: libselinux-devel -BuildRequires: python-argcomplete +BuildRequires: python2-argcomplete BuildRequires: python3-argcomplete BuildRequires: python-argh BuildRequires: python3-argh @@ -324,8 +324,9 @@ Requires: abrt-dbus Requires: abrt-python Requires: abrt-addon-ccpp Requires: python-argh -Requires: python-argcomplete +Requires: python2-argcomplete Requires: python-humanize +Requires: /usr/bin/register-python-argcomplete %description cli-ng New generation command line interface for ABRT @@ -548,6 +549,10 @@ ln -sf %{_datadir}/applications/abrt-applet.desktop ${RPM_BUILD_ROOT}%{_sysconfd # After everything is installed, remove info dir rm -f %{buildroot}%{_infodir}/dir +# Install completions script in the right place +rm %{buildroot}%{_sysconfdir}/bash_completion.d/abrt.bash_completion +install -Dpm0644 src/cli-ng/abrt.bash_completion %{buildroot}%{_datadir}/bash-completion/completions/abrt + %clean rm -rf $RPM_BUILD_ROOT @@ -1009,7 +1014,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %files cli-ng %defattr(-,root,root,-) -%config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion +%{_datadir}/bash-completion/completions/abrt %{_bindir}/abrt %{python_sitearch}/abrtcli/ %{_mandir}/man1/abrt.1.gz @@ -1079,6 +1084,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sat Nov 14 2015 Zbigniew Jędrzejewski-Szmek - 2.7.0-4 +- Update requires on python-argcomplete +- Move completion script to /usr + * Fri Nov 6 2015 Jakub Filak - 2.7.0-3 - Rebuilt for Python3.5 rebuild From 61650c58f26f4a473e29007f50176a45ab8a4f25 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Mon, 23 Nov 2015 16:32:33 +0100 Subject: [PATCH 146/318] New upstream release 2.7.1 CVE-2015-5273, CVE-2015-5287 Resolves: #1262252, #1284557 --- .gitignore | 1 + ...ead-of-lgettext-in-all-python-script.patch | 146 -------- ...eoops-merge-files-in-descending-orde.patch | 35 -- ...coded-Unicode-to-hashlib.sha1.update.patch | 44 --- 0007-vmcore-read-vmcore-by-chunks.patch | 38 --- ...ing-fix-related-to-conditional-compi.patch | 33 -- ...to-conditional-compilation-of-man-pa.patch | 44 --- ...expected-bytes-width-of-DBus-numbers.patch | 32 -- 0018-dbus-api-unify-reporting-of-errors.patch | 99 ------ ...fix-testing-of-DBus-API-return-codes.patch | 56 ---- ...-related-to-MakeCompatCore-option-in.patch | 59 ---- 0023-ccpp-use-global-TID.patch | 37 -- ...orrect-usage-of-abrt-gdb-exploitable.patch | 46 --- ...-d-add-bash-on-the-package-blacklist.patch | 31 -- ...reporting-of-not-reportable-problems.patch | 45 --- ...nvert-all-ex.message-stmts-to-str-ex.patch | 85 ----- 0033-introduce-bodhi2-to-abrt-bodhi.patch | 317 ------------------ ...break-the-reporting-if-a-bodhi-fails.patch | 28 -- 0036-bodhi-add-ignoring-of-Rawhide.patch | 53 --- ...bodhi-add-parsing-of-error-responses.patch | 110 ------ ...oc-actualize-the-abrt-bodhi-man-page.patch | 41 --- ...ault-when-testing-an-os-release-opt-.patch | 29 -- abrt.spec | 23 +- sources | 2 +- 24 files changed, 21 insertions(+), 1413 deletions(-) delete mode 100644 0001-use-gettext-instead-of-lgettext-in-all-python-script.patch delete mode 100644 0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch delete mode 100644 0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch delete mode 100644 0007-vmcore-read-vmcore-by-chunks.patch delete mode 100644 0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch delete mode 100644 0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch delete mode 100644 0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch delete mode 100644 0018-dbus-api-unify-reporting-of-errors.patch delete mode 100644 0019-cli-fix-testing-of-DBus-API-return-codes.patch delete mode 100644 0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch delete mode 100644 0023-ccpp-use-global-TID.patch delete mode 100644 0027-correct-usage-of-abrt-gdb-exploitable.patch delete mode 100644 0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch delete mode 100644 0029-cli-don-t-start-reporting-of-not-reportable-problems.patch delete mode 100644 0032-convert-all-ex.message-stmts-to-str-ex.patch delete mode 100644 0033-introduce-bodhi2-to-abrt-bodhi.patch delete mode 100644 0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch delete mode 100644 0036-bodhi-add-ignoring-of-Rawhide.patch delete mode 100644 0037-bodhi-add-parsing-of-error-responses.patch delete mode 100644 0042-doc-actualize-the-abrt-bodhi-man-page.patch delete mode 100644 0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch diff --git a/.gitignore b/.gitignore index 7ac1a98..eecca2f 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ abrt-1.1.13.tar.gz /abrt-2.6.1.tar.gz /abrt-2.6.2.tar.gz /abrt-2.7.0.tar.gz +/abrt-2.7.1.tar.gz diff --git a/0001-use-gettext-instead-of-lgettext-in-all-python-script.patch b/0001-use-gettext-instead-of-lgettext-in-all-python-script.patch deleted file mode 100644 index 4eeb7d4..0000000 --- a/0001-use-gettext-instead-of-lgettext-in-all-python-script.patch +++ /dev/null @@ -1,146 +0,0 @@ -From 6cac02cec6f457e4ab4edca8cebe2cda8dc4061d Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 22 Jul 2015 15:22:31 +0200 -Subject: [PATCH] use gettext instead of lgettext in all python scripts - -This is related to the transition from Python2 to Python3. - -lgettext returns an array of bytes but we require string (because of Python3). -Without this patch the scripts exit with 'TypeError' exception ('must be str, -not bytes'). - -Related to rhbz#1245600 - -Signed-off-by: Matej Habrnal ---- - src/daemon/abrt-handle-upload.in | 2 +- - src/plugins/abrt-action-analyze-core.in | 2 +- - src/plugins/abrt-action-analyze-vmcore.in | 2 +- - src/plugins/abrt-action-check-oops-for-alt-component.in | 2 +- - src/plugins/abrt-action-check-oops-for-hw-error.in | 2 +- - src/plugins/abrt-action-install-debuginfo.in | 2 +- - src/plugins/abrt-action-perform-ccpp-analysis.in | 2 +- - src/plugins/abrt-action-ureport | 2 +- - src/plugins/abrt-gdb-exploitable | 2 +- - 9 files changed, 9 insertions(+), 9 deletions(-) - -diff --git a/src/daemon/abrt-handle-upload.in b/src/daemon/abrt-handle-upload.in -index dc630bc..3db6561 100755 ---- a/src/daemon/abrt-handle-upload.in -+++ b/src/daemon/abrt-handle-upload.in -@@ -18,7 +18,7 @@ GETTEXT_PROGNAME = "abrt" - import locale - import gettext - --_ = lambda x: gettext.lgettext(x) -+_ = lambda x: gettext.gettext(x) - - def init_gettext(): - try: -diff --git a/src/plugins/abrt-action-analyze-core.in b/src/plugins/abrt-action-analyze-core.in -index 486994a..448bdab 100644 ---- a/src/plugins/abrt-action-analyze-core.in -+++ b/src/plugins/abrt-action-analyze-core.in -@@ -12,7 +12,7 @@ GETTEXT_PROGNAME = "@PACKAGE@" - import locale - import gettext - --_ = lambda x: gettext.lgettext(x) -+_ = lambda x: gettext.gettext(x) - - - verbose = 0 -diff --git a/src/plugins/abrt-action-analyze-vmcore.in b/src/plugins/abrt-action-analyze-vmcore.in -index c3ae071..c91737f 100644 ---- a/src/plugins/abrt-action-analyze-vmcore.in -+++ b/src/plugins/abrt-action-analyze-vmcore.in -@@ -14,7 +14,7 @@ GETTEXT_PROGNAME = "abrt" - import locale - import gettext - --_ = lambda x: gettext.lgettext(x) -+_ = lambda x: gettext.gettext(x) - - def init_gettext(): - try: -diff --git a/src/plugins/abrt-action-check-oops-for-alt-component.in b/src/plugins/abrt-action-check-oops-for-alt-component.in -index 3dce42e..b5152c1 100644 ---- a/src/plugins/abrt-action-check-oops-for-alt-component.in -+++ b/src/plugins/abrt-action-check-oops-for-alt-component.in -@@ -9,7 +9,7 @@ import re - - GETTEXT_PROGNAME = "abrt" - --_ = gettext.lgettext -+_ = gettext.gettext - - tags = [ - "WARNING:", -diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in -index ff8ff5d..400ed99 100644 ---- a/src/plugins/abrt-action-check-oops-for-hw-error.in -+++ b/src/plugins/abrt-action-check-oops-for-hw-error.in -@@ -9,7 +9,7 @@ import re - - GETTEXT_PROGNAME = "abrt" - --_ = gettext.lgettext -+_ = gettext.gettext - - def file_has_string(filename, string): - try: -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index ed453df..f70ebcd 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -26,7 +26,7 @@ GETTEXT_PROGNAME = "abrt" - import locale - import gettext - --_ = lambda x: gettext.lgettext(x) -+_ = lambda x: gettext.gettext(x) - - def init_gettext(): - try: -diff --git a/src/plugins/abrt-action-perform-ccpp-analysis.in b/src/plugins/abrt-action-perform-ccpp-analysis.in -index fd75fd4..c25de96 100644 ---- a/src/plugins/abrt-action-perform-ccpp-analysis.in -+++ b/src/plugins/abrt-action-perform-ccpp-analysis.in -@@ -19,7 +19,7 @@ from reportclient import (ask_yes_no_yesforever, - - GETTEXT_PROGNAME = "abrt" - --_ = gettext.lgettext -+_ = gettext.gettext - - def handle_event(event_name, problem_dir): - """Helper function handling a single event -diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport -index 1c63749..75e5c62 100755 ---- a/src/plugins/abrt-action-ureport -+++ b/src/plugins/abrt-action-ureport -@@ -17,7 +17,7 @@ GETTEXT_PROGNAME = "abrt" - import locale - import gettext - --_ = lambda x: gettext.lgettext(x) -+_ = lambda x: gettext.gettext(x) - - def init_gettext(): - try: -diff --git a/src/plugins/abrt-gdb-exploitable b/src/plugins/abrt-gdb-exploitable -index cfdf293..758c4c5 100755 ---- a/src/plugins/abrt-gdb-exploitable -+++ b/src/plugins/abrt-gdb-exploitable -@@ -14,7 +14,7 @@ import locale - import gdb - - GETTEXT_PROGNAME = "abrt" --_ = gettext.lgettext -+_ = gettext.gettext - - def init_gettext(): - try: --- -2.4.6 - diff --git a/0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch b/0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch deleted file mode 100644 index 90ccc4d..0000000 --- a/0002-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 668014b725660785c43b880e73a9ff723abc0be5 Mon Sep 17 00:00:00 2001 -From: "knoha@redhat.com" -Date: Fri, 24 Jul 2015 07:56:02 +0200 -Subject: [PATCH] abrt-merge-pstoreoops: merge files in descending order - -fs/pstore reads the data from kmsg_dump_get_buffer(), which starts at -the end of the kmsg buffer, in a while loop and increases Part no. in -each iteration. - -Related: rhbz#1233662 - -Signed-off-by: Jakub Filak ---- - src/hooks/abrt-merge-pstoreoops.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/hooks/abrt-merge-pstoreoops.c b/src/hooks/abrt-merge-pstoreoops.c -index 6fc3109..36f1e0b 100644 ---- a/src/hooks/abrt-merge-pstoreoops.c -+++ b/src/hooks/abrt-merge-pstoreoops.c -@@ -64,9 +64,9 @@ int compare_oops_texts(const void *a, const void *b) - return -1; - if (aa->panic_no > bb->panic_no) - return 1; -- if (aa->part_no < bb->part_no) -+ if (aa->part_no > bb->part_no) - return -1; -- return (aa->part_no > bb->part_no); -+ return (aa->part_no < bb->part_no); - } - - int main(int argc, char **argv) --- -2.4.6 - diff --git a/0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch b/0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch deleted file mode 100644 index d4a567e..0000000 --- a/0006-pass-encoded-Unicode-to-hashlib.sha1.update.patch +++ /dev/null @@ -1,44 +0,0 @@ -From ed7aaffdcac4f29cd513cd4c1086339512320a1c Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Fri, 24 Jul 2015 13:47:15 +0200 -Subject: [PATCH] pass encoded Unicode to hashlib.sha1.update() - -Python 3 compatibility commit. - -Related: rhbz#1246459 - -Signed-off-by: Jakub Filak ---- - src/plugins/abrt-action-check-oops-for-hw-error.in | 2 +- - src/plugins/abrt-action-generate-machine-id | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in -index 400ed99..1695ddb 100644 ---- a/src/plugins/abrt-action-check-oops-for-hw-error.in -+++ b/src/plugins/abrt-action-check-oops-for-hw-error.in -@@ -88,7 +88,7 @@ if __name__ == "__main__": - oops_hash = hashlib.sha1() - with open("backtrace", "r") as btfile: - for line in btfile: -- oops_hash.update(line) -+ oops_hash.update(line.encode()) - - with open_or_die("uuid", "w") as f: - f.write(oops_hash.hexdigest()) -diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id -index 1005b2c..63b5c93 100644 ---- a/src/plugins/abrt-action-generate-machine-id -+++ b/src/plugins/abrt-action-generate-machine-id -@@ -63,7 +63,7 @@ def generate_machine_id_dmidecode(): - data = dmixp.xpathEval(k) - for d in data: - # Update the hash as we find the fields we are looking for -- machine_id.update(d.get_content()) -+ machine_id.update(d.get_content().encode()) - - del dmixp - del xmldoc --- -2.4.6 - diff --git a/0007-vmcore-read-vmcore-by-chunks.patch b/0007-vmcore-read-vmcore-by-chunks.patch deleted file mode 100644 index a172ec5..0000000 --- a/0007-vmcore-read-vmcore-by-chunks.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 8f26482402179dc64b9488be05ef9686922446ec Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Fri, 24 Jul 2015 13:50:00 +0200 -Subject: [PATCH] vmcore: read vmcore by chunks - -Reading vmcore by lines was not a good idea and the switch to Python 3 -makes it impossible because of the binary format of that file (the file -does not contain only valid Unicode strings and that raises -UnicodeDecodeError from the for statement). - -Signed-off-by: Jakub Filak ---- - src/hooks/abrt_harvest_vmcore.py.in | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in -index c5e7d53..61a6e57 100644 ---- a/src/hooks/abrt_harvest_vmcore.py.in -+++ b/src/hooks/abrt_harvest_vmcore.py.in -@@ -214,9 +214,12 @@ def harvest_vmcore(): - hashobj = hashlib.sha1() - # Iterate over the file a line at a time in order to not load the whole - # vmcore file -- with open(os.path.join(f_full, 'vmcore'), 'r') as corefile: -- for line in corefile: -- hashobj.update(line) -+ with open(os.path.join(f_full, 'vmcore'), 'rb') as corefile: -+ while True: -+ chunk = corefile.read(8192) -+ if not chunk: -+ break -+ hashobj.update(chunk) - - dd = create_abrtd_info(destdirnew, hashobj.hexdigest()) - if dd is None: --- -2.4.6 - diff --git a/0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch b/0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch deleted file mode 100644 index a738522..0000000 --- a/0008-abrt-auto-reporting-fix-related-to-conditional-compi.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 6099fa38833e0679f32488770e59e10b6ac72b6d Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 28 Jul 2015 13:17:25 +0200 -Subject: [PATCH] abrt-auto-reporting: fix related to conditional compilation - -We discovered that conditional compilation in abrt-auto-reporting does not -work. We forgot add -DAUTHENTICATED_AUTOREPORTING=1 flag if -AUTHENTICATED_AUTOREPORTING is enabled. - -Related to rhbz#1191572 ---- - src/daemon/Makefile.am | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am -index a8f3fa2..563923a 100644 ---- a/src/daemon/Makefile.am -+++ b/src/daemon/Makefile.am -@@ -122,6 +122,11 @@ abrt_auto_reporting_CPPFLAGS = \ - -I$(srcdir)/../lib \ - $(LIBREPORT_CFLAGS) \ - -D_GNU_SOURCE -+ -+if AUTHENTICATED_AUTOREPORTING -+abrt_auto_reporting_CPPFLAGS += -DAUTHENTICATED_AUTOREPORTING=1 -+endif -+ - abrt_auto_reporting_LDADD = \ - ../lib/libabrt.la \ - $(LIBREPORT_LIBS) --- -2.4.3 - diff --git a/0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch b/0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch deleted file mode 100644 index e8ce118..0000000 --- a/0010-doc-fix-related-to-conditional-compilation-of-man-pa.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 930d035e7a56ecb18414b56d1fa906f2948b2d9e Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 28 Jul 2015 16:20:47 +0200 -Subject: [PATCH] doc: fix related to conditional compilation of man page - -abrt-auto-reporting.txt is a copy of either -abrt-auto-reporting-authenticated.txt or -abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always -exists because MAN1_TXT variable contains it and is distributed (the file is listed -in the EXTRA_DIST variable). It would be difficult to ensure -to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it -from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems -like the easiest way. - -Related to rhbz#1191572 - -Signed-off-by: Matej Habrnal ---- - doc/Makefile.am | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/doc/Makefile.am b/doc/Makefile.am -index f39c3bf..fdd08cf 100644 ---- a/doc/Makefile.am -+++ b/doc/Makefile.am -@@ -82,6 +82,15 @@ MAN_SOURCE = - MAN_SOURCE += abrt-auto-reporting-authenticated.txt - MAN_SOURCE += abrt-auto-reporting-unauthenticated.txt - -+# abrt-auto-reporting.txt is a copy of either -+# abrt-auto-reporting-authenticated.txt or -+# abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always -+# exists because MAN1_TXT variable contains it and is distributed (the file is listed -+# in the EXTRA_DIST variable). It would be difficult to ensure -+# to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it -+# from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems -+# like the easiest way. -+.PHONY: abrt-auto-reporting.txt - if AUTHENTICATED_AUTOREPORTING - abrt-auto-reporting.txt: abrt-auto-reporting-authenticated.txt - else --- -2.4.3 - diff --git a/0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch b/0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch deleted file mode 100644 index f1418a0..0000000 --- a/0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 7fe8403abed51dc951aa497bf149c19d61a19555 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 28 Oct 2015 00:21:12 +0100 -Subject: [PATCH] dbus: ensure expected bytes width of DBus numbers - -t - UINT64 - guint64 (unsigned long is not wide enough on 32bit architectures) - -Resolves: rhbz#1256456 - -Signed-off-by: Jakub Filak ---- - src/dbus/abrt-dbus.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c -index 44778a2..500ddb2 100644 ---- a/src/dbus/abrt-dbus.c -+++ b/src/dbus/abrt-dbus.c -@@ -625,8 +625,8 @@ static void handle_method_call(GDBusConnection *connection, - - g_variant_builder_add(response_builder, "{s(its)}", - element_name, -- element_info->flags, -- size, -+ (gint32)element_info->flags, -+ (guint64)size, - element_info->content); - } - --- -2.5.0 - diff --git a/0018-dbus-api-unify-reporting-of-errors.patch b/0018-dbus-api-unify-reporting-of-errors.patch deleted file mode 100644 index 6faaa0b..0000000 --- a/0018-dbus-api-unify-reporting-of-errors.patch +++ /dev/null @@ -1,99 +0,0 @@ -From e027392d560aa5f4cf11151bf8b53183502ac464 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 11 Aug 2015 09:54:55 +0200 -Subject: [PATCH] dbus-api: unify reporting of errors - -User ERR_PTR for failures in all functions because some of the functions -use NULL as a valid response (NULL is an empty GList). - -Related: rhbz#1224984 - -Signed-off-by: Jakub Filak ---- - src/include/libabrt.h | 16 +++++++++------- - src/lib/problem_api_dbus.c | 2 +- - 2 files changed, 10 insertions(+), 8 deletions(-) - -diff --git a/src/include/libabrt.h b/src/include/libabrt.h -index 4e73a0d..da565f9 100644 ---- a/src/include/libabrt.h -+++ b/src/include/libabrt.h -@@ -163,7 +163,7 @@ void koops_print_suspicious_strings_filtered(const regex_t **filterout); - - Requires authorization - -- @return 0 if successfull non-zeru on failure -+ @return 0 if successful; non-zero on failure - */ - int chown_dir_over_dbus(const char *problem_dir_path); - -@@ -181,7 +181,7 @@ int test_exist_over_dbus(const char *problem_id, const char *element_name); - - Might require authorization - -- @return Positive number if such the proble is complete, 0 if doesn't and negative number if an error occurs. -+ @return Positive number if the problem is complete, 0 if doesn't and negative number if an error occurs. - */ - int dbus_problem_is_complete(const char *problem_id); - -@@ -198,7 +198,8 @@ char *load_text_over_dbus(const char *problem_id, const char *element_name); - @brief Delets multiple problems specified by their id (as returned from problem_data_save) - - @param problem_dir_paths List of problem ids -- @return 0 if operation was successfull, non-zero on failure -+ -+ @return 0 if operation was successful, non-zero on failure - */ - - int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); -@@ -206,21 +207,21 @@ int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); - /** - @brief Fetches given problem elements for specified problem id - -- @return on failures returns non zero value and emits error message -+ @return returns non-zero value on failures and prints error message - */ - int fill_problem_data_over_dbus(const char *problem_dir_path, const char **elements, problem_data_t *problem_data); - - /** - @brief Fetches problem information for specified problem id - -- @return problem_data_t or NULL on failure -+ @return a valid pointer to problem_data_t or ERR_PTR on failure - */ - problem_data_t *get_problem_data_dbus(const char *problem_dir_path); - - /** - @brief Fetches full problem data for specified problem id - -- @return problem_data_t or ERR_PTR on failure -+ @return a valid pointer to problem_data_t or ERR_PTR on failure - */ - problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); - -@@ -228,7 +229,8 @@ problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); - @brief Fetches all problems from problem database - - @param authorize If set to true will try to fetch even problems owned by other users (will require root authorization over policy kit) -- @return List of problem ids or NULL on failure -+ -+ @return List of problem ids or ERR_PTR on failure (NULL is an empty list) - */ - GList *get_problems_over_dbus(bool authorize); - -diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c -index ce5c47b..0bf86e2 100644 ---- a/src/lib/problem_api_dbus.c -+++ b/src/lib/problem_api_dbus.c -@@ -165,7 +165,7 @@ problem_data_t *get_problem_data_dbus(const char *problem_dir_path) - { - error_msg(_("Can't get problem data from abrt-dbus")); - problem_data_free(pd); -- return NULL; -+ return ERR_PTR; - } - - return pd; --- -2.4.3 - diff --git a/0019-cli-fix-testing-of-DBus-API-return-codes.patch b/0019-cli-fix-testing-of-DBus-API-return-codes.patch deleted file mode 100644 index a7b150d..0000000 --- a/0019-cli-fix-testing-of-DBus-API-return-codes.patch +++ /dev/null @@ -1,56 +0,0 @@ -From de667f35fe7fd1d4a5fde8f5d0419387c33db9a2 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 11 Aug 2015 10:01:53 +0200 -Subject: [PATCH] cli: fix testing of DBus API return codes - -The DBus wrapper functions uses ERR_PTR to report an error, so the -callers has to test the returned pointers for NULL and for ERR_PTR. - -Related: rhbz#1224984 - -Signed-off-by: Jakub Filak ---- - src/cli/list.c | 3 +++ - src/cli/status.c | 5 ++++- - 2 files changed, 7 insertions(+), 1 deletion(-) - -diff --git a/src/cli/list.c b/src/cli/list.c -index 68dda47..d069695 100644 ---- a/src/cli/list.c -+++ b/src/cli/list.c -@@ -36,6 +36,9 @@ static problem_data_t *load_problem_data(const char *problem_id) - - /* First, check if there is a problem with the passed id */ - GList *problems = get_problems_over_dbus(g_cli_authenticate); -+ if (problems == ERR_PTR) -+ return NULL; -+ - GList *item = g_list_find_custom(problems, problem_id, (GCompareFunc)strcmp); - - /* (git requires at least 5 char hash prefix, we do the same) */ -diff --git a/src/cli/status.c b/src/cli/status.c -index 0635289..3620cea 100644 ---- a/src/cli/status.c -+++ b/src/cli/status.c -@@ -27,6 +27,9 @@ static unsigned int count_problem_dirs(unsigned long since) - unsigned count = 0; - - GList *problems = get_problems_over_dbus(g_cli_authenticate); -+ if (problems == ERR_PTR) -+ return count; -+ - for (GList *iter = problems; iter != NULL; iter = g_list_next(iter)) - { - const char *problem_id = (const char *)iter->data; -@@ -37,7 +40,7 @@ static unsigned int count_problem_dirs(unsigned long since) - } - - char *time_str = load_text_over_dbus(problem_id, FILENAME_LAST_OCCURRENCE); -- if (time_str == NULL) -+ if (time_str == ERR_PTR || time_str == NULL) - { - log_debug("Not counting problem %s: failed to get time element", problem_id); - continue; --- -2.4.3 - diff --git a/0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch b/0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch deleted file mode 100644 index de953aa..0000000 --- a/0021-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch +++ /dev/null @@ -1,59 +0,0 @@ -From 452fd36a5eac35dff14dbaf3a128c2b0e562db41 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 11 Aug 2015 16:17:40 +0200 -Subject: [PATCH] ccpp: fix comment related to 'MakeCompatCore' option in - CCpp.conf - -The comment fits only on the default core_pattern template. -If the core_pattern is not default, the comment does not fit. - -Related to rhbz#1252384 - -Signed-off-by: Matej Habrnal ---- - doc/abrt-CCpp.conf.txt | 9 +++++++-- - src/hooks/CCpp.conf | 9 +++++++-- - 2 files changed, 14 insertions(+), 4 deletions(-) - -diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt -index 498d53d..cf9b213 100644 ---- a/doc/abrt-CCpp.conf.txt -+++ b/doc/abrt-CCpp.conf.txt -@@ -11,8 +11,13 @@ The configuration file consists of items in the format "Option = Value". - Ithe following items are recognized: - - MakeCompatCore = 'yes' / 'no' ...:: -- If you also want to dump file named "core" -- in crashed process' current dir, set to "yes". -+ CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file -+ and stores the original template in the "/var/run/abrt/saved_core_pattern" -+ file. If you want CCpp hook to create a core dump file named according to -+ the original template as well, set 'MakeCompatCore' to 'yes'. -+ If the original template string starts with "|", the string "core" is used -+ instead of the template. -+ For more information about naming core dump files see 'man 5 core'. - - SaveBinaryImage = 'yes' / 'no' ...:: - Do you want a copy of crashed binary be saved? -diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf -index 92d7438..03b9b03 100644 ---- a/src/hooks/CCpp.conf -+++ b/src/hooks/CCpp.conf -@@ -1,7 +1,12 @@ - # Configuration file for CCpp hook - --# If you also want to dump file named "core" --# in crashed process' current dir, set to "yes" -+# CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file -+# and stores the original template in the "/var/run/abrt/saved_core_pattern" -+# file. If you want CCpp hook to create a core dump file named according to -+# the original template as well, set 'MakeCompatCore' to 'yes'. -+# If the original template string starts with "|", the string "core" is used -+# instead of the template. -+# For more information about naming core dump files see 'man 5 core'. - MakeCompatCore = yes - - # Do you want a copy of crashed binary be saved? --- -2.4.3 - diff --git a/0023-ccpp-use-global-TID.patch b/0023-ccpp-use-global-TID.patch deleted file mode 100644 index ff1f7d5..0000000 --- a/0023-ccpp-use-global-TID.patch +++ /dev/null @@ -1,37 +0,0 @@ -From d4758cf4c0c153ee41ddca06dcb213b210f4dd8b Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 12 Aug 2015 17:40:12 +0200 -Subject: [PATCH] ccpp: use global TID - -'%i' is TID of the thread from the crashed process's PID namespace but -abrt-hook-ccpp is run by kernel in the init PID namespace, so '%i' -is TID of a completely unrelated process. - -For mode details see 'man 5 core'. - -Related: rhbz#1252590 - -Signed-off-by: Jakub Filak ---- - src/hooks/abrt-install-ccpp-hook.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in -index 13832ab..707c57d 100755 ---- a/src/hooks/abrt-install-ccpp-hook.in -+++ b/src/hooks/abrt-install-ccpp-hook.in -@@ -11,9 +11,9 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" - SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" - HOOK_BIN="@libexecdir@/abrt-hook-ccpp" - # Must match percent_specifiers[] order in abrt-hook-ccpp.c: --PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %i" -+PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" - # Same, but with bogus "executable name" parameter --PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %i" -+PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" - - # core_pipe_limit specifies how many dump_helpers can run at the same time - # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing --- -2.4.3 - diff --git a/0027-correct-usage-of-abrt-gdb-exploitable.patch b/0027-correct-usage-of-abrt-gdb-exploitable.patch deleted file mode 100644 index ed88659..0000000 --- a/0027-correct-usage-of-abrt-gdb-exploitable.patch +++ /dev/null @@ -1,46 +0,0 @@ -From d3e01c97970b11d400aad2058bc215778da95513 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Mon, 17 Aug 2015 09:34:22 +0200 -Subject: [PATCH] correct usage of abrt-gdb-exploitable - -Fixes #988 -Related to bugzilla.redhat.com/1253590 - -Signed-off-by: Jakub Filak ---- - src/plugins/abrt-action-analyze-vulnerability | 2 +- - src/plugins/abrt-gdb-exploitable | 4 ++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/plugins/abrt-action-analyze-vulnerability b/src/plugins/abrt-action-analyze-vulnerability -index aa63ff0..be5a492 100755 ---- a/src/plugins/abrt-action-analyze-vulnerability -+++ b/src/plugins/abrt-action-analyze-vulnerability -@@ -30,7 +30,7 @@ export SIGNO_OF_THE_COREDUMP - # with explanation if severity is >= 4 - GDBOUT=$( - gdb --batch \ -- -ex 'python execfile("/usr/libexec/abrt-gdb-exploitable")' \ -+ -ex 'python exec(open("/usr/libexec/abrt-gdb-exploitable").read())' \ - -ex 'core-file ./coredump' \ - -ex 'abrt-exploitable 4 ./exploitable' \ - 2>&1 \ -diff --git a/src/plugins/abrt-gdb-exploitable b/src/plugins/abrt-gdb-exploitable -index 758c4c5..ac19668 100755 ---- a/src/plugins/abrt-gdb-exploitable -+++ b/src/plugins/abrt-gdb-exploitable -@@ -1,9 +1,9 @@ - #!/usr/bin/python3 - # This is a GDB plugin. - # Usage: --# gdb --batch -ex 'python execfile("THIS_FILE")' -ex run -ex abrt-exploitable PROG -+# gdb --batch -ex 'python exec(open("THIS_FILE").read())' -ex run -ex abrt-exploitable PROG - # or --# gdb --batch -ex 'python execfile("THIS_FILE")' -ex 'core COREDUMP' -ex abrt-exploitable -+# gdb --batch -ex 'python exec(open("THIS_FILE").read())' -ex 'core COREDUMP' -ex abrt-exploitable - - import sys - import os --- -2.4.3 - diff --git a/0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch b/0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch deleted file mode 100644 index 71250b0..0000000 --- a/0028-a-a-s-p-d-add-bash-on-the-package-blacklist.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 5938d89ac666e825aa880691fc109ae79b848f7a Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Thu, 20 Aug 2015 09:40:59 +0200 -Subject: [PATCH] a-a-s-p-d: add bash on the package blacklist - -In case of this package, the reported data doesn't yield sufficient information -to solve a bug. - -Related to rhbz#1250379 - -Signed-off-by: Matej Habrnal ---- - src/daemon/abrt-action-save-package-data.conf | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf -index 27b9607..0129399 100644 ---- a/src/daemon/abrt-action-save-package-data.conf -+++ b/src/daemon/abrt-action-save-package-data.conf -@@ -7,7 +7,7 @@ OpenGPGCheck = yes - - # Blacklisted packages - # --BlackList = nspluginwrapper, valgrind, strace, mono-core, firefox -+BlackList = nspluginwrapper, valgrind, strace, mono-core, firefox, bash - - # Process crashes in executables which do not belong to any package? - # --- -2.5.0 - diff --git a/0029-cli-don-t-start-reporting-of-not-reportable-problems.patch b/0029-cli-don-t-start-reporting-of-not-reportable-problems.patch deleted file mode 100644 index da7d8a1..0000000 --- a/0029-cli-don-t-start-reporting-of-not-reportable-problems.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 37794a0573fd7b3586e72071d27f27f173459142 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 20 Aug 2015 11:15:59 +0200 -Subject: [PATCH] cli: don't start reporting of not-reportable problems - -If the reported problem data contains 'not-reportable' element, the -reporting process fails unexpectedly and after the reporter already spent some -time on it. - -This commit ensures that the reporting process won't start, so -abrt-cli's behaviour will be consistent with ABRT GUI. - -However, this is not an ideal solution because we might want to allow -the reporter to report the problem directly to developers via e-mail. - -Closes #986 - -Signed-off-by: Jakub Filak ---- - src/cli/report.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/src/cli/report.c b/src/cli/report.c -index 19b4c51..cc4035e 100644 ---- a/src/cli/report.c -+++ b/src/cli/report.c -@@ -36,6 +36,15 @@ int _cmd_report(const char **dirs_strv, int remove) - continue; - } - -+ const int not_reportable = test_exist_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); -+ if (not_reportable != 0) -+ { -+ error_msg(_("Problem '%s' cannot be reported"), real_problem_id); -+ free(real_problem_id); -+ ++ret; -+ continue; -+ } -+ - const int res = chown_dir_over_dbus(real_problem_id); - if (res != 0) - { --- -2.5.0 - diff --git a/0032-convert-all-ex.message-stmts-to-str-ex.patch b/0032-convert-all-ex.message-stmts-to-str-ex.patch deleted file mode 100644 index 3d866bd..0000000 --- a/0032-convert-all-ex.message-stmts-to-str-ex.patch +++ /dev/null @@ -1,85 +0,0 @@ -From fe4196bd067e938303ec3cdee7c912e84cea6aa0 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 25 Aug 2015 08:25:19 +0200 -Subject: [PATCH] convert all 'ex.message' stmts to 'str(ex)' - -Python 3 exceptions do not have the 'message' attribute. -The 'message' attribute has been deprecated since Python 2.6 -https://www.python.org/dev/peps/pep-0352/ - -Signed-off-by: Jakub Filak ---- - src/plugins/abrt-action-generate-machine-id | 2 +- - src/plugins/abrt-action-notify | 12 ++++++------ - 2 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id -index 63b5c93..c547d7c 100644 ---- a/src/plugins/abrt-action-generate-machine-id -+++ b/src/plugins/abrt-action-generate-machine-id -@@ -110,7 +110,7 @@ def generate_machine_id(generators): - ids[sd] = workers[sd]() - except RuntimeError as ex: - logging.error("Machine-ID generator '{0}' failed: {1}" -- .format(sd, ex.message)) -+ .format(sd, str(ex))) - - return ids - -diff --git a/src/plugins/abrt-action-notify b/src/plugins/abrt-action-notify -index 716de45..ca8f807 100644 ---- a/src/plugins/abrt-action-notify -+++ b/src/plugins/abrt-action-notify -@@ -116,7 +116,7 @@ def emit_crash_dbus_signal(problem_data): - bus.send_message(msg) - except dbus.exceptions.DBusException as ex: - raise RuntimeError("Failed to emit D-Bus Crash signal: {0}" -- .format(ex.message)) -+ .format(str(ex))) - finally: - if bus is not None: - bus.close() -@@ -213,7 +213,7 @@ if __name__ == "__main__": - PD = build_notification_problem_data(DIR_PATH) - except ValueError as ex: - sys.stderr.write("Cannot notify '{0}': {1}\n". -- format(DIR_PATH, ex.message)) -+ format(DIR_PATH, str(ex))) - sys.exit(RETURN_FAILURE) - - # The execution must continue because we should try to notify via all -@@ -223,13 +223,13 @@ if __name__ == "__main__": - emit_crash_dbus_signal(PD) - except RuntimeError as ex: - sys.stderr.write("Cannot notify '{0}' via D-Bus: {1}\n". -- format(DIR_PATH, ex.message)) -+ format(DIR_PATH, str(ex))) - return_status = RETURN_FAILURE - except KeyError as ex: - # this is a bug in build_notification_problem_data() - sys.stderr.write("BUG: problem data misses required element '{0}'" - " required for D-Bus notification\n" -- .format(ex.message)) -+ .format(str(ex))) - - return_status = RETURN_FAILURE - -@@ -247,13 +247,13 @@ if __name__ == "__main__": - run_autoreport(PD, event_name) - except RuntimeError as ex: - sys.stderr.write("Cannot notify '{0}' via uReport: {1}\n". -- format(DIR_PATH, ex.message)) -+ format(DIR_PATH, str(ex))) - return_status = RETURN_FAILURE - except KeyError as ex: - # this is a bug in build_notification_problem_data() - sys.stderr.write( - "BUG: problem data misses required element '{0}'" -- " required for uReport notification\n".format(ex.message)) -+ " required for uReport notification\n".format(str(ex))) - - return_status = RETURN_FAILURE - --- -2.5.0 - diff --git a/0033-introduce-bodhi2-to-abrt-bodhi.patch b/0033-introduce-bodhi2-to-abrt-bodhi.patch deleted file mode 100644 index e8a6df0..0000000 --- a/0033-introduce-bodhi2-to-abrt-bodhi.patch +++ /dev/null @@ -1,317 +0,0 @@ -From 084a2aaa6373f178d6bf1ac66c196476d2faa438 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 25 Aug 2015 16:03:51 +0200 -Subject: [PATCH] introduce bodhi2 to abrt-bodhi - -Resolves: rhbz#1256493 - -Signed-off-by: Jakub Filak ---- - configure.ac | 1 + - src/plugins/Makefile.am | 2 + - src/plugins/bodhi.c | 197 +++++++++++++++++++++++++++--------------------- - 3 files changed, 114 insertions(+), 86 deletions(-) - -diff --git a/configure.ac b/configure.ac -index b372e12..1013e3b 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -376,6 +376,7 @@ PKG_CHECK_MODULES([JSON_C], [json], [ - if test -z "$NO_BODHI" - then - PKG_CHECK_MODULES([LIBREPORT_WEB], [libreport-web]) -+PKG_CHECK_MODULES([HAWKEY], [hawkey]) - AM_CONDITIONAL(BUILD_BODHI, true) - else - AM_CONDITIONAL(BUILD_BODHI, false) -diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am -index aa426ff..1c1ff8a 100644 ---- a/src/plugins/Makefile.am -+++ b/src/plugins/Makefile.am -@@ -366,10 +366,12 @@ abrt_bodhi_SOURCES = \ - $(LIBREPORT_WEB_CFLAGS) \ - $(JSON_C_CFLAGS) \ - $(RPM_CFLAGS) \ -+ $(HAWKEY_CFLAGS) \ - -D_GNU_SOURCE - abrt_bodhi_LDADD = \ - $(JSON_C_LIBS) \ - $(RPM_LIBS) \ -+ $(HAWKEY_LIBS) \ - $(LIBREPORT_LIBS) \ - $(LIBREPORT_WEB_LIBS) - endif -diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c -index fcdbd83..831f5ff 100644 ---- a/src/plugins/bodhi.c -+++ b/src/plugins/bodhi.c -@@ -22,6 +22,7 @@ - #include - #include - #include -+#include - - #include - #include -@@ -32,85 +33,103 @@ - /* bodhi returns json structure - - { -- "num_items":2, -- "title":"2 updats found", -- "tg_flash":null, -- "updates":[ -- { -- "status":"stable", -- "close_bugs":true, -- "request":null, -- "date_submitted":"2011-03-18 17:25:14", -- "unstable_karma":-3, -- "submitter":"twaugh", -- "critpath":false, -- "approved":null, -- "stable_karma":2, -- "date_pushed":"2011-03-19 05:34:27", -- "builds":[ -- { -- "nvr":"system-config-printer-1.3.2-1.fc15", -- "package":{ -- "suggest_reboot":false, -- "committers":[ -- "twaugh", -- "jpopelka" -- ], -- "name":"system-config-printer" -- } -- }, -- { -- .... -- } -- ], -- "title":"system-config-printer-1.3.2-1.fc15", -- "notes":"This update fixes several bugs and re-enables translations that were accidentally disabled.", -- "date_modified":null, -- "nagged":null, -- "bugs":[ -- { -- "bz_id":685098, -- "security":false, -- "parent":false, -- "title":"[abrt] system-config-printer-1.3.1-1.fc15: authconn.py:197:_connect:RuntimeError: failed to connect to server" -- }, -- { -- ... -- } -- ], -- "comments":[ -- { -- "group":null, -- "karma":0, -- "anonymous":false, -- "author":"bodhi", -- "timestamp":"2011-03-18 17:26:34", -- "text":"This update has been submitted for testing by twaugh. " -- }, -- { -- ... -- } -- ], -- "critpath_approved":false, -- "updateid":"FEDORA-2011-3596", -- "karma":0, -- "release":{ -- "dist_tag":"dist-f15", -- "id_prefix":"FEDORA", -- "locked":false, -- "name":"F15", -- "long_name":"Fedora 15" -- }, -- "type":"bugfix" -- }, -- { -- ... -- } -- ] -+ "rows_per_page": 20, -+ "total": 1, -+ "chrome": true, -+ "display_user": true, -+ "pages": 1, -+ "updates": [ -+ { -+ "close_bugs": true, -+ "old_updateid": "FEDORA-2015-13720", -+ "pushed": true, -+ "require_testcases": false, -+ "critpath": false, -+ "date_approved": null, -+ "stable_karma": null, -+ "date_pushed": "2015-08-19 04:49:00", -+ "requirements": null, -+ "severity": "unspecified", -+ "title": "hwloc-1.11.0-3.fc22", -+ "suggest": "unspecified", -+ "require_bugs": false, -+ "comments": [ -+ { -+ "bug_feedback": [], -+ "user_id": 91, -+ "text": "This update has been submitted for testing by jhladky. ", -+ "testcase_feedback": [], -+ "karma_critpath": 0, -+ "update": 21885, -+ "update_id": 21885, -+ "karma": 0, -+ "anonymous": false, -+ "timestamp": "2015-08-18 13:38:35", -+ "id": 166016, -+ "user": {"stacks": [], -+ "name": "bodhi", -+ "avatar": "https://apps.fedoraproject.org/img/icons/bodhi-24.png"} -+ }, -+ { -+ ... -+ } -+ ], -+ "updateid": "FEDORA-2015-13720", -+ "cves": [], -+ "type": "bugfix", -+ "status": "testing", -+ "date_submitted": "2015-08-18 13:37:26", -+ "unstable_karma": null, -+ "submitter": "jhladky", -+ "user": -+ { -+ "stacks": [], -+ "buildroot_overrides": [], -+ "name": "jhladky", -+ "avatar": "https://seccdn.libravatar.org/avatar/b838b78fcf707a13cdaeb1c846d514e614d617cbf2c106718e71cb397607f59b?s=24&d=retro" -+ }, -+ "locked": false, -+ "builds": [{"override": null, -+ "nvr": "hwloc-1.11.0-3.fc22"}], -+ "date_modified": null, -+ "test_cases": [], -+ "notes": "Fix for BZ1253977", -+ "request": null, -+ "bugs": [ -+ { -+ "bug_id": 1253977, -+ "security": false, -+ "feedback": [], -+ "parent": false, -+ "title": "conflict between hwloc-libs-1.11.0-1.fc22.i686 and hwloc-libs-1.11.0-1.fc22.x86_64" -+ } -+ ], -+ "alias": "FEDORA-2015-13720", -+ "karma": 0, -+ "release": -+ { -+ "dist_tag": "f22", -+ "name": "F22", -+ "testing_tag": "f22-updates-testing", -+ "pending_stable_tag": "f22-updates-pending", -+ "long_name": "Fedora 22", -+ "state": "current", -+ "version": "22", -+ "override_tag": "f22-override", -+ "branch": "f22", -+ "id_prefix": "FEDORA", -+ "pending_testing_tag": "f22-updates-testing-pending", -+ "stable_tag": "f22-updates", -+ "candidate_tag": "f22-updates-candidate" -+ } -+ } -+ ], -+ "display_request": true, -+ "page": 1 - } - */ - --static const char *bodhi_url = "https://admin.fedoraproject.org/updates"; -+static const char *bodhi_url = "https://bodhi.fedoraproject.org/updates"; - - struct bodhi { - char *nvr; -@@ -202,7 +221,7 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) - { - - int num_items = 0; -- bodhi_read_value(json, "num_items", &num_items, BODHI_READ_INT); -+ bodhi_read_value(json, "total", &num_items, BODHI_READ_INT); - if (num_items <= 0) - return NULL; - -@@ -241,13 +260,19 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) - b = xzalloc(sizeof(struct bodhi)); - - char *name = NULL; -+ long ign_e; -+ char *ign_v, *ign_r, *ign_a; -+ - json_object *build = json_object_array_get_idx(builds_item, k); - - bodhi_read_value(build, "nvr", &b->nvr, BODHI_READ_STR); - -- json_object *package = NULL; -- bodhi_read_value(build, "package", &package, BODHI_READ_JSON_OBJ); -- bodhi_read_value(package, "name", &name, BODHI_READ_STR); -+ if (hy_split_nevra(b->nvr, &name, &ign_e, &ign_v, &ign_r, &ign_a)) -+ error_msg_and_die("hawkey failed to parse '%s'", b->nvr); -+ -+ free(ign_v); -+ free(ign_r); -+ free(ign_a); - - struct bodhi *bodhi_tbl_item = g_hash_table_lookup(bodhi_table, name); - if (bodhi_tbl_item && rpmvercmp(bodhi_tbl_item->nvr, b->nvr) > 0) -@@ -287,7 +312,7 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) - - static GHashTable *bodhi_query_list(const char *query, const char *release) - { -- char *bodhi_url_bugs = xasprintf("%s/list", bodhi_url); -+ char *bodhi_url_bugs = xasprintf("%s/?%s", bodhi_url, query); - - post_state_t *post_state = new_post_state(POST_WANT_BODY - | POST_WANT_SSL_VERIFY -@@ -298,8 +323,8 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) - NULL - }; - -- post_string(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", -- headers, query); -+ get(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", -+ headers); - - if (post_state->http_resp_code != 200) - { -@@ -397,7 +422,7 @@ int main(int argc, char **argv) - { - if (release) - { -- query = strbuf_append_strf(query, "release=%s&", release); -+ query = strbuf_append_strf(query, "releases=%s&", release); - } - else - { -@@ -414,7 +439,7 @@ int main(int argc, char **argv) - map_string_t *osinfo = new_map_string(); - problem_data_get_osinfo(problem_data, osinfo); - parse_osinfo_for_rhts(osinfo, &product, &version); -- query = strbuf_append_strf(query, "release=f%s&", version); -+ query = strbuf_append_strf(query, "releases=f%s&", version); - free(product); - free(version); - free_map_string(osinfo); -@@ -424,7 +449,7 @@ int main(int argc, char **argv) - if (argv[optind]) - { - char *escaped = g_uri_escape_string(argv[optind], NULL, 0); -- query = strbuf_append_strf(query, "package=%s&", escaped); -+ query = strbuf_append_strf(query, "packages=%s&", escaped); - free(escaped); - } - --- -2.5.0 - diff --git a/0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch b/0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch deleted file mode 100644 index b50343a..0000000 --- a/0035-ccpp-do-not-break-the-reporting-if-a-bodhi-fails.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 7cf5d9fe151713b65314c714c9968f04367691fe Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 26 Aug 2015 08:28:07 +0200 -Subject: [PATCH] ccpp: do not break the reporting if a-bodhi fails - -Related: rhbz#1256493 - -Signed-off-by: Jakub Filak ---- - src/plugins/abrt-action-analyze-ccpp-local.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-action-analyze-ccpp-local.in b/src/plugins/abrt-action-analyze-ccpp-local.in -index de131c8..5a42a03 100644 ---- a/src/plugins/abrt-action-analyze-ccpp-local.in -+++ b/src/plugins/abrt-action-analyze-ccpp-local.in -@@ -39,7 +39,7 @@ if [ $? = 0 ]; then - bug_id=$(reporter-bugzilla -h "`cat duphash`") - if $WITH_BODHI; then - if test -n "$bug_id"; then -- abrt-bodhi -r -b $bug_id -+ abrt-bodhi -r -b $bug_id || : - fi - fi - fi --- -2.5.0 - diff --git a/0036-bodhi-add-ignoring-of-Rawhide.patch b/0036-bodhi-add-ignoring-of-Rawhide.patch deleted file mode 100644 index a93b156..0000000 --- a/0036-bodhi-add-ignoring-of-Rawhide.patch +++ /dev/null @@ -1,53 +0,0 @@ -From 783f4ea59bfcd7f563a3b0ab0012f41fcd289eff Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 26 Aug 2015 13:18:26 +0200 -Subject: [PATCH] bodhi: add ignoring of Rawhide - -Resolves: rhbz#1256493 - -Signed-off-by: Matej Habrnal ---- - src/plugins/bodhi.c | 17 ++++++++++++++++- - 1 file changed, 16 insertions(+), 1 deletion(-) - -diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c -index 831f5ff..9149347 100644 ---- a/src/plugins/bodhi.c -+++ b/src/plugins/bodhi.c -@@ -422,6 +422,10 @@ int main(int argc, char **argv) - { - if (release) - { -+ /* There are no bodhi updates for Rawhide */ -+ if (strcasecmp(release, "rawhide") == 0) -+ error_msg_and_die("Reselase \"%s\" is not supported",release); -+ - query = strbuf_append_strf(query, "releases=%s&", release); - } - else -@@ -439,10 +443,21 @@ int main(int argc, char **argv) - map_string_t *osinfo = new_map_string(); - problem_data_get_osinfo(problem_data, osinfo); - parse_osinfo_for_rhts(osinfo, &product, &version); -- query = strbuf_append_strf(query, "releases=f%s&", version); -+ -+ /* There are no bodhi updates for Rawhide */ -+ bool rawhide = strcasecmp(release, "rawhide") == 0; -+ if (!rawhide) -+ query = strbuf_append_strf(query, "releases=f%s&", version); -+ - free(product); - free(version); - free_map_string(osinfo); -+ -+ if (rawhide) -+ { -+ strbuf_free(query); -+ error_msg_and_die("Reselase \"Rawhide\" is not supported"); -+ } - } - } - --- -2.5.0 - diff --git a/0037-bodhi-add-parsing-of-error-responses.patch b/0037-bodhi-add-parsing-of-error-responses.patch deleted file mode 100644 index f783937..0000000 --- a/0037-bodhi-add-parsing-of-error-responses.patch +++ /dev/null @@ -1,110 +0,0 @@ -From 878d29d13773d035fc6a41d6b2c402f021e10dbd Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 26 Aug 2015 13:41:27 +0200 -Subject: [PATCH] bodhi: add parsing of error responses - -Resolves: rhbz#1256493 - -Signed-off-by: Matej Habrnal ---- - src/plugins/bodhi.c | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 69 insertions(+), 1 deletion(-) - -diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c -index 9149347..b348a26 100644 ---- a/src/plugins/bodhi.c -+++ b/src/plugins/bodhi.c -@@ -217,6 +217,58 @@ static void print_bodhi(struct bodhi *b) - } - #endif - -+/* bodhi returns following json structure in case of error -+{ -+ "status": "error", -+ "errors": -+ [ -+ { -+ "location": "querystring", -+ "name": "releases", -+ "description": "Invalid releases specified: Rawhide" -+ } -+ ] -+} -+*/ -+static void bodhi_print_errors_from_json(json_object *json) -+{ -+ -+ json_object *errors_array = NULL; -+ bodhi_read_value(json, "errors", &errors_array, BODHI_READ_JSON_OBJ); -+ if (!errors_array) -+ { -+ error_msg("Error: unable to read 'errors' array from json"); -+ return; -+ } -+ -+ int errors_len = json_object_array_length(errors_array); -+ for (int i = 0; i < errors_len; ++i) -+ { -+ json_object *error = json_object_array_get_idx(errors_array, i); -+ if (!error) -+ { -+ error_msg("Error: unable to get 'error[%d]'", i); -+ json_object_put(errors_array); -+ return; -+ } -+ -+ char *desc_item = NULL; -+ bodhi_read_value(error, "description", &desc_item, BODHI_READ_STR); -+ if (!desc_item) -+ { -+ error_msg("Error: unable to get 'description' from 'error[%d]'", i); -+ continue; -+ } -+ -+ error_msg("Error: %s", desc_item); -+ json_object_put(error); -+ free(desc_item); -+ } -+ -+ json_object_put(errors_array); -+ return; -+} -+ - static GHashTable *bodhi_parse_json(json_object *json, const char *release) - { - -@@ -326,7 +378,7 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) - get(post_state, bodhi_url_bugs, "application/x-www-form-urlencoded", - headers); - -- if (post_state->http_resp_code != 200) -+ if (post_state->http_resp_code != 200 && post_state->http_resp_code != 400) - { - char *errmsg = post_state->curl_error_msg; - if (errmsg && errmsg[0]) -@@ -340,6 +392,22 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) - if (is_error(json)) - error_msg_and_die("fatal: unable parse response from bodhi server"); - -+ /* we must check the http_resp_code because only error responses contain -+ * 'status' item. 'bodhi_read_value' function prints an error message in -+ * the case it did not found the item */ -+ if (post_state->http_resp_code != 200) -+ { -+ char *status_item = NULL; -+ bodhi_read_value(json, "status", &status_item, BODHI_READ_STR); -+ if (status_item != NULL && strcmp(status_item, "error") == 0) -+ { -+ free(status_item); -+ bodhi_print_errors_from_json(json); -+ json_object_put(json); -+ xfunc_die(); // error_msg are printed in bodhi_print_errors_from_json -+ } -+ } -+ - GHashTable *bodhi_table = bodhi_parse_json(json, release); - json_object_put(json); - free_post_state(post_state); --- -2.5.0 - diff --git a/0042-doc-actualize-the-abrt-bodhi-man-page.patch b/0042-doc-actualize-the-abrt-bodhi-man-page.patch deleted file mode 100644 index 9c3a163..0000000 --- a/0042-doc-actualize-the-abrt-bodhi-man-page.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 655a356abb1f0557690fa21a0d008af472c56788 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 2 Sep 2015 12:29:31 +0200 -Subject: [PATCH] doc: actualize the abrt-bodhi man page - -Parameters -d and -u were not in the man page. - -Signed-off-by: Matej Habrnal ---- - doc/abrt-bodhi.txt | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/doc/abrt-bodhi.txt b/doc/abrt-bodhi.txt -index 945a4a9..fe790d6 100644 ---- a/doc/abrt-bodhi.txt -+++ b/doc/abrt-bodhi.txt -@@ -7,7 +7,7 @@ abrt-bodhi - The ABRT bodhi client. - - SYNOPSIS - -------- --'abrt-bodhi' [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... -+'abrt-bodhi' [-v] [-r[RELEASE]] [-u URL] [-d DIR] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... - - DESCRIPTION - ----------- -@@ -25,6 +25,12 @@ OPTIONS - -b, --bugs ID1,ID2,.. - Specify any number of Bugzilla IDs (--bugs=1234,5678) - -+-d, --problem-dir DIR:: -+ Path to problem directory -+ -+-u, --url URL:: -+ Specify a bodhi server url -+ - AUTHORS - ------- - * ABRT team --- -2.5.0 - diff --git a/0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch b/0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch deleted file mode 100644 index 6e4b603..0000000 --- a/0046-bodhi-fix-a-segfault-when-testing-an-os-release-opt-.patch +++ /dev/null @@ -1,29 +0,0 @@ -From afe242542e3c372a05de51a7259f417c1df058d2 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Mon, 7 Sep 2015 10:23:30 +0200 -Subject: [PATCH] bodhi: fix a segfault when testing an os-release opt for - 'rawhide' - -Resolves: rhbz#1260259 - -Signed-off-by: Jakub Filak ---- - src/plugins/bodhi.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c -index b348a26..bbd88f7 100644 ---- a/src/plugins/bodhi.c -+++ b/src/plugins/bodhi.c -@@ -513,7 +513,7 @@ int main(int argc, char **argv) - parse_osinfo_for_rhts(osinfo, &product, &version); - - /* There are no bodhi updates for Rawhide */ -- bool rawhide = strcasecmp(release, "rawhide") == 0; -+ bool rawhide = strcasecmp(version, "rawhide") == 0; - if (!rawhide) - query = strbuf_append_strf(query, "releases=f%s&", version); - --- -2.5.0 - diff --git a/abrt.spec b/abrt.spec index 62af06e..3912195 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,8 +48,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.7.0 -Release: 4%{?dist} +Version: 2.7.1 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -59,7 +59,6 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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 -Patch0012: 0012-dbus-ensure-expected-bytes-width-of-DBus-numbers.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -763,7 +762,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf %{_mandir}/man5/smart_event.conf.5.gz -%dir %attr(0751, abrt, abrt) %{_localstatedir}/spool/%{name} +%dir %attr(0751, root, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} @@ -893,6 +892,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-action-analyze-core.* %{_mandir}/man*/abrt-action-analyze-vulnerability.* %{_mandir}/man*/abrt-action-perform-ccpp-analysis.* +%{_mandir}/man*/abrt-dump-journal-core.* %files addon-upload-watch %defattr(-,root,root,-) @@ -946,7 +946,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_initrddir}/abrt-xorg %endif %{_bindir}/abrt-dump-xorg +%{_bindir}/abrt-dump-journal-xorg %{_mandir}/man1/abrt-dump-xorg.1* +%{_mandir}/man1/abrt-dump-journal-xorg.1* %if %{?have_kexec_tools} == 1 %files addon-vmcore @@ -1084,6 +1086,19 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Nov 23 2015 Jakub Filak 2.7.1-1 +- CVE-2015-5287: switch owner of /var/spool/abrt to 'root' +- CVE-2015-5287: ccpp: save abrt core files only if DebugLevel > 0 +- CVE-2015-5287: ccpp: save abrt core files only to new files +- CVE-2015-5287: abrt configuration: introduce DebugLevel +- CVE-2015-5273: a-a-i-d-to-abrt-cache: make own random temporary directory +- ccpp: make crashes of processes with locked memory not-reportable +- xorg: introduce tool abrt-dump-journal-xorg +- abrt-xorg.service: change due to abrt-dump-journal-xorg +- a-d-journal-core: set root owner for created dump directory +- spec: add missing man page for abrt-dump-journal-core +- Resolves: #1262252, #1284557 + * Sat Nov 14 2015 Zbigniew Jędrzejewski-Szmek - 2.7.0-4 - Update requires on python-argcomplete - Move completion script to /usr diff --git a/sources b/sources index ce9bff2..606202a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1e132c42d1f0161db95c82c0c720e697 abrt-2.7.0.tar.gz +fee268003142e35fc72fa8a52941dd80 abrt-2.7.1.tar.gz From ee087b960d16ee0d7b5c8a96bbe62bd8cf4104bd Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Tue, 2 Feb 2016 14:29:49 +0100 Subject: [PATCH 147/318] New version 2.7.2 Signed-off-by: Matej Habrnal --- .gitignore | 1 + abrt.spec | 12 ++++++++++-- sources | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index eecca2f..53680f5 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,4 @@ abrt-1.1.13.tar.gz /abrt-2.6.2.tar.gz /abrt-2.7.0.tar.gz /abrt-2.7.1.tar.gz +/abrt-2.7.2.tar.gz diff --git a/abrt.spec b/abrt.spec index 3912195..f7f5a88 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,12 +43,12 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.6.3 +%define libreport_ver 2.6.4 %define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.7.1 +Version: 2.7.2 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -1086,6 +1086,14 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Feb 02 2016 Matej Habrnal 2.7.2-1 +- ccpp: add AllowedUsers and AllowedGroups feature +- ccpp: use executable name from pid +- a-a-c-o-f-hw-error: do not crash on invalid unicode +- configui: link GUI library with libabrt.so +- ccpp: unify log message of ignored crashes +- ccpp: add IgnoredPath option + * Mon Nov 23 2015 Jakub Filak 2.7.1-1 - CVE-2015-5287: switch owner of /var/spool/abrt to 'root' - CVE-2015-5287: ccpp: save abrt core files only if DebugLevel > 0 diff --git a/sources b/sources index 606202a..e88fb6f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fee268003142e35fc72fa8a52941dd80 abrt-2.7.1.tar.gz +09afeb8207b965f9659c0bf11722af16 abrt-2.7.2.tar.gz From ba52311fcb421c8b2da245e3572ccb067437d6d8 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 3 Feb 2016 15:05:21 +0100 Subject: [PATCH 148/318] New version 2.8.0 Resolves: #1304310 --- .gitignore | 1 + abrt.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 53680f5..9ed15f7 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,4 @@ abrt-1.1.13.tar.gz /abrt-2.7.0.tar.gz /abrt-2.7.1.tar.gz /abrt-2.7.2.tar.gz +/abrt-2.8.0.tar.gz diff --git a/abrt.spec b/abrt.spec index f7f5a88..894d3d4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,7 +48,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.7.2 +Version: 2.8.0 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -1086,6 +1086,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Feb 03 2016 Matej Habrnal 2.8.0-1 +- a-a-save-package-data: do not blacklist firefox +- Resolves: #1304310 + * Tue Feb 02 2016 Matej Habrnal 2.7.2-1 - ccpp: add AllowedUsers and AllowedGroups feature - ccpp: use executable name from pid diff --git a/sources b/sources index e88fb6f..0777d20 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -09afeb8207b965f9659c0bf11722af16 abrt-2.7.2.tar.gz +ab0744ee52a36c0d647ae1af9a356090 abrt-2.8.0.tar.gz From 04b13c6fc9e03231b626f5003ec35bb32dd461e6 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 10 Feb 2016 10:43:04 +0100 Subject: [PATCH 149/318] drop %e from the core_pattern Signed-off-by: Matej Habrnal --- 0001-ccpp-drop-e-from-the-core_pattern.patch | 99 ++++++++++++++++++++ abrt.spec | 6 +- 2 files changed, 104 insertions(+), 1 deletion(-) create mode 100644 0001-ccpp-drop-e-from-the-core_pattern.patch diff --git a/0001-ccpp-drop-e-from-the-core_pattern.patch b/0001-ccpp-drop-e-from-the-core_pattern.patch new file mode 100644 index 0000000..742f9ee --- /dev/null +++ b/0001-ccpp-drop-e-from-the-core_pattern.patch @@ -0,0 +1,99 @@ +From 51531e9ea72af09571688a20f00e55cad5fe9c3a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 9 Feb 2016 17:55:29 +0100 +Subject: [PATCH] ccpp: drop %e from the core_pattern + +The argument is no longer need and it must be placed either at the end +of the command or enclosed with '' as it can contain white space. + +Threads can have an arbitrary name: + man 3 pthread_setname_np + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 16 ++++++++-------- + src/hooks/abrt-install-ccpp-hook.in | 12 +----------- + 2 files changed, 9 insertions(+), 19 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 8f1b813..dfe9526 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -143,9 +143,9 @@ static struct dump_dir *dd; + * %u - uid + * %g - gid + * %t - UNIX time of dump +- * %e - executable filename +- * %i - crash thread tid + * %P - global pid ++ * %I - crash thread tid ++ * %e - executable filename (can contain white spaces) + * %% - output one "%" + */ + /* Hook must be installed with exactly the same sequence of %c specifiers. +@@ -661,9 +661,9 @@ int main(int argc, char** argv) + + if (argc < 8) + { +- /* percent specifier: %s %c %p %u %g %t %e %P %i*/ +- /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] [9]*/ +- error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME GLOBAL_PID [TID]", argv[0]); ++ /* percent specifier: %s %c %p %u %g %t %P %T */ ++ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] */ ++ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME GLOBAL_PID GLOBAL_TID", argv[0]); + } + + /* Not needed on 2.6.30. +@@ -704,8 +704,8 @@ int main(int argc, char** argv) + /* set to max possible >0 value */ + ulimit_c = ~((off_t)1 << (sizeof(off_t)*8-1)); + } +- const char *global_pid_str = argv[8]; +- pid_t pid = xatoi_positive(argv[8]); ++ const char *global_pid_str = argv[7]; ++ pid_t pid = xatoi_positive(argv[7]); + + user_pwd = get_cwd(pid); /* may be NULL on error */ + log_notice("user_pwd:'%s'", user_pwd); +@@ -867,7 +867,7 @@ int main(int argc, char** argv) + signal_no, signame, "dumping core"); + + pid_t tid = -1; +- const char *tid_str = argv[9]; ++ const char *tid_str = argv[8]; + if (tid_str) + { + tid = xatoi_positive(tid_str); +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index 707c57d..660c209 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,7 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" +-# Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %P %I" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +@@ -39,14 +37,6 @@ start() { + cur=`cat "$PATTERN_FILE"` + cur_first=`printf "%s" "$cur" | sed 's/ .*//'` + +- # Is there a %e (executable name) in old pattern anywhere? +- if test x"${cur#*%e}" = x"${cur}"; then +- # No. Can use PATTERN with less risk of overflow +- # on expansion (executable names can be LONG). +- # Overflow would cause kernel to abort coredump. BAD. +- PATTERN="$PATTERN1" +- fi +- + $verbose && printf "cur:'%s'\n" "$cur" + # Is it already installed? + if test x"$cur_first" != x"|$HOOK_BIN"; then # no +-- +2.5.0 + diff --git a/abrt.spec b/abrt.spec index 894d3d4..eead2eb 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.8.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -59,6 +59,7 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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 # '%%autosetup -S git' -> git BuildRequires: git @@ -1086,6 +1087,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Feb 10 2016 Matej Habrnal 2.8.0-2 +- drop %e from the core_pattern + * Wed Feb 03 2016 Matej Habrnal 2.8.0-1 - a-a-save-package-data: do not blacklist firefox - Resolves: #1304310 From ba94a9992a1531f026c90acfd653832fe9157bc7 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Tue, 23 Feb 2016 16:05:36 +0100 Subject: [PATCH 150/318] blacklist Firefox's plugin-container and turn off compat cores Resolves: #1308840 --- 0003-Translation-updates.patch | 92383 ++++++++++++++++ 0004-translations-add-missing-new-line.patch | 26 + 0005-Fix-minor-typo-possition-position.patch | 25 + ...-data-blacklist-usr-lib-64-firefox-p.patch | 33 + 0008-CCpp-turn-off-compat-cores.patch | 51 + abrt.spec | 15 +- 6 files changed, 92532 insertions(+), 1 deletion(-) create mode 100644 0003-Translation-updates.patch create mode 100644 0004-translations-add-missing-new-line.patch create mode 100644 0005-Fix-minor-typo-possition-position.patch create mode 100644 0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch create mode 100644 0008-CCpp-turn-off-compat-cores.patch diff --git a/0003-Translation-updates.patch b/0003-Translation-updates.patch new file mode 100644 index 0000000..8ae6b32 --- /dev/null +++ b/0003-Translation-updates.patch @@ -0,0 +1,92383 @@ +From 7967724138d015dd71d9e788b59d0b3f03bb2513 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 11 Feb 2016 14:51:00 +0100 +Subject: [PATCH] Translation updates + +Signed-off-by: Jakub Filak +--- + po/ar.po | 690 ++++++++++++++++++------- + po/as.po | 711 ++++++++++++++++++------- + po/ast.po | 685 ++++++++++++++++++------- + po/bg.po | 693 ++++++++++++++++++------- + po/bn.po | 687 ++++++++++++++++++------- + po/bn_IN.po | 713 +++++++++++++++++++------- + po/bs.po | 685 ++++++++++++++++++------- + po/ca.po | 1028 ++++++++++++++++++++++++------------- + po/cs.po | 842 +++++++++++++++++++++--------- + po/da.po | 685 ++++++++++++++++++------- + po/de.po | 746 +++++++++++++++++++-------- + po/el.po | 685 ++++++++++++++++++------- + po/en_GB.po | 699 ++++++++++++++++++------- + po/es.po | 845 +++++++++++++++++++++--------- + po/et.po | 693 ++++++++++++++++++------- + po/eu.po | 687 ++++++++++++++++++------- + po/fa.po | 685 ++++++++++++++++++------- + po/fi.po | 754 +++++++++++++++++++-------- + po/fr.po | 939 ++++++++++++++++++++++++---------- + po/gl.po | 697 ++++++++++++++++++------- + po/gu.po | 711 ++++++++++++++++++------- + po/he.po | 685 ++++++++++++++++++------- + po/hi.po | 713 +++++++++++++++++++------- + po/hu.po | 736 ++++++++++++++++++-------- + po/ia.po | 685 ++++++++++++++++++------- + po/id.po | 685 ++++++++++++++++++------- + po/it.po | 714 +++++++++++++++++++------- + po/ja.po | 761 +++++++++++++++++++-------- + po/ka.po | 685 ++++++++++++++++++------- + po/km.po | 1275 ++++++++++++++++++++++++++++++--------------- + po/kn.po | 711 ++++++++++++++++++------- + po/ko.po | 825 ++++++++++++++++++++--------- + po/lt.po | 701 ++++++++++++++++++------- + po/lv.po | 687 ++++++++++++++++++------- + po/ml.po | 727 ++++++++++++++++++-------- + po/mr.po | 711 ++++++++++++++++++------- + po/nb.po | 685 ++++++++++++++++++------- + po/nds.po | 685 ++++++++++++++++++------- + po/nl.po | 722 ++++++++++++++++++-------- + po/or.po | 714 +++++++++++++++++++------- + po/pa.po | 707 ++++++++++++++++++------- + po/pl.po | 934 ++++++++++++++++++++++----------- + po/pt.po | 858 ++++++++++++++++++++++--------- + po/pt_BR.po | 712 +++++++++++++++++++------- + po/ru.po | 785 +++++++++++++++++++--------- + po/sk.po | 805 ++++++++++++++++++++--------- + po/sq.po | 1236 +++++++++++++++++++++++++++++--------------- + po/sr.po | 1565 ++++++++++++++++++++++++++++++++++++++------------------ + po/sr@latin.po | 685 ++++++++++++++++++------- + po/sv.po | 723 ++++++++++++++++++-------- + po/ta.po | 712 +++++++++++++++++++------- + po/te.po | 711 ++++++++++++++++++------- + po/tg.po | 685 ++++++++++++++++++------- + po/th.po | 703 ++++++++++++++++++------- + po/tr.po | 687 ++++++++++++++++++------- + po/uk.po | 720 ++++++++++++++++++-------- + po/ur.po | 685 ++++++++++++++++++------- + po/vi.po | 687 ++++++++++++++++++------- + po/zh_CN.po | 709 ++++++++++++++++++------- + po/zh_TW.po | 716 +++++++++++++++++++------- + 60 files changed, 32905 insertions(+), 12787 deletions(-) + +diff --git a/po/ar.po b/po/ar.po +index 43f1c97..650d734 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -4,22 +4,23 @@ + # + # Translators: + # Jiří Moskovčák , 2011 ++# Khalid Moharrum , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-11-03 07:57-0500\n" ++"Last-Translator: Khalid Moharrum \n" + "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ar/)\n" + "Language: ar\n" + "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " + "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "تقرير" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -296,60 +323,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +400,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1074,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1092,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1113,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1136,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1154,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1171,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1201,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1217,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1777,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1855,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1921,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1972,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/as.po b/po/as.po +index 2f44fc6..ce31175 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "language/as/)\n" + "Language: as\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,102 +32,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "সংবাদ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "অধিসূচনা দেখুৱাব নোৱাৰি: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চেনেলৰ পৰা পঢ়িব নোৱাৰি: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চেনেলত এনক'ডিং সংহতি কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অৱস্থা আৰম্ভ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +137,17 @@ msgstr "" + "\n" + "এপ্লেট যি ABRT দ্বাৰা নতুন সমস্যাসমূহ চিনাক্ত কৰোতে অধিসূচিত কৰে\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ডাইৰেকটৰি চুৰ কৰাৰ আগত সোধিব" +@@ -158,12 +169,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"স্টেক ট্ৰেইচ সৃজন কৰিবলে কেন্দ্ৰডাম্প ফাইলৰ প্ৰয়োজন যি সময় আৰু স্থান লোৱা " +-"কাৰ্য্য। ABRT এ সেৱা প্ৰদান কৰে যি স্টেক ট্ৰেইচক কেন্দ্ৰডাম্পৰ পৰা সৃজন কৰে " +-"কিন্তু আপুনি কেন্দ্ৰডাম্পক এই সেৱালৈ আপল'ড কৰিব লাগিব। এই বিকল্পৰ সৈতে " +-"অসামৰ্থবান থাকিলে ABRT এ নোসোধাকৈ কেন্দ্ৰ ডাম্পক আপল'ড কৰিব।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -208,10 +217,6 @@ msgstr "" + "নেদেখুৱায়। প্ৰভাৱশালী হয় কেৱল যেতিয়া সমু সংবাদন সামৰ্থবান থাকে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "কেন্দ্ৰডাম্প আপল'ড কৰাৰ আগত সোধিব" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -219,15 +224,15 @@ msgstr "" + "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ সদায় নিষিদ্ধ অভিগমৰ সৈতে বাগ টিকেট সৃষ্টি " + "কৰে যদি সম্ভৱত সংবেদনশীল তথ্য চিনাক্ত কৰা হয়।" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "সংবেদনশীল তথ্যৰ বাবে ব্যক্তিগত টিকেট অনুৰোধ কৰক" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "অসম্পূৰ্ণ সমস্যাবোৰ অধিসূচীত কৰক" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -237,6 +242,22 @@ msgstr "" + "আউট হৈ থকা সময়ত চিনাক্ত কৰা হয়। অমূল্য সমস্যা সংবাদসমূহ প্ৰদান কৰিবলে, ABRT " + "এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব।" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "বন্ধ কৰক (_C)" +@@ -262,14 +283,14 @@ msgstr "বিষয়ে" + msgid "Quit" + msgstr "প্ৰস্থান কৰক" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -281,11 +302,11 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যা ডাইৰেকটৰি" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "সংৰূপ নথিপত্ৰ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -299,24 +320,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM k ক্লাএন্ট uid হিচাপে ব্যৱহাৰ কৰক" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog -লে লগ কৰক" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ কৰক" + +@@ -324,62 +346,52 @@ msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ + msgid "Unknown error" + msgstr "অজ্ঞাত ত্ৰুটি" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "প্ৰমাণীত নহয়" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "পৰিবৰ্তনৰ বাবে সমস্যাক অভিগম কৰিব নোৱাৰি" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ডাইৰেকটৰি Chowning কৰোতে ব্যৰ্থ হল। অধিক বিৱৰণসমূহৰ বাবে চিস্টেম লগসমূহ " + "নীৰিক্ষণ কৰক।" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ৰ আকাৰ প্ৰাপ্ত কৰিব পৰা নগল" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "কোনো সমস্যা স্থান অৱশিষ্ট নাই" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "সমস্যা ডাইৰেকটৰি '%s' ৰ পৰা উপাদান '%s' মচিব নোৱাৰি" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -388,12 +400,12 @@ msgid "" + msgstr "" + "নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "নিষ্ক্ৰিয়তাৰ NUM ছেকেণ্ডসমূহ পিছত প্ৰস্থান কৰিব" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্ৰগ্ৰামক ৰুট হিচাপে চলাব লাগিব।" + +@@ -419,18 +431,22 @@ msgstr "ডিমোনাইজ নকৰিব" + msgid "Log to syslog even with -d" + msgstr "-d -ৰ হৈতেও syslog -লে লগ কৰক" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR ত EVENT চলাওক" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ব্যৱহাৰকাৰীৰ সৈতে প্ৰত্যক্ষভাৱে যোগাযোগ কৰক" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -468,74 +484,75 @@ msgstr "সঙ্গামী কৰ্মীসকলৰ সংখ্যা। + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB ত সৰ্বাধিক ক্যাশ আকাৰ। অবিকল্পিত হল" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "তৰ্কৰ অবৈধ সংখ্যা" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -555,83 +572,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "এটা ডাইৰেকটৰি নহয়: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "বাদ দিয়া হৈছে: '{0}' (স্লেশৰ সৈতে আৰম্ভ হয়)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "বাদ দিয়া হৈছে: '{0}' (ডটৰ সৈতে আৰম্ভ হয়)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "বাদ দিয়া হৈছে: '{0}' (অন্তৰ্ভুক্ত কৰে ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "বাদ দিয়া হৈছে: '{0}' (স্পেইচ অন্তৰ্ভুক্ত কৰে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "বাদ দিয়া হৈছে: '{0}' (টেব অন্তৰ্ভুক্ত কৰে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ডাইৰেকটৰিক '{0}' লৈ পৰিবৰ্তন কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "অজ্ঞাত ফাইল ধৰণ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ত কাৰ্য্যকৰী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ক '{1}' লৈ স্থানান্তৰ কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ক '{1}' লৈ কপি কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ত সত্যাপন ত্ৰুটি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' আনপেক কৰা হৈছে" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ক আনপেক কৰিব নোৱাৰি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' ক সফলভাৱে প্ৰক্ৰিয়াকৰণ কৰা হল" + +@@ -655,18 +672,26 @@ msgstr "'%s' chown কৰিব নোৱাৰি: %s" + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যা ডাইৰেকটৰি মচি পেলোৱা ব্যৰ্থ হল: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ৰ পৰা সমস্যা তালিকা প্ৰাপ্ত কৰিব নোৱাৰি: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -713,7 +738,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s -ৰ বাবে বেকট্ৰেইচ বিশ্লেষণ ব্যৰ্থ হল" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "স্খলন থ্ৰেড পোৱা নগল" + +@@ -818,7 +843,7 @@ msgstr "oops বাৰ্তা নিষ্কাষণ কৰিব নোৱ + msgid "Oops text extracted successfully" + msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ কৰা হল" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -826,6 +851,38 @@ msgstr "" + "কাৰনেল লগত হাৰ্ডৱেৰ ত্ৰুটিসমূহ চিনাক্ত কৰা হৈছিল।\n" + "ই সম্ভবত এটা চফ্টৱেৰ সমস্যা নহয়।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -944,7 +1001,36 @@ msgstr "সন্ধানহিন debuginfo নথিপত্ৰ: {0}" + msgid "All debuginfo files are available" + msgstr "সকলো debuginfo ফাইল উপলব্ধ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -954,7 +1040,7 @@ msgstr "" + "পাৰে)। যদি আপোনাৰ উত্তৰ 'নহয়' হয়, এটা স্টেক ট্ৰেইচ স্থানীয়ভাৱে সৃজন কৰা হব। " + "(ই তথ্যৰ এটা বৃহত পৰিমাণ ডাউনল'ড কৰিব পাৰে)।" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1190,7 +1276,8 @@ msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation নিচিনা একে, DumpLocation ক abrt.conf ত ধাৰ্য্য কৰা হয়। " +@@ -1201,16 +1288,18 @@ msgstr "PROBLEM ত নিষ্কাষিত তথ্য সংৰক্ষ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "সমস্যা ডাইৰেকটৰি বিশ্ব পঢ়িব পৰা কৰক" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "সমস্যা ডাইৰেকটৰিৰ সৃষ্টিকৰণক ১ প্ৰতি ছেকেণ্ডলৈ থ্ৰটল কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প্ৰিন্ট কৰি প্ৰস্থান কৰক" + +@@ -1220,9 +1309,13 @@ msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প + msgid "Failed to compile regex" + msgstr "regex কমপাইল কৰিবলে ব্যৰ্থ" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "সমস্যাক আপডেইট কৰিব নোৱাৰি: এটাতকৈ অধিক oops পোৱা গল" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1241,6 +1334,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1264,11 +1358,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1282,16 +1378,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1299,18 +1398,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1329,14 +1431,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1345,12 +1450,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1360,58 +1511,62 @@ msgstr "" + "\n" + "FILE ৰ পৰা Xorg ক্ৰেশ নিষ্কাষণ কৰক (অথবা প্ৰামাণিক ইনপুট)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "প্ৰামাণিক আউটপুটত পোৱা স্খলন তথ্য প্ৰিন্ট কৰক" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "প্ৰতিটো প্ৰাপ্ত স্খলনৰ বাবে DIR ত সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1945,7 +2100,7 @@ msgstr "NSS বন্ধ কৰিবলে ব্যৰ্থ।" + msgid "Sleeping for %d seconds" + msgstr "%d ছেকেণ্ডৰ বাবে নিদ্ৰাত" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1953,7 +2108,7 @@ msgstr "" + "ভগ্ন BIOS ৰ বাবে এটা কাৰনেল সমস্যা দেখা দিলে। দূৰ্ভাগ্যজনকভাৱে, এই ধৰণৰ\n" + "সমস্যা কাৰনেল ব্যৱস্থাপকৰ দ্বাৰা ঠিক কৰিব নোৱাৰি।" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1961,7 +2116,7 @@ msgstr "" + "এটা কাৰনেল সমস্যা দেখা দিছে, কিন্তু আপোনাৰ হাৰ্ডৱেৰ অসমৰ্থিত, সেয়েহে কাৰনেল " + "ব্যৱস্থাপকসকলে এই সমস্যা ঠিক কৰিব নোৱাৰে।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1970,24 +2125,24 @@ msgstr "" + "এটা কাৰনেল সমস্যা দেখা দিলে, কিন্তু আপোনাৰ কাৰনেল আবিলিত (flags:%s)। কাৰনেল " + "ব্যৱস্থাপকসমূহ আবিলিত সংবাদসমূহ বিশ্লেষণ কৰিবলে অক্ষম।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " লেতেৰা মডিউলসমূহ: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "বাগ আইডিসমূহৰ তালিকা" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "এটা bodhi চাৰ্ভাৰ url ধাৰ্য্য কৰক" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "এটা উন্মোচন ধাৰ্য্য কৰক" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1997,20 +2152,20 @@ msgstr "" + "\n" + "bodhi চাৰ্ভাৰত আপডেইটসমূহ সন্ধান কৰক" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "আপডেইসমূহ সন্ধান কৰা হৈছে" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "এই পেকেইজৰ বাবে কোনো আপডেইট পোৱা নগল" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "পেকেইজৰ স্থানীয় সংস্কৰণ উপলব্ধ আপডেইটসমূহতকে নতুন" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2038,66 +2193,67 @@ msgstr "প্ৰিন্ট প্ৰাপ্ত oopses" + msgid "Delete files with found oopses" + msgstr "প্ৰাপ্ত oopses ৰ সৈতে ফাইলসমূহ মচি পেলাওক" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' এ এটাতকৈ অধিক সমস্যা ডাইৰেকটৰি চিনাক্ত কৰে" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যৱহাৰ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "সমস্যাসমূহ দেখুৱাওক [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যা ডাইৰেকটৰি DIR আতৰাওক" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ত সমস্যা তথ্য বিশ্লেষণ কৰি সংবাদন কৰক" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ৰ বিষয়ে তথ্য প্ৰিন্ট কৰক" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ৰিন্ট কৰক" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "একাধিক সমস্যাসমূহ প্ৰক্ৰিয়া কৰক" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "কেৱল সংবাদন-নকৰা সমস্যাবোৰ তালিকাভুক্ত কৰক" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "বিৱৰিত সংবাদ দেখুৱাওক" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকৈ শেহতীয়া সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পতকৈ পুৰনি সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2108,55 +2264,65 @@ msgstr "" + "ব্যৱহাৰকাৰী ৰূপে\n" + "'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ইয়াতকৈ ডাঙৰ লিখনীক এব্ৰিজ দেখুৱা হব" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "এই ধৰণৰ কোনো সমস্যা ডাইৰেকটৰি '%s' নাই" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "কেৱল সমস্যা গণনাক কোনো বাৰ্তা নহোৱাকৈ প্ৰিন্ট কৰক" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকে অধিক শেহতীয়া সমস্যাসমূহ প্ৰিন্ট কৰক" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT এ %u সমস্যা(সমূহ) চিনাক্ত কৰিছে। অধিক তথ্যৰ বাবে চলাওক: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' মচি পেলোৱা হৈছে" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "আৰু [options] DIR সংবাদন কৰক..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "সংবাদন কৰাৰ পিছত PROBLEM_DIR আতৰাওক" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' মচি পেলোৱা হৈছে" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "কাৰ্য্যসমূহ: remove(rm), info(i), skip(s):" +@@ -2167,27 +2333,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "কাৰ্য্যসমূহ: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' সংবাদন কৰা" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "পৰৱৰ্তী সমস্যাৰ বাবে ENTER টিপক:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since তৰ্ক নাথাকিলে, সকলো চিনাক্ত কৰা সমস্যাবোৰ পুনৰাবৃত্তি হয়।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "কেৱল টাইমস্টাম্পৰ পিছত চিনাক্ত কৰা সমস্যাবোৰ নিৰ্বাচন কৰে" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ast.po b/po/ast.po +index fa46b52..1b75f51 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ast/)\n" + "Language: ast\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bg.po b/po/bg.po +index 80dfd29..5205c5c 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/bg/)\n" + "Language: bg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,102 +28,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не мога да взема собствеността на '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Съобщи" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -133,6 +133,17 @@ msgstr "" + "\n" + "Аплет, известяващ потребителя, когато нов проблем бъде открит от ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -154,7 +165,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -187,30 +200,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -236,14 +261,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -255,11 +280,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Директория с проблема" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Конфигурационен файл" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -273,24 +298,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [опции]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Запис в системния журнал" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Добавяй имената на програмите в записа" + +@@ -298,60 +324,50 @@ msgstr "Добавяй имената на програмите в записа" + msgid "Unknown error" + msgstr "Непозната грешка" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' не е валидна директория с проблем" ++msgid "'%s' is not a valid element name" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' не е валидна директория с проблем" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Неупълномощен" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -361,12 +377,12 @@ msgstr "" + "Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, " + "собственик на името.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Изход след NUM секунди бездействие" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Тази програма трябва да бъде стартирана като root." + +@@ -387,18 +403,22 @@ msgstr "Да не преминава в режим демон" + msgid "Log to syslog even with -d" + msgstr "Записвай в системния журнал дори и при -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Стартирай EVENT върху DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -428,73 +448,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -506,68 +527,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -591,18 +612,26 @@ msgstr "Не мога да chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Изтриването на директория с проблем се провали: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не мога да получа списъка проблеми от abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -647,7 +676,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Разбора на обратното проследяване за %s се провали" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -741,12 +770,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -860,14 +921,43 @@ msgstr "Липсващ debuginfo файл: {0}" + msgid "All debuginfo files are available" + msgstr "Всички debuginfo файлове са на разположение" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1090,7 +1180,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Също като -d DumpLocation, DumpLocation е зададено в abrt.conf" + +@@ -1100,16 +1191,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Направи директорията с проблема достъпна за четене от всички" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Отпечатва търсените низове на стандартния изход и излиза" + +@@ -1118,8 +1211,12 @@ msgstr "Отпечатва търсените низове на стандарт + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1139,6 +1236,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1162,11 +1260,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1180,16 +1280,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1197,18 +1300,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1227,14 +1333,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1243,12 +1352,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1258,58 +1413,62 @@ msgstr "" + "\n" + "Извлечи Xorg срива от FILE (или стандартния вход)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Отпечатай намерените данни за срив на стандартния изход" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1838,19 +1997,19 @@ msgstr "Провал при изключване на NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1859,24 +2018,24 @@ msgstr "" + "Възникна проблем в ядрото, но ядрото Ви е опорочено (флагове:%s). " + "Поддържащите ядрото не могат да диагностицират проблеми в такива ядра." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Списък id-та на бъгове" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Задайте url на bodhi сървър" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Задайте издание" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1886,20 +2045,20 @@ msgstr "" + "\n" + "Търси за обновления в bodhi сървър" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Търсене на обновления" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Няма намерени обновления за този пакет" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Версията на локалния пакет е по-нова от наличните обновления" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1921,65 +2080,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Употреба: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Премахни директорията с проблем DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Анализирай и рапортувай данните за проблем в DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Отпечатай информация за DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Покажи детайлен рапорт" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1987,49 +2147,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2038,24 +2208,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bn.po b/po/bn.po +index 7584e3c..d50e4aa 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -15,7 +15,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -25,7 +25,7 @@ msgstr "" + "language/bn/)\n" + "Language: bn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -35,102 +35,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -141,6 +141,17 @@ msgstr "" + "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " + "অ্যাপ্লেট\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -162,7 +173,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -195,30 +208,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -244,14 +269,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -263,11 +288,11 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যাযুক্ত ডিরেক্টরি" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -281,24 +306,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" + +@@ -306,60 +332,50 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -367,12 +383,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -393,18 +409,22 @@ msgstr "ডেমন তৈরি করা হবে না" + msgid "Log to syslog even with -d" + msgstr "-d সহযোগেও syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -434,73 +454,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -512,68 +533,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -597,18 +618,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -653,7 +682,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -748,12 +777,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -868,14 +929,43 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" + msgid "All debuginfo files are available" + msgstr "সকল debuginfo ফাইল উপলব্ধ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1095,7 +1185,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " +@@ -1107,16 +1198,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1125,8 +1218,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1146,6 +1243,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1169,11 +1267,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1187,16 +1287,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1204,18 +1307,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1234,14 +1340,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1250,70 +1359,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1840,19 +1999,19 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1861,44 +2020,44 @@ msgstr "" + "কার্নেলে সমস্যা দেখা দিয়েছে, কিন্তু আপনার কার্নেল চিহ্নযুক্ত (flags:%s) " + "হয়েছে। কার্নেল রক্ষণাবেক্ষণকারী চিহ্নযুক্ত রিপোর্টের সমাধান করতে অক্ষম।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1920,65 +2079,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1986,49 +2146,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2037,24 +2207,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bn_IN.po b/po/bn_IN.po +index c42d4ba..5f6d6df 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -16,7 +16,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -26,7 +26,7 @@ msgstr "" + "abrt/language/bn_IN/)\n" + "Language: bn-IN\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -36,102 +36,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "সূচনাবার্তা বন্ধ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -142,6 +142,17 @@ msgstr "" + "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " + "অ্যাপ্লেট\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -162,18 +173,15 @@ msgstr "সংক্ষিপ্ত রিপোর্টিং" + msgid "Silent shortened reporting" + msgstr "নীরব সংক্ষিপ্ত রিপোর্টিং" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"স্ট্যাক ট্রেস প্রস্তুত করতে কোর-ডাম্প ফাইল প্রয়োজনীয় যা সময় এবং স্থান " +-"সাপেক্ষ এক কাজ। ABRT একটি পরিষেবা প্রদান করে, যা কোর-ডাম্প থেকে স্ট্যাক " +-"ট্রেস প্রস্তুত করে কিন্তু অাপনাকে পরিষেবায় কোর-ডাম্প অাপলোড করতে হবে। এই " +-"বিকল্প নিষ্ক্রিয় অবস্থায়, ABRT জিঞ্জাসা না করেই কোর-ডাম্প অাপলোড করবে।" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -221,29 +229,24 @@ msgstr "" + " এই বিকল্প সক্রিয় অবস্থায়, ABRT কখনও রিপোর্ট করা সমস্যাগুলির বিজ্ঞপ্তিগুলি " + "দেখাবে না। সংক্ষিপ্ত রিপোর্টিং সক্রিয় থাকলে তবেই কার্যকর হয়।" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "কোর-ডাম্প অাপলোড করার অাগে জিজ্ঞাসা করুন" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "সংবেদনশীল তথ্যের জন্য ব্যক্তিগত টিকিটের অনুরোধ জানান" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "অসম্পূর্ণ সমস্যাগুলি জানান" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -253,6 +256,22 @@ msgstr "" + "করা হয়েছে। মূল্যবান সমস্যার রিপোর্ট প্রদান করতে, ABRT অাপনাকে এই সমস্যাগুলি " + "জমা দেওয়ার অনুমতি দেবে না।" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -279,14 +298,14 @@ msgstr "সম্বন্ধে" + msgid "Quit" + msgstr "প্রস্থান করুন" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -298,11 +317,11 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যাযুক্ত ডিরেক্টরি" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -316,24 +335,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" + +@@ -341,61 +361,51 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম + msgid "Unknown error" + msgstr "অজানা ত্রুটি" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' উপাদান সংশোধন করা যায় না" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "অনুমোদিত নয়" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "সংশোধনের জন্য সমস্যা অ্যাক্সেস করা যায় না" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' উপাদান সংশোধন করা যায় না" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' এর মাপ পাওয়া যায় না" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "কোনো সমস্যা স্পেস পড়ে নেই" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -405,12 +415,12 @@ msgstr "" + "'%s' নামটি হারিয়ে গেছে, অনুগ্রহ করে পরীক্ষা করুন এই নাম ধারণকারী অন্য কোনো " + "পরিসেবা চলছে কি না।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্রোগ্রামটি শুধুমাত্র root পরিচয়ে সঞ্চালন করা আবশ্যক" + +@@ -436,18 +446,22 @@ msgstr "ডেমন তৈরি করা হবে না" + msgid "Log to syslog even with -d" + msgstr "-d সহযোগেও syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ব্যবহারকারীর সাথে সরাসরি যোগাযোগ করুন" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -487,90 +501,91 @@ msgstr "একসাথে উদ্ভূত ওয়ার্কারের + msgid "Maximal cache size in MiB. Default is " + msgstr "সর্বাধিক ক্যাশে মাপ MiB এ। ডিফল্ট হল" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "প্রমাণীকরণ বন্ধ করে" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support ব্যবহারকারীর নাম" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support পাসওয়ার্ড, দেওয়া না থাকলে, তা দিতে বলা হবে" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL শংসাপত্রের পাথ বা শংসাপত্রের ধরন" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "অাপনাকে --password -এর জন্য --username ও নির্দিষ্ট করতে হবে" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + "অাপনি --username বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + "অাপনি --username বা --anonymous -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + "অাপনি --anonymous বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজানা বিকল্প মান: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "পাসওয়ার্ড:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "পাসওয়ার্ড না দিয়ে এগিয়ে যেতে পারবেন না\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ক্লায়েন্ট প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "বেনামে স্বয়ংক্রিয় ভাবে জানানো" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -590,83 +605,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "একটি ডিরেক্টরি নয়: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্ল্যাশ দিয়ে শুরু)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ডট দিয়ে শুরু)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (বিশিষ্ট ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্পেস রয়েছে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ট্যাব রয়েছে)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ডিরেক্টরি '{0}'-এ পরিবর্তন করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "অজানা ফাইল ধরন: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' -এ ওয়ার্কিং ডিরেক্টরি তৈরি করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}', '{1}' -এ সরানো সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}', '{1}'-এ অনুলিপি করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'-এ যাচাইকরণ ত্রুটি" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' অান-প্যাক করা হচ্ছে" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ডিরেক্টরি তৈরি করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' অান-প্যাক করা সম্ভব নয়" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' সফল ভাবে প্রক্রিয়া করা হয়েছে" + +@@ -690,18 +705,26 @@ msgstr "'%s'-কে chown করতে ব্যর্থ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যাপূর্ণ ডিরেক্টি মুছে ফেলতে ব্যর্থ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -747,7 +770,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ক্র্যাশ থ্রেড খুঁজে পাওয়া যায়নি" + +@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" + msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -862,6 +885,38 @@ msgstr "" + "কার্নেল লগ সূচিত করছে যে হার্ডওয়্যার ত্রুটি সনাক্ত করা হয়েছে।\n" + "এটি খুব সম্ভবত কোনো সফ্টওয়্যার সমস্যা নয়।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -979,7 +1034,36 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" + msgid "All debuginfo files are available" + msgstr "সকল debuginfo ফাইল উপলব্ধ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -989,7 +1073,7 @@ msgstr "" + "বলা হলে স্থানীয় অবস্থানে স্ট্যাক ট্রেস প্রস্তুত করা হবে। (এর ফলে অনেক পরিমাণ " + "তথ্য ডাউনলোড করা হবে)।" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1228,7 +1312,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " +@@ -1240,16 +1325,18 @@ msgstr "বের করে নিয়ে অাসা তথ্য PROBLEM এ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, সেকেন্ড প্রতি 1" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "অনুসন্ধানের পংক্তিগুলি stdout-এ প্রদর্শন করে প্রস্থান করা হবে" + +@@ -1259,9 +1346,13 @@ msgstr "অনুসন্ধানের পংক্তিগুলি stdout- + msgid "Failed to compile regex" + msgstr "regex একত্রিত করতে ব্যর্থ হয়েছে" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1280,6 +1371,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1303,11 +1395,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1321,16 +1415,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1338,18 +1435,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1368,14 +1468,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1384,12 +1487,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1399,58 +1548,62 @@ msgstr "" + "\n" + "Extract Xorg crash from FILE (or standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "বিপর্যয় সম্বন্ধে প্রাপ্ত তথ্য স্ট্যান্ডার্ড আউটপুটে প্রিন্ট করা হবে" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "খুঁজে পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ সমস্যা ডিরেক্টরি তৈরি করুন" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1987,7 +2140,7 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" + msgid "Sleeping for %d seconds" + msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1995,7 +2148,7 @@ msgstr "" + "ভাঙা BIOS এর কারণে একটি কার্নেল সমস্যা দেখা দিয়েছে। দুর্ভাগ্যবশতঃ, এই ধরনের " + "সমস্যা কার্নেল রক্ষণাবেক্ষণকারীদের দ্বারা সারানো সম্ভব নয়।" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2003,7 +2156,7 @@ msgstr "" + "একটি কার্নেল সমস্যা দেখা দিয়েছে, কিন্তু অাপনার হার্ডওয়্যার অসমর্থিত, তাই " + "কার্নেল রক্ষণাবেক্ষণকারীরা তা সারাতে অপরাগ।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2013,24 +2166,24 @@ msgstr "" + "টেইন্ট হয়েছে (flags:%s)। Kernel-র পরিচালকরা টেইন্ট হওয়া kernel-র রিপোর্ট " + "থেকে সমস্যার কারণ নির্ণয় করতে সক্ষম হবেন না।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " টেন্টেড মডিউল: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "বাগ ID-র তালিকা" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "একটি bodhi সার্ভার url নির্ধারণ করুন" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "একটি রিলিজ সংখ্যা নির্ধারণ করুন" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2040,22 +2193,22 @@ msgstr "" + "\n" + "Search for updates on bodhi server" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "আপডেট অনুসন্ধান করা হচ্ছে" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "এই প্যাকেজের কোনো আপডেট পাওয়া যায়নি" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "উপলব্ধ প্যাকেজের সংস্করণের তুলনায় নতুন প্যাকেজ স্থানীয় মেশিনে উপস্থিত " + "রয়েছে" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2082,70 +2235,71 @@ msgstr "পাওয়া oopses মুদ্রণ করুন" + msgid "Delete files with found oopses" + msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগুলি মুছুন" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "সমস্যাগুলি তালিকাভুক্ত করুন [DIRs-এ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "একাধিক সমস্যাগুলি প্রক্রিয়া করুন" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "শুধুমাত্র না জানানো সমস্যা তালিকাভুক্ত করুন" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র " + "তালিকাভুক্ত করুন" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2156,56 +2310,66 @@ msgstr "" + "বিশেষাধিকার থাকা ব্যবহারকারী সমেত\n" + "'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "এর থেকে বড় পাঠ্য সংক্ষিপ্ত করে দেখানো হবে" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "কোনো '%s' সমস্যা ডিরেক্টরি নেই" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "কোনো বার্তা ছাড়া শুধুমাত্র সমস্যা গণনা মুদ্রণ করুন" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ " + "করুন" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u সমস্য সনাক্ত করেছে। অারো তথ্যের জন্য চালনা করুন: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' মোছা হচ্ছে" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& রিপোর্ট [বিকল্প] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "রিপোর্ট করার পরে PROBLEM_DIR সরান" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' মোছা হচ্ছে" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "অ্যাকশন: remove(rm), info(i), skip(s):" +@@ -2216,28 +2380,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "অ্যাকশন: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' রিপোর্ট করা হচ্ছে" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "পরবর্তী সমস্যার জন্য ENTER টিপুন:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "শুধুমাত্র টাইম-স্ট্যাম্পের পরে সনাক্ত করা সমস্যাগুলি নির্বাচন করে" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bs.po b/po/bs.po +index ebef881..6974aea 100644 +--- a/po/bs.po ++++ b/po/bs.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "Language: bs\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Izvještaj" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -153,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -186,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -235,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -254,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfiguracijska datoteka" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -272,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Zapiši u syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Dodaj nazive programa u zapis" + +@@ -297,60 +323,50 @@ msgstr "Dodaj nazive programa u zapis" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "Nemoj deamonizirati" + msgid "Log to syslog even with -d" + msgstr "Zapiši u syslog čak i sa -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Prolazak kroz funkcijski trag nije uspjelo za %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1787,63 +1946,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1865,65 +2024,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1931,49 +2091,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1982,24 +2152,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ca.po b/po/ca.po +index 8a4dadb..7b320e5 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -8,20 +8,21 @@ + # Josep Torné , 2014 + # Robert Antoni Buj Gelonch , 2014. #zanata + # Robert Antoni Buj Gelonch , 2015. #zanata ++# Robert Antoni Buj Gelonch , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-28 03:29-0400\n" ++"PO-Revision-Date: 2016-01-25 06:37-0500\n" + "Last-Translator: Robert Antoni Buj Gelonch \n" + "Language-Team: Catalan \n" + "Language: ca\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,34 +32,34 @@ msgstr "Presentació d'informes del problema" + msgid "View and report application crashes" + msgstr "Visualitzeu i informeu de les fallides en les aplicacions" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "No es pot ser el propietari de '%s'" ++msgstr "No es pot ser el propietari de «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "No es pot obrir el directori per a l'escriptura '%s'" ++msgstr "No es pot obrir el directori per a l'escriptura «%s»" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "No es pot tancar la notificació: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informa" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Reinicia" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -67,7 +68,7 @@ msgstr "" + "Ho sentim, sembla que %s ha tingut pana. El problema ha estat informat " + "automàticament." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -76,26 +77,26 @@ msgstr "" + "Ho sentim, sembla que %s ha tingut pana. El problema serà informat que hi " + "hagi disponible una connexió a Internet." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + "Ho sentim, sembla que %s ha tingut pana. Si us plau, poseu-vos en contacte " +-"amb el desenvolupador si voleu informar-li d'aquesta incidència." ++"amb el desenvolupador si voleu informar-lo d'aquesta incidència." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" +-"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a què es solucioni, " +-"si us plau envieu un informe." ++"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a solucionar-ho, si " ++"us plau, envieu un informe." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -103,7 +104,7 @@ msgstr "" + "Ho sentim, sembla que hi va haver un problema amb un component. El problema " + "ha estat informat automàticament." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -111,36 +112,36 @@ msgstr "" + "Ho sentim, sembla que hi va haver un problema amb un component. El problema " + "serà informat que hi hagi disponible una connexió a Internet." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + "Ho sentim, sembla que hi va haver un problema amb un component. Si voleu " +-"ajudar a què es solucioni, si us plau envieu un informe." ++"ajudar a solucionar-ho, si us plau, envieu un informe." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "No es pot mostrar la notificació: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "No es pot llegir des del canal gio: '%s'" ++msgstr "No es pot llegir des del canal gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "No es pot establir la codificació en el canal gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "No es pot engegar el mode no-bloquejant per al canal gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -151,6 +152,17 @@ msgstr "" + "Miniaplicació que notifica a l'usuari d'un nou problema detectat per " + "l'ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Pregunta abans de robar un directori" +@@ -172,13 +184,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"El fitxer del bolcat de memòria és necessari per generar la traça de la " +-"pila, que és una operació que consumeix temps i espai. L'ABRT proporciona un " +-"servei que genera la traça de la pila des del bolcat de memòria, però heu de " +-"pujar el bolcat de memòria a aquest servei. Amb aquesta opció inhabilitada " +-"l'ABRT pujarà el bolcat de memòria sense preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -200,10 +209,10 @@ msgid "" + "uReports are sent automatically immediately after problem detection." + msgstr "" + "L'uReport és la descripció breu i completament anònima d'un problema. L'ABRT " +-"utilitza els uReport per a la ràpida detecció de duplicats a nivell global. " +-"En la configuració per defecte l'uReport és enviat al començament del procés " +-"de presentació d'informes. Amb aquesta opció habilitada els uReports són " +-"enviats automàticament tot just després de la detecció del problema." ++"utilitza els uReport per a la ràpida detecció global de duplicats. En la " ++"configuració per defecte l'uReport és enviat al començament del procés " ++"informador. Amb aquesta opció habilitada els uReports són enviats " ++"automàticament tot just després de la detecció del problema." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +@@ -226,10 +235,6 @@ msgstr "" + "d'informes reduïts." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Pregunta abans de pujar un bolcat de memòria" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -237,24 +242,40 @@ msgstr "" + "Amb aquesta opció habilitada l'ABRT sempre crea el tiquet de l'error amb " + "accés restringit si es detecten possibles dades sensibles." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "Sol·licita un tiquet privat per a informació sensible" ++msgstr "Sol·licita un tiquet privat per a la informació sensible" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifica problemes incomplets" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" +-"El problemes incomplets es detecten mentre l'ordinador s'està aturant o " ++"Els problemes incomplets es detecten mentre l'ordinador s'està aturant o " + "s'està tancant la sessió d'un usuari. A fi de proporcionar informes de " + "problemes valuosos, l'ABRT no us permetrà enviar aquests problemes." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Tanca" +@@ -280,7 +301,7 @@ msgstr "Sobre" + msgid "Quit" + msgstr "Surt" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -291,7 +312,7 @@ msgstr "" + "Consulta a la base de dades dels paquets i desa el nom del paquet i del " + "component" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -303,11 +324,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Directori del problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Fitxer de configuració" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Utilitza aquest directori com a l'arrel dels RPM" + +@@ -323,24 +344,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "El directori arrel per a l'execució de les ordres del contenidor" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opcions]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" +-msgstr "Utilitza el NUM com a uid de client" ++msgstr "Utilitza el NÚM com a uid de client" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Enregistra a syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Afegeix els noms dels programes al registre" + +@@ -348,77 +370,67 @@ msgstr "Afegeix els noms dels programes al registre" + msgid "Unknown error" + msgstr "Error desconegut" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' no es un directori del problema vàlid" ++msgid "'%s' is not a valid element name" ++msgstr "«%s» no és un nom d'element vàlid" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "L'element '%s' no es pot modificar " ++msgid "'%s' is not a valid problem directory" ++msgstr "«%s» no és un directori del problema vàlid" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "No autoritzat" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "No es pot accedir al problema per a la notificació" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "L'element «%s» no es pot modificar " + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Error en canviar el propietari del directori. Reviseu els registres del " + "sistema per a més detalls." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "No es pot accedir a la lectura del problema" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' no és un nom d'element vàlid" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "No es pot obtenir la mida de '%s'" ++msgstr "No es pot obtenir la mida de «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "No queda espai per al problema" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "No es pot eliminar l'element '%s' del directori del problema '%s'" ++msgstr "No es pot eliminar l'element «%s» del directori del problema «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"S'ha perdut el nom '%s', comproveu que no s'estigui executant un altre " ++"S'ha perdut el nom «%s», comproveu que no s'estigui executant un altre " + "servei que sigui el propietari del nom.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" +-msgstr "Surt després de NUM segons d'inactivitat" ++msgstr "Surt després de NÚM segons d'inactivitat" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Aquest programa cal executar-lo com a root." + +@@ -445,24 +457,28 @@ msgstr "No en facis un dimoni" + msgid "Log to syslog even with -d" + msgstr "Enregistra a syslog inclús amb -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" +-msgstr "Executa EVENT a DIR" ++msgstr "Executa l'ESDEVENIMENT al DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comuniqueu-vos directament amb l'usuari" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + "No hi ha cap treballador lliure i la memòria intermèdia està plena. S'està " +-"ometent l'arxiu '%s'" ++"ometent l'arxiu «%s»" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -475,7 +491,7 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" +-"& [-vs] [-w NUM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" ++"& [-vs] [-w NÚM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" + "\n" + "\n" + "Observa el DIRECTORI_DE_PUJADA i desempaqueta els arxius d'entrada al " +@@ -491,81 +507,82 @@ msgstr "Endimonia" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "El nombre de treballs concurrents. Per defecte són " ++msgstr "El nombre de treballs concurrents. El valor per defecte és " + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "La mida màxima de la memòria cau en MiB. Per defecte són " ++msgstr "La mida màxima de la memòria cau en MiB. El valor per defecte és " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Desactiva l'autenticació" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "nom d'usuari del Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" +-"Contrasenya de Red Hat Support, si no es proporciona se us preguntarà per " ++"Contrasenya de Red Hat Support, si no es proporciona, se us preguntarà per " + "ella" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Els camins als certificats SSL de l'uReport o el tipus de certificat" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "També heu d'especificar --username per a --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Podeu utilitzar tant --username com --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Podeu utilitzar tant --username com --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Podeu utilitzar tant --anonymous com --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "El nombre d'arguments no és vàlid" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Valor d'opció desconeguda: '%s'\n" ++msgstr "Valor d'opció desconeguda: «%s»\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Contrasenya:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "No es pot continuar sense la contrasenya\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "presentació automàtica d'informes d'HTTP autentificat" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "presentació automàtica d'informes de client autentificat SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "presentació anònima dels informes" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -584,68 +601,68 @@ msgstr "" + " UPLOAD_DIR - Directori on són emmagatzemats els arxius pujats\n" + " FILENAME - Nom del fitxer de l'arxiu pujat\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "No és un directori: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "S'està ometent: '{0}' (comença amb barra invertida)" ++msgstr "S'ignora: '{0}' (comença amb barra invertida)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "S'està ometent: '{0}' (comença amb punt)" ++msgstr "S'ignora: '{0}' (comença amb punt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "S'està ometent: '{0}' (conté ..)" ++msgstr "S'ignora: '{0}' (conté ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "S'està ometent: '{0}' (conté espai)" ++msgstr "S'ignora: '{0}' (conté espai)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "S'està ometent: '{0}' (conté tabulador)" ++msgstr "S'ignora: '{0}' (conté tabulador)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "No es pot canviar el directori '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipus de fitxer desconegut: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "No es pot crear el directori de treball en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "No es pot moure '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "No es pot copiar '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Error de verificació en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "S'està desempaquetant '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "No es pot crear el directori '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "No es pot desempaquetar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' s'ha processat amb èxit" + +@@ -662,33 +679,41 @@ msgstr "No es pot connectar al DBus del sistema: %s" + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "No es pot canviar el propietari '%s': %s" ++msgstr "No es pot canviar el propietari «%s»: %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Error en eliminar el directori del problema: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "No es pot obtenir el llistat de problemes des de l'abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "No es pot provar si l'element existeix sobre l'abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "No es pot crear el fitxer temporal '%s'" ++msgstr "No es pot crear el fitxer temporal «%s»" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -696,14 +721,14 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"No es pot escriure en '%s'. El problema '%s' no es traurà dels problemes " +-"ignorats '%s'" ++"No es pot escriure en «%s». El problema «%s» no es traurà dels problemes " ++"ignorats «%s»" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "No es pot reanomenar '%s' a '%s'. Error en eliminar el problema '%s'" ++msgstr "No es pot reanomenar «%s» a «%s». Error en eliminar el problema «%s»" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -728,7 +753,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Error en analitzar la traça inversa per %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "No s'ha trobat el fil d'execució de la pana" + +@@ -740,18 +765,18 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID del bolcat de memòria en el directori del problema " ++"Calcula i desa l'UUID del bolc de la memòria en el directori del problema " + "DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "S'està analitzant el bolcat de memòria '%s'" ++msgstr "S'està analitzant el bolc de la memòria «%s»" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "Falta l'Id. de la contrucció: %s" ++msgstr "Falta l'id. de la construcció: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format +@@ -770,7 +795,8 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH per al directori del problema oops DIR" ++"Calcula i desa l'UUID i el DUPHASH per al directori DIR del problema de " ++"l'oops" + + #: ../src/plugins/abrt-action-analyze-oops.c:79 + msgid "" +@@ -793,12 +819,12 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH per al directori del problema xorg DIR" ++"Calcula i desa l'UUID i el DUPHASH per al directori del problema xorg DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "El mòdul '%s' estava carregat - no s'informarà d'aquesta pana" ++msgstr "El mòdul «%s» estava carregat - no s'informarà d'aquesta pana" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -808,7 +834,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH dels bolcats de les panes de Python" ++"Calcula i desa l'UUID i el DUPHASH dels bolcs de les panes de Python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -820,7 +846,7 @@ msgstr "El fitxer {0} no existeix" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "S'estan extraient el text dels ops des del nucli" ++msgstr "S'estan extraient el text de l'oops des del nucli" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" +@@ -830,13 +856,13 @@ msgstr "No es pot processar {0}:\n" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "No es pot extraure el missatge oops: '{0}'" ++msgstr "No es pot extraure el missatge de l'oops: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "El text dels oop s'ha extret am èxit" ++msgstr "El text de l'oops s'ha extret amb èxit" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -845,6 +871,38 @@ msgstr "" + "de maquinari.\n" + "El més probable és que no sigui un problema de programari.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -853,7 +911,7 @@ msgid "" + msgstr "" + "& [opcions] -d DIR\n" + "\n" +-"Analitza el bolcat de memòria en el directori del problema DIR, genera i " ++"Analitza el bolc de la memòria en el directori del problema DIR, genera i " + "desa la traça inversa" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 +@@ -862,7 +920,7 @@ msgstr "Directoris debuginfo addicionals" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "Mata al gdb si s'executa més de NUM segons" ++msgstr "Mata al gdb si s'executa més de NÚM segons" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +@@ -880,7 +938,7 @@ msgid "" + msgstr "" + "& [-v] [-r] -d DIR\n" + "\n" +-"Crea una traça inversa a nivell de bolcat de memòria des del bolcat de " ++"Crea una traça inversa a escala de bolc de la memòria des del bolc de la " + "memòria i el corresponent binari" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +@@ -946,7 +1004,7 @@ msgstr "" + "Es llegeix la configuració de /etc/abrt/plugins/CCpp.conf\n" + "\n" + " -v Mostra informació detallada\n" +-" -y No interactiu, assumeix 'Si' a totes les preguntes\n" ++" -y No interactiu, s'assumeix 'Sí' a totes les preguntes\n" + " --ids Per defecte: build_ids\n" + " --tmpdir Per defecte: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" + "RANDOM_SUFFIX\n" +@@ -954,7 +1012,7 @@ msgstr "" + " --size_mb Per defecte: 4096\n" + " --pkgmgr Per defecte: PackageManager des de CCpp.conf o 'dnf'\n" + " -e,--exact Baixa tan sols els paquets especificats\n" +-" --repo Patró a utilitzar quan es cerquen dipòsits.\n" ++" --repo Patró a utilitzar quan se cerquen dipòsits.\n" + " Per defecte: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 +@@ -964,7 +1022,7 @@ msgstr "No es pot obrir {0}: {1}" + #: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" +-"El bolcat de memòria fa referència a {0} fitxers debuginfo, {1} dels quals " ++"El bolc de la memòria fa referència a {0} fitxers debuginfo, {1} dels quals " + "no estan instal·lats" + + #: ../src/plugins/abrt-action-install-debuginfo.in:215 +@@ -976,7 +1034,7 @@ msgstr "{0} dels fitxers debuginfo no estan instal·lats" + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" + "configuració no vàlida del complement CCpp, el gestor de paquets no està " +-"suportat: '%s'" ++"suportat: «%s»" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -990,24 +1048,53 @@ msgstr "Falta el fitxer debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Tots els fitxers debuginfo estan disponibles" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" +-"Esteu d'acord en pujar el bolcat de memòria? (Pot contenir dades sensibles). " +-"Si la vostra resposta és 'No' aleshores es generà localment una traça de la " +-"pila. (pot baixar una gran quantitat de dades)." ++"Esteu d'acord en pujar el bolc de la memòria? (Pot contenir dades sensibles)." ++" Si la vostra resposta és «No», aleshores es generà localment una traça de " ++"la pila. (pot baixar una gran quantitat de dades)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." + msgstr "" +-"Voleu generar a nivell local una traça de la pila? (Es poden baixar una gran " +-"quantitat de dades, però la presentació d'informes no pot continuar sense la " +-"traça de la pila)." ++"Voleu generar localment una traça de la pila? (Pot baixar una gran quantitat " ++"de dades, però la presentació d'informes no pot continuar sense la traça de " ++"la pila)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -1038,12 +1125,12 @@ msgstr "Preserva aquest directori" + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "Incapaç d'iniciar '%s', el missatge d'error va ser: '%s'" ++msgstr "Incapaç d'iniciar «%s», el missatge d'error va ser: «%s»" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "No és un número al fitxer '%s'" ++msgstr "No és un número al fitxer «%s»" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format +@@ -1053,8 +1140,8 @@ msgstr "Ús: %s [-v]" + #: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" +-"No s'ha pogut obtenir el directori de treball actual com probablement hagi " +-"estat eliminat" ++"No s'ha pogut obtenir el directori de treball actual, probablement es va " ++"eliminar" + + #: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" +@@ -1075,15 +1162,15 @@ msgstr "El reporter-ureport va fer fallida amb el codi de sortida %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "Senyal enviada pel codi de l'espai d'usuari" ++msgstr "Senyal enviat pel codi de l'espai d'usuari" + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "Senyal enviada per l'esdeveniment timer/IO/async" ++msgstr "Senyal enviat per l'esdeveniment timer/IO/async" + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "La senyal té siginfo.si_code = SI_USER" ++msgstr "El senyal té siginfo.si_code = SI_USER" + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +@@ -1092,22 +1179,22 @@ msgstr "Senyal a causa de l'escriptura en una canonada tancada" + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "Senyal enviada pel tecla" ++msgstr "Senyal enviat pel teclat" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "Senyal de control de treball enviada pel nucli del sistema operatiu" ++msgstr "Senyal de control de treball enviat pel nucli del sistema operatiu" + + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "Senyal enviada pel redimensionament de la finestra" ++msgstr "Senyal enviat pel redimensionament de la finestra" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "Senyal enviada per l'expiració d'alarm(N)" ++msgstr "Senyal enviat per l'expiració d'alarm(N)" + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +@@ -1147,7 +1234,7 @@ msgstr "Instrucció il·legal (salta a una adreça aleatòria?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "Senyal relacionada amb cap pana" ++msgstr "Senyal relacionat amb cap pana" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +@@ -1216,12 +1303,12 @@ msgid "" + msgstr "" + "& [-vusoxm] [-d DIR]/[-D] [FITXER]\n" + "\n" +-"Extreu els oop des del FITXER (o entrada estàndard)" ++"Extreu els oops del FITXER (o entrada estàndard)" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" +-msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" ++msgstr "Imprimeix els oops que s'han trobat en la sortida estàndard" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +@@ -1230,12 +1317,13 @@ msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" + #: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +-"Crea el nou directori del problema al DIR per a cadascun dels oop trobats" ++"Crea el nou directori del problema en DIR per a cadascun dels oops trobats" + + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "El mateix que -d DumpLocation, DumpLocation s'especifica en abrt.conf" + +@@ -1245,16 +1333,18 @@ msgstr "Desa la informació extreta en PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Fes que el directori del problema el pugui llegir tot el món" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Regula la creació del directori del problema a 1 per segon" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" + +@@ -1263,14 +1353,18 @@ msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" + msgid "Failed to compile regex" + msgstr "Error en compilar l'expressió regular" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "No es pot actualitzar el problema: s'han trobat més d'un oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "Ha fallat l'obtenció de tota la informació solicitada del journald" ++msgstr "Ha fallat l'obtenció de tota la informació sol·licitada del journald" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 +@@ -1286,6 +1380,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Error en inicialitzar l'observació de systemd-journal" + +@@ -1304,7 +1399,7 @@ msgid "" + msgstr "" + "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" + "\n" +-"Extreu els bolcats de memòria des de systemd-journal\n" ++"Extreu els bolcs de la memòria des de systemd-journal\n" + "\n" + "les opcions -c i -e entren en conflicte perquè ambdós especifiquen la " + "lectura del primer missatge.\n" +@@ -1318,18 +1413,20 @@ msgstr "" + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" + msgstr "" +-"Crea un nou directori del problema al DIR per a cadascun dels bolcats de " ++"Crea un nou directori del problema al DIR per a cadascun dels bolcs de la " + "memòria" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "Inicia la lectuta de systemd-journal des de la posició del CURSOR" ++msgstr "Inicia la lectura de systemd-journal des de la posició del CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "Inicia la lectuta de systemd-journal des del final" ++msgstr "Inicia la lectura de systemd-journal des del final" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +@@ -1341,17 +1438,20 @@ msgstr "El mateix que -t INT, INT s'especifica en plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Segueix systemd-journal des de la darrera posició vista (si n'hi hagués)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Heu d'especificar -c CURSOR o bé -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "No es pot obrir systemd-journal" + +@@ -1360,18 +1460,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + "No es pot filtrar systemd-journal a únicament les dades systemd-coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "No es pot buscar fins al final de la publicació" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "Error en establir el cursor de systemd-journal '%s'" ++msgstr "Error en establir el cursor de systemd-journal «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "No es poden llegir les dades de la publicació." + +@@ -1390,7 +1493,7 @@ msgid "" + msgstr "" + "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" + "\n" +-"Extrau els oops des del systemd-journal\n" ++"Extrau l'oops des del systemd-journal\n" + "\n" + "les opcions -c i -e entren en conflicte perquè ambdós especifiquen el primer " + "missatge llegit.\n" +@@ -1402,17 +1505,20 @@ msgstr "" + "La darrera posició vista està desada en " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Llegeix els fitxers de publicació des de totes les màquines" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Llegeix tots els fitxers de publicació del directori ubicat al CAMÍ" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "No es pot inicialitzar systemd-journal al directori «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" +@@ -1420,96 +1526,146 @@ msgstr "" + "No es pot filtrar systemd-journal únicament a dades del nucli del sistema " + "operatiu" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" +-msgstr "Error en iniciar l'observació des del cursor '%s'" ++msgstr "Error en iniciar l'observació des del cursor «%s»" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" +-"& [-vsoxm] [-d DIR]/[-D] [FITXER]\n" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extreu la pana d'Xorg des del FITXER (o entrada estàndard)" ++"Extreu la fallida Xorg des de FILE (o entrada estàndard)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + "Imprimeix les dades de les panes que s'han trobat en la sortida estàndard" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Crea el directori del problema al DIR per a cadascuna de les panes trobades" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "No es pot desar la posició d'observació de la publicació" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "No es pot desar la posició d'observació de la publicació: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" +-"No es restaura la posició d'observació de la publicació: el fitxer '%s' no " ++"No es restaura la posició d'observació de la publicació: el fitxer «%s» no " + "existeix" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "No es pot restaurar la posició d'observació de la publicació des del fitxer " +-"'%s'" ++"«%s»" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" +-"No es pot restaurar la posició d'observació de la publicació: el camí '%s' " ++"No es pot restaurar la posició d'observació de la publicació: el camí «%s» " + "no és un fitxer normal" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" +-"No es pot restaurar la posició d'observació de la publicació: el fitxer '%s' " +-"supera el límit de la mida %dB" ++"No es pot restaurar la posició d'observació de la publicació: el fitxer «%s» " ++"supera el límit de la mida %d B" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + "No es pot restaurar la posició d'observació de la publicació: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + "No es pot restaurar la posició d'observació del servei de publicació: no es " +-"pot llegir el fitxer sencer '%s'" ++"pot llegir el fitxer sencer «%s»" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" +-msgstr "Error en moure el cursor de la publicació des del fitxer '%s'" ++msgstr "Error en moure el cursor de la publicació des del fitxer «%s»" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" +-"No es pot utilitzar el servidor de resseguiment, a causa de que la mida del " ++"No es pot utilitzar el servidor de resseguiment, a causa que la mida del " + "fitxer de la pana és massa gran. Proveu amb un resseguiment local." + + #. Hopefully, by this time child emitted more meaningful +@@ -1565,8 +1721,8 @@ msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" +-"El servidor de resseguiment no es capaç de processar el paquet '%s.%s'.\n" +-"Forma part dels dipòsits oficials de '%s'?" ++"El servidor de resseguiment no és capaç de processar el paquet «%s.%s».\n" ++"Forma part dels dipòsits oficials de «%s»?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1585,7 +1741,7 @@ msgstr "El servidor ha rebutjat la vostra sol·licitud." + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" +-"'%s' ha de ser un fitxer normal per a poder utilitzar un servidor de " ++"«%s» ha de ser un fitxer normal per a poder utilitzar un servidor de " + "resseguiment." + + #: ../src/plugins/abrt-retrace-client.c:520 +@@ -1599,12 +1755,12 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:540 + msgid "The server does not support xz-compressed tarballs." +-msgstr "El servidor no és compatible amb els tarballs comprimits amb xz." ++msgstr "El servidor no és compatible amb els arxius tar comprimits amb xz." + + #: ../src/plugins/abrt-retrace-client.c:577 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "El llançament '%s' no està suportat pel servidor de resseguiment." ++msgstr "El llançament «%s» no està suportat pel servidor de resseguiment." + + #: ../src/plugins/abrt-retrace-client.c:581 + msgid "The server is not able to handle your request." +@@ -1624,8 +1780,8 @@ msgid "" + "The size of your archive is %s, but the retrace server only accepts archives " + "smaller or equal to %s." + msgstr "" +-"La mida del vostre arxiu es de %s, però el servidor de resseguiment " +-"únicament accepta arxius més petits o iguals de %s." ++"La mida del vostre arxiu és de %s, però el servidor de resseguiment " ++"únicament accepta arxius més petits o iguals a %s." + + #: ../src/plugins/abrt-retrace-client.c:640 + #, c-format +@@ -1648,7 +1804,7 @@ msgstr "S'està pujant %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 + msgid "Failed to read from a pipe" +-msgstr "Error en llegir de d'una canonada" ++msgstr "Error en llegir d'una canonada" + + #: ../src/plugins/abrt-retrace-client.c:734 + #, c-format +@@ -1677,11 +1833,11 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:782 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Id." ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Id." + + #: ../src/plugins/abrt-retrace-client.c:788 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Password." ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Password." + + #: ../src/plugins/abrt-retrace-client.c:795 + msgid "Retrace job started" +@@ -1696,7 +1852,7 @@ msgstr "Id. de la tasca: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:866 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Status." ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format +@@ -1718,8 +1874,8 @@ msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" +-"Error en el resseguiment. Proveu-ho de nou més tard i si el problema perdura " +-"informeu d'aquesta incidència." ++"Error en el resseguiment. Proveu-ho de nou més tard i si el problema " ++"perdura, informeu d'aquesta incidència." + + #: ../src/plugins/abrt-retrace-client.c:1217 + msgid "log to syslog" +@@ -1759,7 +1915,7 @@ msgstr "llegeix les dades des del directori del problema de l'ABRT" + + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "read data from coredump" +-msgstr "llegeix les dades des del bolcat de memòria" ++msgstr "llegeix les dades des del bolc de la memòria" + + #: ../src/plugins/abrt-retrace-client.c:1235 + msgid "Delay for polling operations" +@@ -1769,7 +1925,7 @@ msgstr "Retard per a les operacions de sondeig" + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" + "(depuració) no eliminis els arxius temporals que s'hagin creat des del " +-"directori del bolcat en " ++"directori del bolc en " + + #: ../src/plugins/abrt-retrace-client.c:1239 + msgid "For status, backtrace, and log operations" +@@ -1794,7 +1950,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1292 + #: ../src/plugins/abrt-retrace-client.c:1298 + msgid "Either problem directory or coredump is needed." +-msgstr "Es necessita el directori del problema o bé el bolcat de memòria." ++msgstr "Es necessita el directori del problema o bé el bolc de la memòria." + + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 +@@ -1822,8 +1978,8 @@ msgstr "Depurador GNU local" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" +-"Baixa els paquets debuginfo i genera a nivell local la traça inversa " +-"mitjançant GDB" ++"Baixa els paquets debuginfo i genera localment la traça inversa mitjançant " ++"GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" +@@ -1831,14 +1987,15 @@ msgid "" + "and take up disk space. However, unlike RetraceServer, doesn't send coredump " + "to remote machines." + msgstr "" +-"Necessita baixar els paquets debuginfo, els quals prenen un temps " +-"significant i espai de de disc. No obstant, a diferència dels servidors de " +-"resseguiment, no envia els bolcats de la memòria a màquines remotes." ++"Necessita baixar els paquets debuginfo, els quals prenen un temps i espai de " ++"disc considerable. No obstant això, a diferència dels servidors de " ++"resseguiment, no envia els bolcs de la memòria a màquines remotes." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "" +-"Envia el bolcat de memòria al servidor remot de resseguiment per a l'anàlisi" ++"Envia el bolc de la memòria al servidor remot de resseguiment per a " ++"l'anàlisi" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +@@ -1848,12 +2005,12 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" +-"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " +-"retorna. Pros: no hi hi la necessitat de baixar els debuginfo. La base de " ++"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " ++"retorna. Pros: no hi ha la necessitat de baixar els debuginfo. La base de " + "dades dels debuginfo del servidor de resseguiment és més completa. El " + "servidor de resseguiment pot generar millor les traces inverses. Cons: el " +-"bolcat de memòria que pugeu conté totes les dades del programa que ha tingut " +-"pana, que inclouen les vostres dades privades, si fos el cas." ++"bolc de la memòria que pugeu conté totes les dades del programa que ha " ++"tingut pana, que inclouen les vostres dades privades, si fos el cas." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + msgid "Retrace server URL" +@@ -1887,7 +2044,7 @@ msgstr "Recull .xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "Desa les línies rellevants del fitxer ~/.xsession-errors" ++msgstr "Desa les línies apropiades del fitxer ~/.xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" +@@ -1905,7 +2062,7 @@ msgstr "S'ha produït un error en el cantó del servidor." + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "S'ha produït un error en el cantó del servidor en '%s'" ++msgstr "S'ha produït un error en el cantó del servidor en «%s»" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +@@ -1914,7 +2071,7 @@ msgstr "S'ha produït un error mentre es connectava amb el servidor" + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "S'ha produït un error mentre es connectava a '%s'" ++msgstr "S'ha produït un error mentre es connectava a «%s»" + + #: ../src/plugins/https-utils.c:97 + #, c-format +@@ -1932,7 +2089,7 @@ msgstr "" + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" + "El nom del subjecte del certificat '%s' no coincideix amb el nom de " +-"l'amfitrió de destinació '%s'." ++"l'amfitrió de destinació «%s»." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1941,12 +2098,12 @@ msgstr "El certificat remot ha expirat." + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "No s'ha reconegut l'emissor del certificat: '%s'." ++msgstr "No s'ha reconegut l'emissor del certificat: «%s»." + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "S'ha rebut un certificat dolent. Subjecte '%s', emissor '%s'." ++msgstr "S'ha rebut un certificat dolent. Subjecte «%s», emissor «%s»." + + #: ../src/plugins/https-utils.c:149 + #, c-format +@@ -1956,13 +2113,13 @@ msgstr "Error en obtenir la ranura 'PEM Token #0': %d." + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "No es pot resoldre el nom de l'amfitrió '%s'. error de NSS %d." ++msgstr "No es pot resoldre el nom de l'amfitrió «%s». error de NSS %d." + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "No es pot resoldre el nom de l'amfitrió '%s'." ++msgstr "No es pot resoldre el nom de l'amfitrió «%s»." + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +@@ -1986,12 +2143,12 @@ msgstr "L'habilitació de TLS ha fallat." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "Error en establir la URL al sòcol SSL." ++msgstr "Error en establir l'URL al sòcol SSL." + + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "No es pot connectar a '%s'" ++msgstr "No es pot connectar a «%s»" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +@@ -2003,7 +2160,7 @@ msgstr "Ha fallat l'establiment del retorn de la salutació." + + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "Error en resetejar la salutació." ++msgstr "Error en restablir la salutació." + + #: ../src/plugins/https-utils.c:258 + #, c-format +@@ -2017,7 +2174,7 @@ msgstr "Error en tancar el sòcol SSL." + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "Capçalera de resposta HTTP amb format incorrecte: '%s'" ++msgstr "Capçalera de resposta HTTP amb format incorrecte: «%s»" + + #: ../src/plugins/https-utils.c:369 + #, c-format +@@ -2045,7 +2202,7 @@ msgstr "Error en aturar NSS." + msgid "Sleeping for %d seconds" + msgstr "S'està dormint durant %d segons" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2054,7 +2211,7 @@ msgstr "" + "trencada, per desgràcia aquests problemes no es poden corregir pels " + "mantenidors del nucli del sistema operatiu." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2063,7 +2220,7 @@ msgstr "" + "maquinari no és compatible, per tant els mantenidors del nucli del sistema " + "operatiu no poden corregir-ho." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2073,24 +2230,24 @@ msgstr "" + "nucli ha estat contaminat (marcadors: %s). Els mantenidors del nucli del " + "sistema operatiu no poden fer diagnòstics amb informes contaminats." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Mòduls contaminats: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Llistat dels Id. dels errors" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especifica un servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especifica un llançament" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2100,22 +2257,22 @@ msgstr "" + "\n" + "Cerca si hi ha actualitzacions en el servidor bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "S'està cercant si hi ha actualitzacions" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "No s'han trobat actualitzacions per aquest paquet" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La versió local del paquet és més recent que la de les actualitzacions " + "disponibles" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2133,79 +2290,80 @@ msgid "" + msgstr "" + "& [-v] [-od] FITXER...\n" + "\n" +-"Escaneja els fitxers per a dividir els missatges oop. Pot imprimir-los i/o " +-"eliminar-los." ++"Escaneja els fitxers per a dividir el missatge de l'oops. Pot imprimir-los i/" ++"o eliminar-los." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "Imprimeix els oop que s'han trobat" ++msgstr "Imprimeix els oops que s'han trobat" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "Elimina els fitxers amb els oop que s'han trobat" ++msgstr "Elimina els fitxers amb els oops que s'han trobat" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "'%s' fa referència a més d'un directori de problema" ++msgstr "«%s» fa referència a més d'un directori de problema" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Ús: abrt-cli [--version] ORDRE [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Llista els problemes [als DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Elimina el directori del problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analitza i informa de les dades del problema al DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimeix informació sobre el DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Imprimeix el compte de les panes recents" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Processa múltiples problemes" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consulteu 'abrt-cli ORDRE --help' per a més informació" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opcions]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Llista únicament els problemes que s'hagin informat" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostra informes detallats" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Llista únicament els problemes que siguin més recents que la marca de temps " + "especificada" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Llista únicament els problemes anteriors a la marca de temps especificada" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2216,53 +2374,63 @@ msgstr "" + "Considereu habilitar-ho\n" + "amb 'abrt-auto-reporting enabled' com a usuari amb els privilegis de root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opcions] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "El text que sigui més gran que aquest es mostrarà abreujat" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "El directori del problema '%s' no existeix" ++msgstr "El directori del problema «%s» no existeix" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Imprimeix únicament el compte dels problemes sense cap missatge" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Imprimeix únicament els problemes que siguin més recents que la marca de " + "temps especificada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +-"ABRT ha detectat %u problem[a|es]. Per a més informació executeu: abrt-cli " ++"ABRT ha detectat %u problem[a/es]. Per a més informació executeu: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "S'està eliminant «%s»" ++ ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [opcions] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Elimina PROBLEM_DIR després de la presentació d'informes" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "S'està eliminant '%s'" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Accions: remove(rm), info(i), skip(s):" +@@ -2271,33 +2439,188 @@ msgstr "Accions: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Accions: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "S'està informant '%s'" ++msgstr "S'està informant «%s»" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Per al següent problema premeu RETORN:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sense l'argument --since, s'itera sobre tots els problemes detectats." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + "Selecciona únicament els problemes que es van detectar després de la marca " + "de temps" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" + msgstr "" +-"Envia el bolcat de memòria a un servidor remot de resseguiment per a " +-"l'anàlisi o per a la realització de l'anàlisis local si es produeix un error " ++"Envia el bolc de la memòria a un servidor remot de resseguiment per a " ++"l'anàlisi o per a la realització de l'anàlisi local si es produeix un error " + "en el servidor remot de l'anàlisi" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 +@@ -2310,15 +2633,14 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" +-"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " +-"retorna. Si l'usuari no vol pujar el seu bolcat de memòria enlloc, " +-"l'esdeveniment realitza l'anàlisi a nivell local. L'anàlisi local s'executa " +-"si l'anàlisi remot falla. Pros: no hi hi la necessitat de baixar els " +-"debuginfo. La base de dades dels debuginfo del servidor de resseguiment és " +-"més completa. El servidor de resseguiment pot generar millor les traces " +-"inverses. Cons: el bolcat de memòria que pugeu conté totes les dades del " +-"programa que ha ha tingut pana, que inclouen les vostres dades privades, si " +-"fos el cas." ++"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " ++"retorna. Si l'usuari no vol pujar el seu bolc de la memòria enlloc, " ++"l'esdeveniment realitza localment l'anàlisi. L'anàlisi local s'executa si " ++"falla l'anàlisi remota. Pros: no hi ha la necessitat de baixar els debuginfo." ++" La base de dades dels debuginfo del servidor de resseguiment és més " ++"completa. El servidor de resseguiment pot generar millor les traces inverses." ++" Cons: el bolc de la memòria que pugeu conté totes les dades del programa " ++"que ha tingut pana, que inclouen les vostres dades privades, si fos el cas." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -2329,7 +2651,7 @@ msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + "Instal·la els paquets debuginfo del nucli del sistema operatiu, genera " +-"registres del nucli del sistema operatiu i missatges oops" ++"registres del nucli del sistema operatiu i missatges de l'oops" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" +@@ -2337,7 +2659,7 @@ msgid "" + "time, and take up disk space." + msgstr "" + "Necessita instal·lar els paquets debuginfo del nucli del sistema operatiu, " +-"els quals prenen un temps significant i espai de de disc." ++"els quals prenen un temps i espai de disc considerable." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -2352,8 +2674,8 @@ msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." + msgstr "" +-"Executa gconftool-2 --recursive-list /apps/executable i desa-ho com element " +-"de 'gconf_subtree'." ++"Executa gconftool-2 --recursive-list /apps/executable i ho desa com a " ++"element de 'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +diff --git a/po/cs.po b/po/cs.po +index 5a092d7..debed52 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -18,121 +18,134 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-05 09:29-0500\n" +-"Last-Translator: Jiri Eischmann \n" ++"PO-Revision-Date: 2015-05-13 05:06-0400\n" ++"Last-Translator: Zdenek \n" + "Language-Team: čeština \n" + "Language: cs\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Hlášení problemů" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Prohlédni a nahlas chyby aplikací" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nelze převzít vlastnictví '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nemohu otevřít adresář pro zápis '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nemohu zavřít oznámení: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Nahlásit" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Restart" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Problém byl automaticky nahlášen." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Problém bude nahlášen jakmile bude " ++"dostupný internet." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Kontaktujte prosím vývojáře, pokud " ++"chcete problém nahlásit." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Je nám líto, ale zdá se, že %s havaroval. Pokud chcete pomoct s řešením " ++"tohoto problému, zašlete nám ho prosím." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém byl " ++"automaticky nahlášen." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém bude " ++"nahlášen, jakmile bude dostupný internet." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Je nám líto, ale zdá se, že se v komponentě objevil problém. Pokud chcete " ++"pomoct s řešením tohoto problému, zašlete nám ho prosím." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nemohu zobrazit oznámení: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Nemohu číst z kanálu gio: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nemohu nastavit kódování na kanálu gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nemohu zapnout neblokový režim pro kanál gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -142,6 +155,17 @@ msgstr "" + "\n" + "Applet, který uživatele upozorní, když ABRT detekuje nový problém\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Zeptat se před ukradnutím adresáře" +@@ -163,12 +187,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Soubor coredumpu je nezbytný pro vygenerování stack tracu, což je časově a " +-"prostorově náročná operace. ABRT poskytuje službu, která vygeneruje stack " +-"trace z coredumpu, ale musíte do této služby coredump nahrát. Pokud tuto " +-"volbu zakážete, ABRT nahraje coredump bez ptaní." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -214,10 +236,6 @@ msgstr "" + "nahlášené problémy. Funguje pouze, pokud je povoleno Zkrácené hlášení." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Zeptat se před odesláním coredumpu" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -225,15 +243,15 @@ msgstr "" + "Pokud je tato volba povolená, ABRT vždy vytvoří chybové hlášení s omezeným " + "přístupem, jsou-li potenciálně citlivá data detekována." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Vyžadovat neveřejné hlášení v případě citlivých informací" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Upozornit na nekompletní problémy" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -242,6 +260,22 @@ msgstr "" + "Nekompletní problémy jsou detekovány, když se počítač vypíná nebo uživatel " + "odhlašuje. V zájmu užitečnosti hlášení, ABRT tyto problémy odesílat nebude." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Zavřít" +@@ -267,14 +301,17 @@ msgstr "O" + msgid "Quit" + msgstr "Konec" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"Dotáže databázi balíčků a uloží jméno balíčku a komponenty" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -286,42 +323,45 @@ msgstr "" + msgid "Problem directory" + msgstr "Adresář problému" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurační soubor" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Použít tento adresář jako RPM root" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Uloží zásobník metadat" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "Kořenový adresář pro běžící zásobník příkazů" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [volby]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Použít NUM jako klient uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Protokolovat do syslogu" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Přidá názvy programů do protokolu" + +@@ -329,62 +369,52 @@ msgstr "Přidá názvy programů do protokolu" + msgid "Unknown error" + msgstr "Neznámá chyba" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' není platným adresářem problému" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' není platným jménem prvku" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' prvek nemůže být modifikován" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' není platným adresářem problému" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Neautorizovaný" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nemohu zpřístupnit problém ke změně" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' prvek nemůže být modifikován" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Změna vlastníka adresáře selhala. Zkontrolujte logy systému pro více " + "informací." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' není platným jménem prvku" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nemohu získat velikost '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nezbývá místo na problémy" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nemohu smazat prvek '%s' z adresáře problému '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -394,12 +424,12 @@ msgstr "" + "Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící " + "toto jméno neběží.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončí po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí být spuštěn pod root uživatelem." + +@@ -425,18 +455,22 @@ msgstr "Nedémonizuje se" + msgid "Log to syslog even with -d" + msgstr "Protokoluje do syslogu i s -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Spustí EVENT v DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikovat přímo s uživatelem" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -474,73 +508,76 @@ msgstr "Počet souběžných \"dělníků\". Výchozí je " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximální velikost mezipaměti v MiB. Výchozí je " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Vypíná autentizaci" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Uživatelské jméno podpory Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Heslo pro podporu Red Hat. Pokud není uvedeno, bude obdržena výzva pro jeho " ++"vydání" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "Cesta nebo typ SSL certifikátu pro uReport" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Musíte zadat --username pro --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Můžete použít buď --username nebo --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Můžete použít buď --username nebo --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Můžete použít buď --anonymous nebo --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Neplatný počet argumentů" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Neznámá hodnota možnosti: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Heslo:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Bez zadání hesla nelze pokračovat\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Automatické hlášení chyb autorizováno pro HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "Automatické hlášení chyb autorizováno pro SSL klienta" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "Anonymní automatické hlášení chyb" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -560,68 +597,68 @@ msgstr "" + " UPLOAD_DIR - Adresář, kde jsou nahrané archivy uložené\n" + " FILENAME - Název souboru nahraného archivu\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Ne adresář: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Přeskočení: '{0}' (začíná lomítkem)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Přeskočení: '{0}' (začíná tečkou)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Přeskočení: '{0}' (obsahuje..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Přeskočení: '{0}' (obsahuje mezeru)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Přeskočení: '{0}' (obsahuje tabulátor)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "Nelze změnit adresáž na '{0}'" ++msgstr "Nelze změnit adresář na '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Neznámý typ souboru '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Nelze vytvořit pracovní adresář '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Nelze přesunout '{0}' do '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Nelze zkopírovat '{0}' do '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Chyba ověření na '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Rozbalení '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Nelze vytvořit adresář '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Nelze rozbalit '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' byl úspěšně zpracován" + +@@ -645,21 +682,29 @@ msgstr "Nelze provést chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Odstraňování adresáře problému selhalo: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nemohu získat data problému z abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nemohu získat seznam problémů z abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nemohu získat data problému z abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Nelze otestovat zda-li element existuje nad abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -704,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Rozbor zásobníku volání v %s se nezdařil" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Vlákno poruchy nenalezeno" + +@@ -809,7 +854,7 @@ msgstr "Nelze vytáhnout zprávu oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Text oops úspěšně vyňat." + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -817,6 +862,38 @@ msgstr "" + "Protokol jádra indikuje, že byly detekovány chyby hardwaru.\n" + "Toto není s největší pravděpodobností softwarový problém.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -902,6 +979,28 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Použití: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instaluje debuginfo pro všechny ID buildů v BUILD_IDS_FILE\n" ++"do CACHEDIR pomocí TMPDIR jako dočasného vyčkávacího prostoru.\n" ++"Staré soubory v CACHEDIR jsou smazány, dokud nejsou menší než SIZE.\n" ++"\n" ++"Načítá konfiguraci z /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Být upovídaný\n" ++" -y Neinterkativní, předpokládá 'Ano' pro všechny otázky\n" ++" --ids Výchozí: build_ids\n" ++" --tmpdir Výchozí: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Výchozí: /var/cache/abrt-di\n" ++" --size_mb Výchozí: 4096\n" ++" --pkgmgr Výchozí: Správce balíčků z CCpp.conf nebo 'dnf'\n" ++" -e,--exact Stáhnout pouze uvedený soubor\n" ++" --repo Vzor, který použít pro hledání repozitářů.\n" ++" Výchozí: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -921,6 +1020,7 @@ msgstr "{0} souborů debuginfo není nainstalováno" + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" ++"Neplatná konfigurace doplňku CCpp, nepodporovaný správce balíčku: '%s'" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -934,7 +1034,36 @@ msgstr "Chybějící soubory ladících údajů: {0}" + msgid "All debuginfo files are available" + msgstr "Všechny soubory debuginfo jsou dostupné" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -944,7 +1073,7 @@ msgstr "" + "Pokud bude vaše odpověď 'Ne', zásobník volání se vygeneruje lokálně. (to " + "může mít za následek stažení velkého množství dat)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1177,7 +1306,8 @@ msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Stejné jako -d DumpLocation, DumpLocation je specifikováno v abrt.conf" +@@ -1188,16 +1318,18 @@ msgstr "Uložit vyňaté informace v PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Učiň adresář problému přístupný pro čtení všem" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Omezit vytváření adresářů s problémy na 1 za sekundu" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" + +@@ -1206,27 +1338,32 @@ msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" + msgid "Failed to compile regex" + msgstr "Selhalo zkompilování regexu" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Nelze aktualizovat problém: nalezen více než jeden oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "Nepodařilo se získat všechny požadované informace ze žurnálu" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "Neukládat opakující se pád po %ds (limit je %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" +-msgstr "" ++msgstr "Nepodařilo se uložit data detekovaného problému v abrt databazi" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Selhalo inicializování systemd-journal watch" + +@@ -1243,60 +1380,78 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extrahuje záznamy jádra ze systemd-journalu\n" ++"\n" ++"volby -c and -e jsou v konfliktu, protože obě určují první přečtenou zprávu.\n" ++"\n" ++"-e je užitečné pouze pro -f, protože po startu journalu následuje čtení\n" ++"celého journalu, pokud není k dispozici poslední pozice.\n" ++"\n" ++"Poslední zhlédnutá pozice je uložená v " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený záznam jádra" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Začít číst systemd-journal z pozice CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Začít číst systemd-journal od konce" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "Omezit vytváření adresářů s problémy na 1 za INT sekund" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Stejné jako -t INT, INT je specifikováno v plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "Sleduj system-journal z poslední zhlédnuté pozice (pokud je dostupná)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Musíte zadat buď -c CURSOR nebo -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Nelze otevřít systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" +-msgstr "" ++msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o záznamu jádra" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Nelze skočit na konec journalu" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Selhalo nastavení kurzoru systemd-journal '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Nelze číst data journalu." + +@@ -1325,28 +1480,77 @@ msgstr "" + "Poslední zhlédnutá pozice je uložená v " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Čte soubory žurnálu ze všech systémů" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Čte všechny soubory žurnálu z adresáře v PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Nelze iniciovat systemd-journal v adresáři '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o kernelu" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Selhalo nastartování sledování z kurzoru '%s'" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1356,41 +1560,45 @@ msgstr "" + "\n" + "Extrahuje pád Xorg ze souboru FILE (nebo standardního vstupu)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Vypiš nalezená data o havárii na standardní výstup" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Vytvoř adresář problému v DIR pro každý nalezený pád" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Nelze uložit pozici journal watch" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Nelze uložit pozici journal watch: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "Neobnovuje se pozice journal watch: soubor '%s' neexistuje" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Nelze obnovit soubor pozice journal watch '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "Nelze obnovit pozici journal watch: cesta '%s' není běžný soubor" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1398,18 +1606,18 @@ msgstr "" + "Nelze obnovit pozici journal watch: soubor '%s' překračuje limit velikosti " + "%dB" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Nelze obnovit pozici journal watch: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "Nelze obnovit pozici journal watch: nelze přečíst celý soubor '%s'" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Selhalo přesunutí journalu do kurzoru ze souboru '%s'" +@@ -1779,9 +1987,9 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"K povolení nezabezpečeného spojení použijte pole Nezabezpečený" ++"Zapiště \"nezabezpečený\" k povolení nezabezpečeného připojení <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(varování)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1876,11 +2084,11 @@ msgstr "Selhalo povolení handshake pro SSL soket." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "Selhalo povolení SSL3." + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "Selhalo povolení TLS." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +@@ -1943,7 +2151,7 @@ msgstr "Selhalo ukončení NSS." + msgid "Sleeping for %d seconds" + msgstr "Spánek po %d sekund" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1951,7 +2159,7 @@ msgstr "" + "Problém v kernelu se vyskytl kvůli rozbitému BIOSu. Takového problémy nejsou " + "bohužel vývojáři kernelu opravitelné." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1959,7 +2167,7 @@ msgstr "" + "Vyskytl se problém v kernelu, ale váš hardware není podporovaný, proto " + "vývojáři kernelu nejsou schopní tento problém opravit." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1968,24 +2176,24 @@ msgstr "" + "Vyskytl se problém s jádrem, ale vaše jádro bylo modifikováno (parametry:%s)." + " Správci jádra nejsou schopni diagnostikovat modifikované reporty." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Závadné moduly: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Seznam ID chyb" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Urči url bodhi serveru" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Urči vydání" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1995,20 +2203,20 @@ msgstr "" + "\n" + "Hledej aktualizace na serveru bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Vyhledávání aktualizací" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Pro tento balíček nenalezeny žádné aktualizace" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokální verze balíčku je novější než verze dostupná v aktualizacích" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2035,65 +2243,66 @@ msgstr "Vypsat nalezené oopsy" + msgid "Delete files with found oopses" + msgstr "Smazat soubory s nalezenými oopsy" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' nalezl více než jeden adresář s problémy" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Použití: abrt-cli [--version] PŘÍKAZ [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Vypsat seznam problémů [v adresářích]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Odstraň adresář problému DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzuj a reportuj data problému v DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Tisk informací o DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Vypsat počet nedávných pádů" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Zpracovat více problémů" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Více informací získáte příkazem „abrt-cli PŘÍKAZ --help“" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [volby]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Vypsat seznam pouze nenahlášených problémů" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Zbrazit detailní zprávu" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Vypsat seznam problémů novějších než zadaná časová značka" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Vypsat seznam problémů starších než zadaná časová značka" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2103,51 +2312,61 @@ msgstr "" + "Funkce automatického hlášení je zakázána. Prosím zvažte její povolení pomocí\n" + "spuštění 'abrt-auto-reporting enabled' s právy roota\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [volby] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Text delší než toto bude zestručněný" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Žádný adresář s problémy '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& stav" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Vypsat pouze počet problémů beze zpráv" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Vypsat pouze problémy novější než zadaná časová značka" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT detekoval %u problém(ů). Chcete-li více informací, spusťte: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Odstranit PROBLEM_DIR po nahlášení" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Mazání '%s'" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [options] DIR..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Odstranit PROBLEM_DIR po nahlášení" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Akce: remove(rm), info(i), skip(s):" +@@ -2156,25 +2375,180 @@ msgstr "Akce: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Akce: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Hlášení '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Na další problémy přejdete tisknutím ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Bez argumentu --since provedete operaci nad všemi detekovanými problémy." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Vybere pouze problémy detekované po časové značce" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/da.po b/po/da.po +index 5056f43..4d62355 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/da/)\n" + "Language: da\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,102 +29,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke tage ejerskab over \"%s\"" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapportér" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -135,6 +135,17 @@ msgstr "" + "Panelprogram som giver brugeren besked, når nye problemet er fundet af " + "ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -156,7 +167,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -189,30 +202,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -238,14 +263,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -257,11 +282,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemmappe" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -275,24 +300,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [tilvalg]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Skriv til syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Føj programnavne til log" + +@@ -300,60 +326,50 @@ msgstr "Føj programnavne til log" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -361,12 +377,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,18 +403,22 @@ msgstr "Dæmonisér ikke" + msgid "Log to syslog even with -d" + msgstr "Skriv til syslog, selv med -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -428,73 +448,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -506,68 +527,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -591,18 +612,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -643,7 +672,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Fortolkning af backtrace mislykkedes for %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -735,12 +764,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -849,14 +910,43 @@ msgstr "Manglende debuginfo-fil: {0}" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1071,7 +1161,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Samme som -d DumpLocation, DumpLocation er angivet i abrt.conf" + +@@ -1081,16 +1172,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1099,8 +1192,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1120,6 +1217,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1143,11 +1241,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1161,16 +1261,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1178,18 +1281,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1208,14 +1314,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1224,70 +1333,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1807,63 +1966,63 @@ msgstr "Kunne ikke nedlukke NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Liste over fejl-id'er" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Angiv en url til bodhi-server" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Angiv en udgivelse" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Søger efter opdateringer" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ingen opdateringer fundet for denne pakke" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokal version af pakken er nyere end tilgængelige opdateringer" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1885,65 +2044,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se \"abrt-cli COMMAND --help\" for mere information" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Vis detaljeret rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1951,49 +2111,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2002,24 +2172,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/de.po b/po/de.po +index 527eb21..73a2018 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -20,17 +20,17 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-20 08:24-0400\n" ++"PO-Revision-Date: 2015-08-19 02:33-0400\n" + "Last-Translator: Roman Spirgi \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" + "language/de/)\n" + "Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -40,34 +40,34 @@ msgstr "Problemberichterstattung" + msgid "View and report application crashes" + msgstr "Anwendungsabstürze anzeigen und berichten" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Eigentumsrechte von »%s« können nicht geändert werden." + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Benachrichtigung kann nicht geschlossen werden: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Hoppla!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Melden" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Neustart" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -76,7 +76,7 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wurde " + "automatisch gemeldet." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -85,8 +85,8 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wird gemeldet, " + "sobald die Internetverbindung verfügbar ist." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -95,7 +95,7 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Bitte kontaktieren Sie den " + "Entwickler, wenn Sie diesen Fehler melden wollen." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -104,7 +104,7 @@ msgstr "" + "Entschuldigung, %s scheint abgestürzt zu sein. Bitte melden Sie dies, wenn " + "Sie mithelfen möchten, dieses Problem zu beheben." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -112,7 +112,7 @@ msgstr "" + "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " + "Dieses Problem wurde automatisch gemeldet." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -120,7 +120,7 @@ msgstr "" + "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " + "Dieses Problem wird gemeldet, sobald die Internetverbindung verfügbar ist." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -128,28 +128,28 @@ msgstr "" + "Entschuldigung, es scheint ein Fehler aufgetreten zu sein. Bitte melden Sie " + "dies, wenn Sie mithelfen möchten, das Problem zu beheben." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Benachrichtigung kann nicht angezeigt werden: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Von gio channel kann nicht gelesen werden: »%s«" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Verschlüsselung kann auf gio channel nicht gesetzt werden: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nichtblockier-Modus kann für gio channel nicht gesetzt werden: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -160,6 +160,17 @@ msgstr "" + "Applet zur Benachrichtigung des Benutzers, wenn neue Abstürze durch ABRT " + "entdeckt werden\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -177,19 +188,15 @@ msgstr "Verkürzte Berichterstattung" + msgid "Silent shortened reporting" + msgstr "Verkürzte Berichterstattung (silent)" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Die Coredump-Datei ist notwendig zur Generierung eines Stack Trace – eine " +-"Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT bietet " +-"einen Service, der den Stack Trace aus dem Coredump erstellt, allerdings " +-"müssen Sie den Coredump für diesen Service hochladen. Ist diese Option " +-"deaktiviert, lädt ABRT den Coredump ohne Nachfrage hoch." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -242,10 +249,6 @@ msgstr "" + "aktiviert ist." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Vor dem Hochladen des Coredumps nachfragen" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -254,16 +257,16 @@ msgstr "" + "eingeschränktem Zugriff, falls die Daten allenfalls persönliche Daten " + "enthalten." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Privates Ticket für sensible Informationen anfordern" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Unvollständige Probleme melden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -273,6 +276,22 @@ msgstr "" + "gegebenenfalls unvollständige Fehler erkannt werden. Um nur nützliche " + "Fehlerberichte einzureichen, lässt ABRT das Melden dieser Fehler nicht zu." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Schließen" +@@ -298,7 +317,7 @@ msgstr "Über" + msgid "Quit" + msgstr "Beenden" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -308,7 +327,7 @@ msgstr "" + "\n" + "Paket-Datenbank durchsuchen und Paket- und Komponentennamen sichern" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -320,11 +339,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Fehler-Verzeichnis" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurationsdatei" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Dieses Verzeichnis als RPM-Root verwenden" + +@@ -340,24 +359,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "Root-Verzeichnis, um Container-Befehle auszuführen" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM als Client-UID benutzen" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "In Systemprotokoll speichern" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Anwendungsnamen protokollieren" + +@@ -365,62 +385,52 @@ msgstr "Anwendungsnamen protokollieren" + msgid "Unknown error" + msgstr "Unbekannter Fehler" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "»%s« ist kein gültiges Problem-Verzeichnis" ++msgid "'%s' is not a valid element name" ++msgstr "»%s« ist kein gültiger Name für das Element" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Element »%s« kann nicht geändert werden" ++msgid "'%s' is not a valid problem directory" ++msgstr "»%s« ist kein gültiges Problem-Verzeichnis" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nicht erlaubt" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Der Fehlerbericht kann nicht für die Bearbeitung geöffnet werden" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Element »%s« kann nicht geändert werden" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die " + "System-Logdateien überprüfen." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Fehlerbericht kann nicht mit Lesezugriff geöffnet werden" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "»%s« ist kein gültiger Name für das Element" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Größe von '%s' kann nicht bestimmt werden" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Kein weiterer Speicherplatz für die Fehlerbeschreibung vorhanden" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -430,12 +440,12 @@ msgstr "" + "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein " + "anderer Dienst unter dem gleichen Namen läuft.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Nach NUM Sekunden Inaktivität beenden" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." + +@@ -462,18 +472,22 @@ msgstr "Nicht als Hintergrunddienst ausführen" + msgid "Log to syslog even with -d" + msgstr "Auch mit -d im Systemprotokoll speichern" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT auf DIR ausführen" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Direkt mit dem Benutzer kommunizieren" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -513,89 +527,90 @@ msgstr "Anzahl der gleichzeitig laufenden Dienste. Standard ist " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale Cache-Größe in MB. Standard ist " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Deaktiviert die Authentifizierung" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support Benutzername" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support Passwort; falls nicht angegeben, wird zur Eingabe eines " + "Passworts aufgefordert" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL-Zertifikatspfad oder -Zertifikatstyp" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Sie müssen ebenfalls --username für --password angeben" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Sie können entweder --username oder --certificate verwenden" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Sie können entweder --username oder --anonymous verwenden" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Sie können entweder --anonymous oder --certificate verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Ungültige Parameteranzahl" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Unbekannter Optionswert: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Passwort:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Fortfahren ohne Passwort nicht möglich\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Per HTTP authentifizierte automatische Berichterstattung" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Per SSL-Client authentifizierte automatische Berichterstattung" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Anonyme automatische Berichterstattung" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -617,83 +632,83 @@ msgstr "" + " DATEINAME - Name der Archivdatei\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Kein Verzeichnis: »{0}«" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Überspringen: »{0}« (beginnt mit einem Schrägstrich)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Überspringen: »{0}« (beginnt mit einem Punkt)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Überspringen: »{0}« (enthält ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Überspringen: »{0}« (enthält Leerzeichen)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Überspringen: »{0}« (enthält Tabulatoren)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Verzeichnis kann nicht auf »{0}« geändert werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Unbekannter Dateityp: »{0}«" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Arbeitsverzeichnis kann nicht in »{0}« erstellt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "»{0}« kann nicht nach »{1}« verlegt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "»{0}« kann nicht nach »{1}« kopiert werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Fehler bei Prüfung von »{0}«" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "»{0}« wird entpackt" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Verzeichnis »{0}« kann nicht erstellt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "»{0}« kann nicht entpackt werden" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "»{0}« erfolgreich verarbeitet" + +@@ -717,21 +732,30 @@ msgstr "Chown nicht möglich: »%s«: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Problematisches Verzeichnis konnte nicht gelöscht werden: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Fehler-Liste kann von abrt-dbus nicht abgerufen werden: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" ++"Über abrt-dbus kann nicht überprüft werden, ob das Element existiert: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -777,7 +801,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Verarbeitung der Ablaufverfolgung für %s ist fehlgeschlagen" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Absturz Thread nicht gefunden" + +@@ -888,7 +912,7 @@ msgstr "Oops-Meldung kann nicht ausgelesen werden: »{0}«" + msgid "Oops text extracted successfully" + msgstr "Oops-Text erfolgreich ausgelesen" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -896,6 +920,38 @@ msgstr "" + "Das Kernel-Protokoll weist darauf hin, dass Hardware-Fehler entdeckt wurden.\n" + "Höchstwahrscheinlich handelt es sich dabei nicht um ein Software-Problem.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -982,6 +1038,28 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" ++"to CACHEDIR, using TMPDIR as temporary staging area.\n" ++"Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" ++"\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Be verbose\n" ++" -y Noninteractive, assume 'Yes' to all questions\n" ++" --ids Default: build_ids\n" ++" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Default: /var/cache/abrt-di\n" ++" --size_mb Default: 4096\n" ++" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" ++" -e,--exact Download only specified files\n" ++" --repo Pattern to use when searching for repos.\n" ++" Default: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -1015,7 +1093,36 @@ msgstr "Fehlende Debuginfo-Datei: {0}" + msgid "All debuginfo files are available" + msgstr "Alle Debuginfo-Dateien sind vorhanden" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1026,7 +1133,7 @@ msgstr "" + "wird eine lokale Stapelüberwachung erstellt - und damit unter Umständen ein " + "große Datenmenge heruntergeladen." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1270,7 +1377,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Entspricht -d DumpLocation, DumpLocation ist in abrt.conf spezifiziert" +@@ -1281,16 +1389,18 @@ msgstr "Speichern Sie die extrahierten Informationen in PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Fehler-Verzeichnis allgemein lesbar machen" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Erstellung eines Fehlerverzeichnisses auf 1 pro Sekunde beschränken" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + +@@ -1300,9 +1410,13 @@ msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + msgid "Failed to compile regex" + msgstr "Kompilieren von regex fehlgeschlagen" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Fehler kann nicht aktualisiert werden: mehrere Oops gefunden" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1321,6 +1435,7 @@ msgstr "Fehlerdaten konnten nicht in ABRT-Datenbank gespeichert werden" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Systemd-Journal watch konnte nicht initialisiert werden" + +@@ -1344,11 +1459,13 @@ msgstr "Für jeden Coredump ein neues Fehlerverzeichnis erstellen" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Systemd-Journal ab Cursor-Position lesen" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Systemd-Journal ab Ende lesen" + +@@ -1362,17 +1479,20 @@ msgstr "Gleich wie -t INT, INT ist definiert in plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Systemd-Journal ab der letzten gesehenen Position folgen (sofern verfügbar)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Entweder -c CURSOR oder -e muss angegeben werden" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Systemd-Journal kann nicht geöffnet werden" + +@@ -1381,18 +1501,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + "Systemd-Journal kann nicht nur auf systemd-coredump-Daten gefiltert werden" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Das Ende des Journals konnte nicht erreicht werden" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Cursor '%s' des Systemd-Journals kann nicht festgelegt werden" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Journal-Daten können nicht gelesen werden" + +@@ -1411,28 +1534,77 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Journal-Dateien aller Geräte auslesen" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Alle Journal-Daten aus PFAD-Verzeichnis auslesen" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Systemd-Journal kann im Verzeichnis »%s« nicht initialisiert werden" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Systemd-Journal kann nicht nur auf Kernel-Dateien gefiltert werden" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Beginn der Ansicht ab Cursor '%s' fehlgeschlagen" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1442,46 +1614,50 @@ msgstr "" + "\n" + "Xorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Gefundene Daten zum Absturz auf Standard-Eingabe ausgeben" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Ansichtsposition des Journals kann nicht gespeichert werden" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Position des Journals kann nicht gespeichert werden: offen('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« ist " + "nicht vorhanden" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "Journal-Ansichtsposition kann nicht aus Datei »%s« wiederhergestellt werden" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Pfad »%s« ist " + "keine reguläre Datei" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1489,14 +1665,14 @@ msgstr "" + "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« " + "überschreitet %dB Größenbeschränkung" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + "Ansichtsposition des Journals kann nicht wiederhergestellt werden: " + "offen('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1504,7 +1680,7 @@ msgstr "" + "kann nicht vollständig gelesen werden" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Journal konnte nicht aus Datei »%s« zu einem Cursor verschoben werden" +@@ -2044,7 +2220,7 @@ msgstr "NSS konnte nicht heruntergefahren werden." + msgid "Sleeping for %d seconds" + msgstr "%d Sekunden warten" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2052,7 +2228,7 @@ msgstr "" + "Ein Kernel-Problem ist aufgetreten aufgrund eines beschädigten BIOS. Leider " + "können derartige Probleme nicht von Kernel-Maintainern behoben werden." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2060,7 +2236,7 @@ msgstr "" + "Ein Kernel-Problem ist aufgetreten, aber Ihre Hardware wird nicht " + "unterstützt, weshalb Kernel-Maintainer dieses Problem nicht beheben können." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2069,24 +2245,24 @@ msgstr "" + "Es ist ein Kernel-Problem aufgetreten, aber Ihr Kernel ist defekt (flags:%s)." + " Kernel-Maintainer können keine Berichte beschädigter Kernel analysieren." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Betroffene Module: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Liste der Bug-ID-Nummern" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Geben Sie eine Bodhi-Server-URL an" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Geben Sie eine Version an" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2096,20 +2272,20 @@ msgstr "" + "\n" + "Nach Aktualisierungen auf dem Bodhi-Server suchen" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Nach Aktualisierungen suchen" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Keine Aktualisierungen zu diesem Paket gefunden" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Die lokale Version ist aktueller als die verfügbaren Aktualisierungen" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2138,69 +2314,70 @@ msgstr "Gefundene Oopses ausgeben" + msgid "Delete files with found oopses" + msgstr "Löschen Dateien mit gefundenen Oopses" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "»%s« findet mehr als ein Fehlerverzeichnis" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Aufruf: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Fehler anzeigen [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Fehler-Verzeichnis DIR entfernen" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Fehlerdaten in DIR analysieren und berichten" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Informationen zu DIR auflisten" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Anzahl der jüngsten Abstürze ausgeben" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Mehrere Fehler verarbeiten" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& Liste [Optionen]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Nur noch nicht berichtete Probleme anzeigen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Detaillierten Bericht anzeigen" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Nur die Probleme anzeigen, welcher vor dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2211,57 +2388,67 @@ msgstr "" + "Betracht, sie\n" + "zu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [Optionen] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Längere Texte werden gekürzt angezeigt" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Kein solches Fehlerverzeichnis »%s« vorhanden" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& Status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Nur die Fehleranzahl ohne Mitteilung ausgeben" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel " + "ausgeben" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli " + "list%s)\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "»%s« wird gelöscht" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& berichten [Optionen] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "PROBLEM_DIR nach Berichterstattung löschen" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "»%s« wird gelöscht" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" +@@ -2272,27 +2459,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Aktionen: entfernen(rm), berichten(e), info(i), überspringen(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "»%s« wird gemeldet" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Drücken Sie die EINGABETASTE für den nächsten Fehler" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Ohne --since Parameter werden alle erkannten Fehler durchgegangen." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/el.po b/po/el.po +index dc3f503..4430929 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "language/el/)\n" + "Language: el\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,108 +31,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Αναφορά" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -154,7 +165,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -187,30 +200,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -236,14 +261,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -255,11 +280,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Αρχείο παραμετροποίησης" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -273,24 +298,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Καταγραφή στο syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Προσθήκη του ονόματος του προγράμματος στο αρχείο καταγραφής" + +@@ -298,60 +324,50 @@ msgstr "Προσθήκη του ονόματος του προγράμματος + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -359,12 +375,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -385,18 +401,22 @@ msgstr "Μην το κάνεις Daemon" + msgid "Log to syslog even with -d" + msgstr "Καταγραφή στο syslog χρησιμοποιώντας την παράμετρο -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -426,73 +446,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -504,68 +525,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -589,18 +610,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -641,7 +670,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -730,12 +759,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -844,14 +905,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1066,7 +1156,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1076,16 +1167,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1094,8 +1187,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1115,6 +1212,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1138,11 +1236,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1156,16 +1256,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1173,18 +1276,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1203,14 +1309,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1219,70 +1328,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1794,63 +1953,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1872,65 +2031,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1938,49 +2098,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1989,24 +2159,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/en_GB.po b/po/en_GB.po +index adab5f7..abac5db 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "fedora-abrt/language/en_GB/)\n" + "Language: en-GB\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,102 +32,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Can't take ownership of '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Can't open directory for writing '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Can't close notification: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Report" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Can't show notification: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Can't read from gio channel: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Can't set encoding on gio channel: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Can't turn on nonblocking mode for gio channel: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +137,17 @@ msgstr "" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -158,7 +169,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -191,30 +204,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -240,14 +265,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -259,11 +284,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problem directory" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Configuration file" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -277,24 +302,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Use NUM as client uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Log to syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Add program names to log" + +@@ -302,60 +328,50 @@ msgstr "Add program names to log" + msgid "Unknown error" + msgstr "Unknown error" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' is not a valid element name" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' is not a valid problem directory" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Not Authorised" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Can't access the problem for modification" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' is not a valid element name" ++msgid "'%s' element can't be modified" ++msgstr "'%s' element can't be modified" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Can't get size of '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "No problem space left" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Can't delete the element '%s' from the problem directory '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -365,12 +381,12 @@ msgstr "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Exit after NUM seconds of inactivity" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "This program must be run as root." + +@@ -391,18 +407,22 @@ msgstr "Do not daemonise" + msgid "Log to syslog even with -d" + msgstr "Log to syslog even with -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Run EVENT on DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Communicate directly to the user" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -432,73 +452,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -510,68 +531,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -595,18 +616,26 @@ msgstr "Can't chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Deleting problem directory failed: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Can't get problem list from abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Can't get problem data from abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -651,7 +680,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Backtrace parsing failed for %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -746,12 +775,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -864,7 +925,36 @@ msgstr "Missing debuginfo file: {0}" + msgid "All debuginfo files are available" + msgstr "All debuginfo files are available" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -874,7 +964,7 @@ msgstr "" + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1097,7 +1187,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + +@@ -1107,16 +1198,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Make the problem directory world readable" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Print search string(s) to stdout and exit" + +@@ -1125,8 +1218,12 @@ msgstr "Print search string(s) to stdout and exit" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1146,6 +1243,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1169,11 +1267,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1187,16 +1287,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1204,18 +1307,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1234,14 +1340,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1250,12 +1359,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1265,58 +1420,62 @@ msgstr "" + "\n" + "Extract Xorg crash from FILE (or standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Print found crash data on standard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1839,19 +1998,19 @@ msgstr "Failed to shutdown NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1860,24 +2019,24 @@ msgstr "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Tainted modules: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "List of bug ids" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Specify a bodhi server url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Specify a release" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1887,20 +2046,20 @@ msgstr "" + "\n" + "Search for updates on bodhi server" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Searching for updates" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "No updates for this package found" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Local version of the package is newer than available updates" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1924,65 +2083,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remove problem directory DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyse and report problem data in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Print information about DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "See 'abrt-cli COMMAND --help' for more information" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Show detailed report" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1990,49 +2150,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2041,24 +2211,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/es.po b/po/es.po +index 44f8932..d91744e 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -31,54 +31,54 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-04-06 12:18-0400\n" +-"Last-Translator: Alex Puchades \n" ++"PO-Revision-Date: 2015-09-30 06:57-0400\n" ++"Last-Translator: Gladys Guerrero Lozano \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/es/)\n" + "Language: es\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Informe de errores" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Ver e informar sobre errores de aplicación" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "No se puede tomar la propiedad de «%s»" ++msgstr "No se puede tomar propiedad de «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "No puedo abrir carpeta para escribir '%s'" ++msgstr "No se puede abrir la carpeta '%s' para escritura" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "No se puede cerrar la notificación: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ups!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informar" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Reiniciar" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -87,7 +87,7 @@ msgstr "" + "Lo sentimos, parece que %s ha dejado de funcionar. Se ha informado " + "automáticamente de este problema." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -96,72 +96,72 @@ msgstr "" + "Lo sentimos, parece que %s ha dejado de funcionar. Se informará de este " + "problema cuando el acceso a Internet esté disponible." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" +-"Lo sentimos, parece que %s ha dejado de funcionar. Por favor, póngase en " +-"contacto con el desarrollados si quiere informar de este problema." ++"Lo sentimos, parece que %s ha dejado de funcionar. Póngase en contacto con " ++"el desarrollador si quiere informar de este problema." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + "Lo sentimos, parece que %s ha dejado de funcionar. Si le gustaría ayudarnos " +-"a solucionar este problema, envíe un informe." ++"a solucionar este problema, envíenos un informe." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" +-"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " +-"Se ha informado automáticamente de este problema." ++"Lo sentimos, parece que ha ocurrido un problema con alguno de los " ++"componentes. Se ha informado automáticamente de este problema." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" +-"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " +-"Se informará automáticamente de este problema cuando el acceso a Internet " +-"esté disponible." ++"Lo sentimos, parece que ha ocurrido un problema con alguno de los " ++"componentes. Se informará automáticamente de este problema cuando el acceso " ++"a Internet esté disponible." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" +-"Lo sentimos, parece que ha habido algún problema. Si quiere ayudarnos a " ++"Lo sentimos, parece que ha ocurrido algún problema. Si quiere ayudarnos a " + "solucionar el problema, envíenos un informe." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "No se puede mostrar la notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "No se puede leer desde el canal gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "No se puede fijar la codificación sobre el canal gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "No se puede establecer el modo de no bloqueo para el canal gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -169,12 +169,23 @@ msgid "" + msgstr "" + "& [-v] [DIR]...\n" + "\n" +-"Applet que notifica al usuario cuando ABRT detecta nuevos problemas\n" +-"\n" ++"Miniaplicación que notifica al usuario cuando ABRT detecta nuevos " ++"problemas\n" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "Preguntar antes de robar carpeta" ++msgstr "Preguntar antes de robar directorio" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +@@ -193,13 +204,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"El archivo de volcado de memoria se necesita para generar un trazado de la " +-"pila, una operación que consume bastante tiempo y espacio. ABRT ofrece un " +-"servicio que genera el trazado de la pila pero usted tiene que subir el " +-"volcado a este servicio. Con esta opción deshabilitada, ABRT subirá el " +-"archivo de volcado sin preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -246,10 +254,6 @@ msgstr "" + "informados. Tiene efecto sólo si los informes abreviados están habilitados." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Preguntar antes de subir el archivo de volcado" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -257,15 +261,15 @@ msgstr "" + "Con esta opción habilitada ABRT siempre crea una entrada del error con " + "acceso restringido si se detecta datos posiblemente sensibles." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Pedir registro privado por información sensible" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notificar problemas incompletos" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -275,6 +279,22 @@ msgstr "" + "apagando o el usuario está saliendo. Con el objetivo de suministrar informes " + "útiles, ABRT no le permitirá presentar estos problemas." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Cerrar" +@@ -300,7 +320,7 @@ msgstr "Acerca de" + msgid "Quit" + msgstr "Salir" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -311,7 +331,7 @@ msgstr "" + "Interrogar a la base de datos de paquetes y guardar el nombre de paquete y " + "componente" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -323,11 +343,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Carpeta de problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Archivo de configuración" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Utilizar esta carpeta como raíz RPM" + +@@ -343,24 +363,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "Carpeta raíz para los comandos de contenedor mientras se ejecutan" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilice NUM como uid del cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Registrar en syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Añadir nombre de programa al registro" + +@@ -368,77 +389,67 @@ msgstr "Añadir nombre de programa al registro" + msgid "Unknown error" + msgstr "Error desconocido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' no es una carpeta de problemas válida" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' no es un nombre de elemento válido" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' elemento no puede ser modificado" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' no es una carpeta de problemas válida" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "No autorizado" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "No se puede acceder al problema para modificación" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' elemento no puede ser modificado" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Error cambiando el propietario de la carpeta. Revise los registros del " + "sistema para más detalles." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "No se puede acceder al problema para lectura" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' no es un nombre de elemento válido" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "No se puede obtener el tamaño de «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "No queda espacio para problemas" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "No se puede borrar el elemento '%s' de la carpeta de problemas '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"El nombre '%s' ser perdió, verifique que otro servicio con el mismo nombre " +-"no se esté ejecutando.\n" ++"El nombre '%s' se perdió, verifique que no se esté ejecutando ningún otro " ++"servicio con el mismo nombre.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sale después de NUM segundos de inactividad" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa debe ser ejecutado como root." + +@@ -451,11 +462,11 @@ msgid "" + "sort out this problem, please contact them directly." + msgstr "" + "Los datos del problema están incompletos. Esto suele suceder cuando se " +-"detecta un problema en el momento en que el computador se está apagando o el " +-"usuario está saliendo. Con el fin de proporcionar informes valiosos del " +-"problema, ABRT no le permitirá a usted enviar este problema. Si usted tiene " +-"tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, " +-"por favor contáctelos directamente." ++"detecta un problema en el momento en que el ordenador se está apagando o el " ++"usuario está saliendo. Con el fin de proporcionar informes útiles del " ++"problema, ABRT no le permitirá enviar este informe. Si tiene tiempo y desea " ++"ayudar a los desarrolladores en su esfuerzo por solucionarlo, contáctelos " ++"directamente." + + #: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" +@@ -465,18 +476,22 @@ msgstr "No convertir en un demonio" + msgid "Log to syslog even with -d" + msgstr "Registrar en syslog aún con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Ejecutar EVENTO en DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunicar directamente al usuario" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -515,86 +530,87 @@ msgstr "Número de trabajadores concurrentes. El valor por defecto es" + msgid "Maximal cache size in MiB. Default is " + msgstr "Tamaño máximo de la caché en MB. Por defecto es" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Desactiva la autenticación" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nombre de usuario de Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Contraseña de Red Hat Support, si no la ingresa, se le indicará" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Rutas de certificado uReport SSL o tipo de certificado" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "También necesita especificar --username para --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Puede usar --username o --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Puede usar --username o --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Puede usar --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Número de argumentos no válido" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opción desconocido: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Contraseña:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "No puede continuar sin contraseña\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Autoreporte autenticado HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Autoreporte de cliente autenticadoSSL " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Autoreporte anónimo " + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -614,68 +630,68 @@ msgstr "" + " UPLOAD_DIR - Carpeta donde los archivos subidos son almacenados\n" + " FILENAME - Nombre del archivo a subir.\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "No es una carpeta: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Omitiendo: '{0}' (inicia con barra inclinada)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Omitiendo: '{0}' (inicia con punto)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Omitiendo: '{0}' (contiene ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Omitiendo: '{0}' (contiene espacio)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Omitiendo: '{0}' (contiene tabulacion)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "No se puede cambiar la carpeta a '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo de archivo desconocido: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "No se puede crear una carpeta de trabajo en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "No se puede mover '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "No se puede copiar '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Error de verificacion en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Desempaquetando '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "No se puede crear la carpeta '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "No se puede desempaquetar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' procesado exitosamente" + +@@ -699,21 +715,30 @@ msgstr "No puedo hacer chown'%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Falló el borrado de la carpeta de problema: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "No se pudo obtener la lista de problemas desde abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" ++"No se puede comprobar si el elemento existe por medio de abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -758,7 +783,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Ha fallado el análisis del trazado de %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "No se encontró el hilo que se colgó" + +@@ -866,7 +891,7 @@ msgstr "No puedo extraer el mensaje ups: '{0}'" + msgid "Oops text extracted successfully" + msgstr "EL texto ups se ha extraído correctamente" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -874,6 +899,38 @@ msgstr "" + "El registro del kernel indica que se han detectado errores en el hardware.\n" + "Esto muy probablemente no es un problema de software.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -960,6 +1017,29 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Uso: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instala debuginfos para todos los build-ids listados en BUILD_IDS_FILE\n" ++"a CACHEDIR, usando TMPDIR como área temporal de pruebas.\n" ++"Los archivos antiguos en CACHEDIR son eliminados hasta que su tamaño sea " ++"menor que SIZE.\n" ++"\n" ++"Lee la configuración de /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Explicito\n" ++" -y No interactivo, asume 'Si' a todas las preguntas\n" ++" --ids Prederterminado: build_ids\n" ++" --tmpdir Prederterminado: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Prederterminado: /var/cache/abrt-di\n" ++" --size_mb Prederterminado: 4096\n" ++" --pkgmgr Prederterminado: PackageManager from CCpp.conf or 'dnf'\n" ++" -e,--exact Descarga los archivos especificados unicamente\n" ++" --repo Patrón a usar cuando se buscan repos.\n" ++" Prederterminado: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -979,6 +1059,8 @@ msgstr "{0} de archivos debuginfo no están instalados" + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" ++"Configuración inválida del complemento CCpp, gestor de paquetes no soportado:" ++" '%s'" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -992,23 +1074,53 @@ msgstr "No se encuentra el archivo de información de depuración: {0}" + msgid "All debuginfo files are available" + msgstr "Todos los archivos debuginfo están disponibles" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" +-"¿De acuerdo con volcado del core? (Puede contener datos sensible), Si su " +-"respuesta es 'No', se generará localmente una traza localmente. (Puede " +-"descargar una enorme cantidad de datos)." ++"¿Está de acuerdo con el volcado de memoria? (Puede contener datos sensibles)." ++" Si su respuesta es 'No', se generará una traza localmente. (Puede que sea " ++"necesario descargar una enorme cantidad de datos)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." + msgstr "" +-"¿Desea generar una traza de la pila localmente? (Puede descargar una gran " +-"cantidad de datos pero el reporte no puede continuar sin una traza de pila)." ++"¿Desea generar una traza de la pila localmente? (Puede que sea necesario " ++"descargar una gran cantidad de datos, pero el reporte no puede continuar sin " ++"un trazado de pila)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -1236,7 +1348,8 @@ msgstr "Creado una nueva carpeta de problemas en DIR por cada ups encontrado" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Igual que -d DumpLocation, lugar de volcado se especifica en abrt.conf" +@@ -1247,16 +1360,18 @@ msgstr "Guardar la información extraída en PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Hacer la carpeta de problemas legible por todos" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Acelerar la creación de la carpeta de problemas a 1 por segundo" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" + +@@ -1265,27 +1380,34 @@ msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" + msgid "Failed to compile regex" + msgstr "Fallo al compilar regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "No se pudo actualizar el problema: se encontraron mas de un oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "No se pudo obtener toda la información necesaria de journald" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "No se guarda el fallo recurrente después de %ds (el límite es %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" + msgstr "" ++"No se pudo guardar los datos de detección de problemas en la base de datos " ++"de abrt" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Fallo al inicializar systemd-journal watch" + +@@ -1302,6 +1424,17 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extrae los volcados de memoria de systemd-journal\n" ++"\n" ++"Las opciones -c y -e entran en conflicto debido a que ambas especifican el " ++"primer mensaje leído.\n" ++"\n" ++"-e es útil unicamente para -f porque el siguiente journal inicia leyendo\n" ++"el journal completo si la última posición vista no está disponible.\n" ++"\n" ++"La última posición fue guardada en " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +@@ -1309,11 +1442,13 @@ msgstr "Crear nueva carpeta de problemas en DIR por cada volcado de memoria" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Inicia leyendo systemd-journal desde la posición CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Inicia leyendo systemd-journal desde el final" + +@@ -1324,40 +1459,48 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Lo mismo que -t INT, INT está especificado en plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Sigue systemd-jounal desde la última posición vista(si está disponible)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Necesitas especificar -c CURSOR o -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "No se puede abrir systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" ++"No pueden filtrarse unicamente los datos de systemd-journal a systemd-" ++"coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "No se puede buscar hacia el final del diario" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Fallo al establecer el cursor '%s' en systemd-journal" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "No se puede leer los datos del diario." + +@@ -1387,29 +1530,78 @@ msgstr "" + "La última posición vista está guardada en" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Leer archivos de journal de todos los sistemas" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Leer todos los archivos de journal de la carpeta PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "No se puede inicializar systemd-journal en la carpeta '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + "No se puede filtrar systemd-journal para los datos del kernel únicamente" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Fallo al iniciar watch desde el cursor '%s'" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1419,45 +1611,49 @@ msgstr "" + "\n" + "Extrae el cuelgue de Xorg desde el ARCHIVO (o la entrada estándar)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Prime los datos del cuelgue encontrados en la salida estándar" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Crear una carpeta de problemaa en DIR por cada crash encontrado" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "No se puede guardar la posición observada del diario" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "No se puede guardar la posición observada del diario: abierto('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "No se restaura la posición observada del diario: el archivo '%s' no existe" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "No se puede restaurar la posición observada del diario desde el archivo '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "No se puede restaurar la posición observada del diario: la dirección '%s' no " + "es un archivo normal" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1465,12 +1661,12 @@ msgstr "" + "No se puede restaurar la posición observada del diario: el archivo '%s' " + "excede el límite de tamaño %dB" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "No se puede restaurar la posición observada del diario: abierto('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1478,7 +1674,7 @@ msgstr "" + "archivo completo '%s'" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Fallo al mover el diario a un cursor desde el archivo '%s'" +@@ -1805,10 +2001,10 @@ msgid "" + "and take up disk space. However, unlike RetraceServer, doesn't send coredump " + "to remote machines." + msgstr "" +-"Necesita descargar paquetes de información de depuración, lo que podría " ++"Se necesita descargar paquetes de información de depuración, lo que podría " + "tardar un tiempo considerable y ocupar espacio en disco. Sin embargo, a " + "diferencia de RetraceServer, no se envía el volcado de memoria a ningún " +-"equipo remotos." ++"equipo remoto." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1970,7 +2166,7 @@ msgstr "No se pudo conectar a '%s'." + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "Error al establecer enlace de certificado." ++msgstr "Error al establecer hook de certificado." + + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +@@ -2020,15 +2216,16 @@ msgstr "Error al apagar NSS." + msgid "Sleeping for %d seconds" + msgstr "Durmiendo por %d segundos" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" +-"Ha ocurrido un problema de kernel debido a un BIOS dañado. Infortunadamente, " +-"los mantenedores de kernel no pueden corregir dichos problemas." ++"Ha ocurrido un problema de kernel debido a una BIOS defectuosa. " ++"Desafortunadamente, los mantenedores de kernel no pueden corregir dichos " ++"problemas." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2036,7 +2233,7 @@ msgstr "" + "Ha ocurrido un problema de kernel, pero su hardware no tiene soporte, por lo " + "tanto los mantenedores de kernel no pueden corregir este problema." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2046,24 +2243,24 @@ msgstr "" + "%s). Los mantenedores del núcleo no pueden diagnosticar informes de núcleos " + "dañados." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Módulos manchados: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de ids de errores" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especifique la url del servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especifique el lanzamiento" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2073,22 +2270,22 @@ msgstr "" + "\n" + "Buscar actualizaciones en el servidor bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Buscando actualizaciones" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "No se encontraron actualizaciones para este paquete" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La versión local del paquete es mas nueva que la disponible en las " + "actualizaciones" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2116,124 +2313,135 @@ msgstr "Imprimir los oopses encontrados" + msgid "Delete files with found oopses" + msgstr "Borrar los archivos con oopses encontrados" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identificado más de una carpeta de problema" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Uso: abrt-cli [--version] COMANDO [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listar problemas [en DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Retirar carpeta de problemas DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizar y reportar datos de problemas en DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimir información sobre DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Imprima el conteo de las fallas recientes" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Procesando múltiples problemas" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opciones]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Listar únicamente problemas no reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Muestre el reporte detallado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Listar sólo los problemas más recientes que la marca de tiempo especificada" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Listar sólo los problemas más viejos que la marca de tiempo especificada" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " + "issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" +-"The Autoreporting feature is disabled. Please consider enabling it by " +-"issuing\n" +-"'abrt-auto-reporting enabled' as a user with root privileges\n" ++"El reporte automático de errores está desactivado. Puede activarlo " ++"ejecutando\n" ++"'abrt-auto-reporting enabled' como usuario con privilegios de root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Los textos de mayor longitud que éste se mostrarán abreviados" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "No se encontró la carpeta de problema '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Imprimir únicamente el conteo del problema sin ningún mensaje" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Imprimir únicamente los problemas más recientes que la marca de tiempo " + "especificada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT a detectado %u problema(s). Para más información ejecute: abrt-cli list " + "%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [opciones] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Elimina PROBLEM_DIR después de reportarlo" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Borrando '%s'" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [opciones] DIR..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Elimina PROBLEM_DIR después de reportarlo" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Acciones: eliminar(rm), información(i), omitir(s):" +@@ -2242,26 +2450,181 @@ msgstr "Acciones: eliminar(rm), información(i), omitir(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acciones: eliminar(rm), reporte(e), información(i), omitir(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Para el siguiente problema presione la tecla ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Without -- puesto que el argumento se repite sobre todos los problemas " + "detectados." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Selecciona únicamente los problemas después del tiempo especificado" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/et.po b/po/et.po +index 97e99c2..b45ae6c 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/et/)\n" + "Language: et\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,102 +29,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' omandamine nurjus" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Teavita" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -134,6 +134,17 @@ msgstr "" + "\n" + "Aplett, mis teavitab kasutajat, kui ABRT on tuvastanud uusi probleeme\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -155,7 +166,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -188,30 +201,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -237,14 +262,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -256,11 +281,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Probleemide kataloog" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Seadistuste fail" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -274,24 +299,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [valikud]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Logi syslog-i" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Lisa programminimed logisse" + +@@ -299,60 +325,50 @@ msgstr "Lisa programminimed logisse" + msgid "Unknown error" + msgstr "Tundmatu viga" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ei ole korrektne probleemi kataloog" ++msgid "'%s' is not a valid element name" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ei ole korrektne probleemi kataloog" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Pole autenditud" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -360,12 +376,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Välju peale NUM sekundit tegevusetust" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Seda rakendust peab käivitama administraatori õigustes." + +@@ -386,18 +402,22 @@ msgstr "Deemoniks ei minda" + msgid "Log to syslog even with -d" + msgstr "Logi syslog-i isegi koos -d'ga" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Käivita SÜNDMUS KATALOOGIS" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -427,73 +447,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -505,68 +526,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -590,18 +611,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "Probleemi kataloogi kustutamine nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Probleemi nimekirja pärimine üle abrt-dbus'i nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -647,7 +676,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-i tagasijälituse parsimine nurjus" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -742,12 +771,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -861,14 +922,43 @@ msgstr "Puuduv silumisinfo fail: {0}" + msgid "All debuginfo files are available" + msgstr "Kõik silumisinfo failid on saadaval" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1089,7 +1179,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Sama kui -d DumpLocation, DumpLocation määratakse abrt.conf failis" + +@@ -1099,16 +1190,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Tee probleemide kataloog kõikidele loetavaks" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Trüki otsingustringid stdout-i ja välju" + +@@ -1117,8 +1210,12 @@ msgstr "Trüki otsingustringid stdout-i ja välju" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1138,6 +1235,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1161,11 +1259,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1179,16 +1279,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1196,18 +1299,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1226,14 +1332,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1242,70 +1351,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Trüki leitud krahhi andmed standardsesse väljundisse" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1828,19 +1987,19 @@ msgstr "NSS-i sulgemine nurjus." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1849,44 +2008,44 @@ msgstr "" + "Tekkis tuuma probleem, aga sinu masina tuum on ebapuhas (lipud:%s).\n" + "Tuuma haldajad ei suuda diagnoosida ebapuhtaid raporteid." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Vigade id-e nimekiri" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Määra bodhi serveri url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Määra väljalase" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Uuenduste otsimine" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Sellele pakile uuendusi ei leitud" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Selle paki kohalik versioon on uuem kui saadavaloleval värskendusel" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1908,65 +2067,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Kasutamine: abrt-cli [--versioon] KÄSK [KATALOOG]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Eemalda probleemide kataloog KATALOOG" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analüüsi ja teavita probleemide andmed KATALOOGis" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Kuva infot KATALOOGi kohta" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Kuva detailne raport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1974,49 +2134,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [valikud] KATALOOG..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2025,24 +2195,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/eu.po b/po/eu.po +index 1e1ce98..36c79c9 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/eu/)\n" + "Language: eu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurazio fitxategia" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [aukerak]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "Errore ezezaguna" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programa hau root bezala exekutatu behar da." + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "Ezin da chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1777,64 +1936,64 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Eguneraketen bila" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ez da eguneraketarik aurkitu pakete honentzat" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "Paketearen bertsio lokala eskuragarri dauden eguneraketak baino berriagoa da" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Erabilera: abrt-cli [--version] KOMANDOA [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fa.po b/po/fa.po +index 84377cd..820fec0 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/fa/)\n" + "Language: fa\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "گزارش" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -153,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -186,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -235,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -254,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -272,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "در syslog سیاهه شد" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -297,60 +323,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "دیمون سازی نکن" + msgid "Log to syslog even with -d" + msgstr "هم‌چنین در syslog با -d سیاهه شد" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "واکاوی دنباله برای %s شکست خورد" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1778,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fi.po b/po/fi.po +index ff44364..b34f717 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -8,126 +8,134 @@ + # Ville-Pekka Vainio , 2011 + # Ville-Pekka Vainio , 2011-2013 + # Ville Skyttä , 2011 ++# Juhani Numminen , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2016-01-12 01:09-0500\n" ++"Last-Translator: Juhani Numminen \n" + "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fi/)\n" + "Language: fi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Ongelmien raportointi" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Katsele ja raportoi ohjelmien kaatumisia" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "Hakemistoa ”%s” ei voida avata kirjoittamista varten" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "Ilmoitusta ei voida sulkea: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Ilmoita" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Käynnistä uudelleen" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Ongelma on raportoitu automaattisesti." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Ongelma raportoidaan, kun internet-" ++"yhteys on saatavilla." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Ota yhteyttä kehittäjään, jos haluat " ++"raportoida ongelman." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Valitettavasti %s näyttää kaatuneen. Jos haluat auttaa ongelman " ++"selvittämisessä, lähetä virheilmoitus." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "Ei voida näyttää ilmoitusta: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -138,13 +146,24 @@ msgstr "" + "Ohjelma, joka huomauttaa käyttäjälle uusista ABRT:n havaitsemista " + "ongelmista\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Kysy ennen hakemiston varastamista" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Lähetä uReport automaattisesti" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +@@ -159,7 +178,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -192,42 +213,54 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +-msgstr "" ++msgstr "_Sulje" + + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +-msgstr "" ++msgstr "_Oletukset" + + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Ongelmienraportointiasetukset" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +@@ -235,20 +268,23 @@ msgstr "" + + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "Tietoja" + + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Lopeta" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c ASETUSTIEDOSTO] [-r CHROOT] -d HAK\n" ++"\n" ++"Kysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -260,42 +296,45 @@ msgstr "" + msgid "Problem directory" + msgstr "Ongelmahakemisto" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Asetustiedosto" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Käytä tätä hakemistoa RPM-juurihakemistona" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d HAK\n" ++"\n" ++"Tallenna säiliön metatiedot" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [valitsimet]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Kirjoita lokia syslogiin" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Lisää ohjelmanimet lokiin" + +@@ -303,60 +342,50 @@ msgstr "Lisää ohjelmanimet lokiin" + msgid "Unknown error" + msgstr "Tuntematon virhe" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "”%s” ei ole kelvollinen ongelmakansio" ++msgid "'%s' is not a valid element name" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "”%s” ei ole kelvollinen ongelmakansio" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" ++msgstr "Ei käyttöoikeutta" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" ++msgid "'%s' element can't be modified" ++msgstr "elementtiä ”%s” ei voi muokata" ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -364,12 +393,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Lopeta NUM sekunnin toimettomuuden jälkeen" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tämä ohjelma täytyy suorittaa pääkäyttäjänä." + +@@ -390,18 +419,22 @@ msgstr "Älä aseta taustaprosessiksi" + msgid "Log to syslog even with -d" + msgstr "Kirjoita lokia syslogiin myös valitsimen -d kanssa" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Suorita TAPAHTUMA HAKemistoissa" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -431,73 +464,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -509,68 +543,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Ei ole kansio: ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (alkaa kauttaviivalla)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (alkaa pisteellä)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (sisältää ”..”)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (sisältää välilyönnin)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Ohitetaan: ”{0}” (sisältää sarkaimen)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -594,18 +628,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -646,7 +688,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Kohteen %s pinolistauksen jäsentäminen epäonnistui" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -735,12 +777,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -850,14 +924,43 @@ msgstr "Puuttuva debuginfo-tiedosto: {0}" + msgid "All debuginfo files are available" + msgstr "Kaikki debuginfo-tiedostot ovat saatavilla" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1072,7 +1175,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Sama kuin -d DumpLocation, DumpLocation on määritetty tiedostossa abrt.conf" +@@ -1083,16 +1187,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Tee ongelmahakemistosta kaikkien luettava" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1101,8 +1207,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1122,6 +1232,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1145,11 +1256,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1163,16 +1276,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1180,18 +1296,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1210,14 +1329,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1226,70 +1348,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1812,19 +1984,19 @@ msgstr "NSS:n sammuttaminen epäonnistui." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1834,44 +2006,44 @@ msgstr "" + " %s). Ytimen ylläpitäjät eivät pysty tutkimaan tärvellyistä ytimistä tehtyjä " + "raportteja." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1893,65 +2065,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Käyttö: abrt-cli [--version] KOMENTO [HAK]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Poista ongelmallinen hakemisto HAK" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analysoi ja raportoi ongelmadata HAKemistossa" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Tulosta tietoja HAKemistosta" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Näytä yksityiskohtainen raportti" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1959,49 +2132,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [valinnat] HAK..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2010,24 +2193,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fr.po b/po/fr.po +index c106602..43a8e21 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -17,128 +17,145 @@ + # Sam Friedmann , 2014 + # Vincent HERBER , 2011 + # Vincent , 2011 ++# Jibec , 2015. #zanata + # Julie Carbone , 2015. #zanata ++# Maxim Therrien , 2015. #zanata + # dominique , 2015. #zanata ++# Jérôme Bivia , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-25 10:42-0500\n" +-"Last-Translator: dominique \n" ++"PO-Revision-Date: 2016-01-16 11:19-0500\n" ++"Last-Translator: Jérôme Bivia \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fr/)\n" + "Language: fr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Signalement de problèmes" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Voir et signaler des incidents d'application" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossible de s'approprier « %s »" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossible de fermer la notification : %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Oups!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" +-msgstr "Rapporter" ++msgstr "Signaler" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Redémarrer" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " ++"problème a été automatiquement signalé." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " ++"problème sera signalé lorsque le réseau sera disponible." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu incident avec %s. Veuillez " ++"contacter le développeur si vous souhaitez signaler le problème." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Si vous " ++"souhaitez aider à résoudre le problème, transmettez un rapport." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " ++"Le problème a été automatiquement signalé." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " ++"Le problème sera signalé quand le réseau sera disponible." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Nous sommes désolés, il semble qu'il y ait eu un incident. Si vous souhaitez " ++"aider à résoudre le problème, transmettez un rapport." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossible d'afficher la notification : %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Impossible de lire à partir du canal gio : « %s »" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossible de déterminer l'encodage sur le canal gio : %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Impossible d'activer le mode non bloquant sur le canal gio : %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -146,9 +163,20 @@ msgid "" + msgstr "" + "& [-v] [DIR]...\n" + "\n" +-"Appliquette notifiant l'utilisateur lorsque de nouveaux incidents sont " ++"Appliquette informant l'utilisateur lorsque de nouveaux incidents sont " + "détectés par ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Demander avant d'occuper furtivement un répertoire" +@@ -159,25 +187,21 @@ msgstr "Envoyer automatiquement le « uReport »" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "Rapporter en mode abrégé" ++msgstr "Signalement en mode abrégé" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "Rapporter silencieusement en mode abrégé" ++msgstr "Signalement silencieux en mode abrégé" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Le fichier du vidage de la mémoire est nécessaire pour générer la trace de " +-"la pile — cette opération est consommatrice de temps et d'espace. ABRT " +-"dispose d'un service générant la trace de la pile à partir du vidage de la " +-"mémoire, mais vous devez téléverser ce vidage pour bénéficier du service. Si " +-"cette option est désactivée, ABRT téléversera le vidage de la mémoire sans " +-"demander la permission." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -190,7 +214,7 @@ msgstr "" + "que ABRT a besoin d'un répertoire dans lequel il puisse écrire, ce " + "répertoire est déplacé de l'emplacement système vers votre répertoire " + "personnel. Quand cette option est désactivée, ABRT déplace le répertoire des " +-"données de l'incident sans rien demander." ++"données de l'incident sans demander." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -202,7 +226,7 @@ msgstr "" + "Un « uReport » est une courte description de l'incident totalement anonyme. " + "ABRT utilise des « uReports » pour une détection rapide et globale des " + "doublons. Dans la configuration par défaut, le « uReport » est envoyé dès le " +-"début du processus de rapport. Quand cette option est activée, les " ++"début du processus de signalement. Quand cette option est activée, les " + "« uReports » sont adressés automatiquement immédiatement après la détection " + "de l'incident." + +@@ -215,7 +239,8 @@ msgstr "" + "Quand cette option est activée, le processus d'envoi de rapport initié en " + "cliquant sur le bouton Rapporter dans la bulle de notification d'incident " + "peut être interrompu après l'envoi du « uReport ». Vous pourrez toujours " +-"utiliser le navigateur d'incident par défaut pour faire un rapport complet." ++"utiliser le navigateur d'incident par défaut pour faire un signalement " ++"complet." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" +@@ -223,14 +248,10 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" + "Quand cette option est activée, ABRT n'affiche aucune notification des " +-"incidents rapportés. Elle ne prend effet que si le mode rapport abrégé est " +-"activé." ++"incidents signalés. Elle ne prend effet que si le mode Signalement abrégé " ++"est activé." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Demander avant de téléverser le vidage de la mémoire" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -238,15 +259,15 @@ msgstr "" + "Quand cette option est activée, ABRT crée toujours un ticket d'anomalie à " + "accès restreint si des données possiblement sensibles ont été détectées." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Demander un ticket privé pour informations sensibles" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifier des incidents incomplets" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -257,6 +278,22 @@ msgstr "" + "rapports d'incidents valables, ABRT ne vous autorise pas à soumettre ces " + "incidents." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Fermer" +@@ -282,14 +319,18 @@ msgstr "À propos" + msgid "Quit" + msgstr "Quitter" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"Interroge la base de données des paquets et sauvegarde les noms du paquet et " ++"du composant" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -301,42 +342,45 @@ msgstr "" + msgid "Problem directory" + msgstr "Répertoire des incidents" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Fichier de configuration" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Utiliser ce répertoire comme racine RPM" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Sauvegarder les métadonnées du conteneur" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "Répertoire racine pour lancer les commandes du conteneur" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utiliser NUM en tant qu'UID client" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Journaliser vers syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Ajouter le nom des programmes dans le journal" + +@@ -344,78 +388,68 @@ msgstr "Ajouter le nom des programmes dans le journal" + msgid "Unknown error" + msgstr "Erreur inconnue" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "« %s » n'est pas un répertoire d'incidents valide" ++msgid "'%s' is not a valid element name" ++msgstr "« %s » n'est pas un nom d'élément valide" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "L'élément « %s » ne peut pas être modifié" ++msgid "'%s' is not a valid problem directory" ++msgstr "« %s » n'est pas un répertoire d'incidents valide" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Interdit" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Impossible d'accéder à l'incident pour effectuer des modifications" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "L'élément « %s » ne peut être modifié" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" +-"Échec du chown sur le répertoire. Vérifier les journaux du système pour plus " ++"Échec du chown sur le répertoire. Vérifiez les journaux du système pour plus " + "de détails." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "« %s » n'est pas un nom d'élément valide" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossible d'obtenir la taille de « %s »" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Il ne reste plus d'espace pour les incidents" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant " ++"Le nom « %s » a été perdu, veuillez vérifier qu'un autre service utilisant " + "ce même nom ne tourne pas.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Quitter après NUM secondes d'inactivité" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Le programme doit être lancé en tant que root." + +@@ -442,18 +476,22 @@ msgstr "Ne pas lancer le démon" + msgid "Log to syslog even with -d" + msgstr "Journaliser vers syslog même avec -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Exécuter EVENT sur DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Communiquer directement à l'utilisateur" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -487,94 +525,95 @@ msgstr "Daemize" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "Nombre de moteurs concurrents. La valeur par défaut est :" ++msgstr "Nombre de moteurs concurrents. La valeur par défaut est " + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "Taille maximale de cache en Mio. La valeur par défaut est" ++msgstr "Taille maximale de cache en MiO. La valeur par défaut est " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Désactive l'authentification" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nom d'utilisateur du Support Red Hat" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Si le mot de passe du Support Red Hat n'est pas fourni, vous serez invité à " + "en créer un." + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Types ou chemins de certificat uReport SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Vous devez également indiquer --username pour --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "Vous pouvez utiliser --username ou --certificate" ++msgstr "Vous pouvez utiliser soit --username ou --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "Vous pouvez utiliser --username ou --anonymous" ++msgstr "Vous pouvez utiliser soit --username ou --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "Vous pouvez utiliser --anonymous ou --certificate" ++msgstr "Vous pouvez utiliser soit --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Nombre d'arguments non valide" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valeur de l'option inconnue : « %s »\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Mot de passe :" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Impossible de continuer sans mot de passe\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "Autoreporting authentifié avec HTTP" ++msgstr "Signalement automatique authentifié avec HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Autoreporting authentifié avec le Client SSL" ++msgstr "Signalement automatique authentifié avec le Client SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "Autoreporting anonyme" ++msgstr "Signalement automatique anonyme" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -595,79 +634,79 @@ msgstr "" + "stockées\n" + " FILENAME - Nom de fichier de l'archive téléversée\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "« {0} » n'est pas un répertoire" ++msgstr "'{0}' n'est pas un répertoire" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "Ignorer : « {0} » (commence par une barre oblique)" ++msgstr "Ignoré : '{0}' (commence par une barre oblique)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "Ignorer : « {0} » (commence par un point)" ++msgstr "Ignoré : '{0}' (commence par un point)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "Ignorer : « {0} » (contient ...)" ++msgstr "Ignoré : '{0}' (contient ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "Ignorer : « {0} » (contient un espace)" ++msgstr "Ignoré : '{0}' (contient un espace)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "Ignorer : « {0} » (contient un onglet)" ++msgstr "Ignoré : '{0}' (contient une tabulation)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "Impossible de modifier le répertoire sur « {0} »" ++msgstr "Impossible de modifier le répertoire sur '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Type de fichier inconnu : « {0} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Impossible de créer un répertoire de travail dans « {0} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Impossible de déplacer « {0} » vers « {1} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Impossible de copier « {0} » sur « {1} »" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Erreur de vérification sur « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Décompression de « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Impossible de créer le répertoire « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Impossible de décompresser « {0} »" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "Traitement de « {0} » réussi" + +@@ -691,21 +730,29 @@ msgstr "chown impossible sur « %s » : %s" + msgid "Deleting problem directory failed: %s" + msgstr "La suppression du répertoire d'incidents a échoué : %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Impossible d'obtenir la liste des incidents depuis abrt-dbus : %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Impossible de tester si l'élément existe via abrt-dbus : %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -738,9 +785,8 @@ msgid "" + msgstr "" + "& [options] -d DIR\n" + "\n" +-"Analyse le backtrace C/C++, crée le hash de duplication, évalue la trace " +-"arrrière et identifie la fonction du plantage dans le répertoire DIR des " +-"incidents" ++"Analyse la trace C/C++, crée le hash de duplication, évalue la trace arrière\n" ++"et identifie la fonction du plantage dans le répertoire DIR des incidents" + + #. + #. * The parser failed. Compute the duphash from the executable +@@ -750,9 +796,9 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +-msgstr "Erreur lors de l'analyse du backtrace pour %s" ++msgstr "Erreur lors de l'analyse de la trace arrière pour %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Fil d'exécution planté introuvable" + +@@ -771,7 +817,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "Analyse en cours du vidage de la mémoire '%s'" ++msgstr "Analyse en cours du vidage de la mémoire « %s »" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:110 +@@ -787,7 +833,7 @@ msgstr "Utilisation : %s [-v] [-o FICHIER_SORTIE] -c FICHIER_CORE" + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "Le FICHIER_CORE n'est pas indiqué" ++msgstr "Le COREFILE n'est pas indiqué" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -797,7 +843,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcule et enregistre l'UUID et le DUPHASH pour le oops dans le répertoire " ++"Calcule et enregistre l'UUID et le DUPHASH pour le oups dans le répertoire " + "des incidents DIR" + + #: ../src/plugins/abrt-action-analyze-oops.c:79 +@@ -807,6 +853,11 @@ msgid "" + "your computer. ABRT will not allow you to create a report in a bug tracking " + "system but you can contact kernel maintainers via e-mail." + msgstr "" ++"La trace ne contient pas assez de cadres de fonction pertinentes pour être " ++"rapportée. Bien qu'agaçant, cela ne démontre pas nécessairement un problème " ++"avec votre ordinateur. ABRT ne vous permettera pas de créer un rapport dans " ++"le système de suivi des bogues, mais vous pouvez contacter les mainteneurs " ++"du noyau via courriel." + + #: ../src/plugins/abrt-action-analyze-xorg.c:73 + msgid "" +@@ -832,7 +883,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident " ++"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident en " + "python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 +@@ -845,7 +896,7 @@ msgstr "Le fichier {0} n'existe pas" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "Extraction du texte du oops depuis le vidage mémoire" ++msgstr "Extraction du texte du oups depuis le vidage mémoire" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" +@@ -855,13 +906,13 @@ msgstr "Impossible de traiter {0}:\n" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "Impossible d'extraire le message oops : « {0} »" ++msgstr "Impossible d'extraire le message oups : « {0} »" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "Extraction réussie du texte du oops" ++msgstr "Extraction du texte du oups réussie" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -869,6 +920,38 @@ msgstr "" + "Le journal du noyau indique que des erreurs matérielles ont été détectées.\n" + "Ce problème n'est donc a priori pas logiciel.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -886,7 +969,7 @@ msgstr "Répertoires debuginfo supplémentaires" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" ++msgstr "Tuer gdb s'il tourne pendant plus de NUM secondes" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +@@ -894,7 +977,7 @@ msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +-msgstr "Le backtrace est généré et enregistré, %u octets" ++msgstr "La trace arrière a été générée et enregistrée, %u octets" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -904,8 +987,8 @@ msgid "" + msgstr "" + "& [-v] [-r] -d DIR\n" + "\n" +-"Créer une trace du vidage mémoire à partir du vidage mémoire et du binaire " +-"correspondant" ++"Créer une trace arrière du vidage mémoire à partir du vidage mémoire et du " ++"binaire correspondant" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -930,7 +1013,7 @@ msgid "Exiting on user command" + msgstr "Arrêt à la demande de l'utilisateur" + + #: ../src/plugins/abrt-action-install-debuginfo.in:89 +-#, c-format ++#, fuzzy, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" + " [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " +@@ -955,6 +1038,30 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installe les informations de déboguage pour tous les BUILD_IDS listés dans " ++"BUILD_IDS_FILE\n" ++"dans CACHEDIR, utilisant TMPDIR en tant que dossier temporaire.\n" ++"Les anciens fichiers dans CACHEDIR sont supprimés jusqu'à temps que le " ++"répertoire soit plus petit que SIZE.\n" ++"\n" ++"Lit la configuration /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Être verbeux\n" ++" -y Non-interactif, assume « Oui » à toutes les questions\n" ++" --ids Défaut: build_ids\n" ++" --tmpdir Défaut: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Défaut: /var/cache/abrt-di\n" ++" --size_mb Défaut: 4096\n" ++" --pkgmgr Défaut: PackageManager de CCpp.conf ou 'dnf'\n" ++" -e,--exact Télécharge seulement les fichiers spécifiés\n" ++" --repo Motif à utiliser lors de la recherche de dépôts\n" ++" Défaut: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -974,10 +1081,12 @@ msgstr "{0} des fichiers debuginfo ne sont pas installés" + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" ++"La configuration de l'addition CCpp est invalide, gestionnaire de paquets " ++"invalide: « %s »" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +-msgstr "Le fichier requis est manquant : {0}" ++msgstr "Fichier requis manquant : {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +@@ -987,7 +1096,36 @@ msgstr "Fichier debuginfo manquant : {0}" + msgid "All debuginfo files are available" + msgstr "Tous les fichiers debuginfo sont disponibles" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -997,7 +1135,7 @@ msgstr "" + "sensibles). Si votre réponse est « Non », une analyse locale sera effectuée " + "(ce qui pourrait télécharger une énorme quantité de données)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1041,7 +1179,7 @@ msgstr "Impossible de lancer « %s », le message d'erreur est : « %s »" + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "N'est pas un numéro dans le fichier « %s »" ++msgstr "Non-numéro dans le fichier « %s »" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:99 +@@ -1066,7 +1204,7 @@ msgstr "uReport a déjà été envoyé, il ne sera pas envoyé à nouveau" + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "Ajout de votre nom à la liste de CC de l'anomalie sur Bugzilla" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:193 +@@ -1116,7 +1254,7 @@ msgstr "Signal causé par l'écriture dans un tube cassé" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "Signal ABRT (abort() a été appelé ?)" ++msgstr "Signal ABRT (abort() a été appelé?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +@@ -1132,7 +1270,7 @@ msgstr "Signal TRAP (peut être une anomalie dans un débogueur/traceur)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "Signal SYS (un appel système inconnu a été appelé ?)" ++msgstr "Signal SYS (un appel système inconnu a été appelé?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +@@ -1144,7 +1282,7 @@ msgstr "Division par zéro" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "Instruction illégale (passage à une adresse aléatoire ?)" ++msgstr "Instruction illégale (passage à une adresse aléatoire?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +@@ -1160,7 +1298,7 @@ msgstr "Écriture à une adresse invalide" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "La sous-routine retourne à une adresse invalide (pile corrompue ?)" ++msgstr "La sous-routine retourne à une adresse invalide (pile corrompue?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 +@@ -1182,15 +1320,15 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "Raison possible de l'arrêt brutal :" ++msgstr "Raison possible de l'arrêt brutal : " + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "Taux d'exploitabilité (échelle 0-9) :" ++msgstr "Taux d'exploitabilité (échelle 0-9) : " + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "Instruction actuelle :" ++msgstr "Instruction actuelle : " + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -1219,12 +1357,12 @@ msgid "" + msgstr "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extrait le oops de FILE (ou de l'entrée standard)" ++"Extrait le oups de FILE (ou de l'entrée standard)" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" +-msgstr "Afficher les oops noyau trouvés sur la sortie standard" ++msgstr "Afficher les oups noyau trouvés sur la sortie standard" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +@@ -1233,15 +1371,16 @@ msgstr "Afficher les oops noyau trouvés sur la sortie standard" + #: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +-"Créer un nouveau répertoire d'incidents dans DIR pour chaque oops découvert" ++"Créer un nouveau répertoire d'incidents dans DIR pour chaque oups découvert" + + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" +-"Identique à l'option -d emplacement_de_vidage, l'emplacement du vidage est " ++"Identique à l'option -d EmplacementDeVidage, l'emplacement du vidage est " + "spécifié dans abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:104 +@@ -1250,16 +1389,18 @@ msgstr "Sauvegarder les informations extraites dans PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Rendre le répertoire des incidents lisible par tout le monde" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Limiter la création de répertoire d'incident à 1 par seconde" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" + +@@ -1268,29 +1409,36 @@ msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" + msgid "Failed to compile regex" + msgstr "Échec de la compilation des expressions régulières" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Impossible de mettre à jour l'incident : plus d'un oops trouvé" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" + msgstr "" ++"Échec de l'obtention de toutes les informations nécessaires de journald" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "Ne sauvegardera pas un plantage répétitif après %ds (limite: %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" + msgstr "" ++"Échec de la sauvegarde des données du problème détecté dans la base d'ABRT" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" +-msgstr "" ++msgstr "Échec de l'initialisation de la surveillance systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +@@ -1305,60 +1453,84 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extrait un vidage de processus de systemd-journal\n" ++"\n" ++"Les options -c et -e entrent en conflit car les deux spécifient le premier " ++"message de lecture.\n" ++"\n" ++"-e n'est utile seulement pour -f car la suite du journal débute par la " ++"lecture\n" ++"du journal entier si la dernière position lue n'est pas disponible.\n" ++"\n" ++"La dernière position lue est sauvegardée dans " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" + msgstr "" ++"Créer un nouveau répertoire d'incidents dans DIR pour chaque vidage de la " ++"mémoire découvert" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "" ++msgstr "Débuter la lecture du systemd-journal depuis la position du CURSEUR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "" ++msgstr "Débuter la lecture du systemd-journal depuis la fin" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "Limiter la création de répertoire d'incident à 1 par INT seconde(s)" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Identique à -t INT, INT est spécifié dans plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" ++"Suivre systemd-journal depuis la dernière position lue (si disponible)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" +-msgstr "" ++msgstr "Vous devez spécifier soit -c CURSEUR ou -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "Impossible d'ouvrir systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" +-msgstr "" ++msgstr "Impossible de déplacer le curseur vers la fin du journal" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" ++"Impossible de définir la position du curseur de systemd-journal « %s »" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Impossible de lire les données du journal." + +@@ -1377,14 +1549,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Lire tous les fichiers de journaux de toutes les machines" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Lire tous les fichiers de journaux dans le répertoire PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1393,12 +1568,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1408,59 +1629,63 @@ msgstr "" + "\n" + "Extraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Afficher les données de plantage sur la sortie standard" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Créer un répertoire d'incidents dans DIR pour chaque incident découvert" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2006,7 +2231,7 @@ msgstr "Impossible de fermer NSS." + msgid "Sleeping for %d seconds" + msgstr "Mise en sommeil pour %d secondes" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2014,7 +2239,7 @@ msgstr "" + "Un problème de noyau s'est produit car le BIOS est cassé. Malheureusement, " + "de tels problèmes ne peuvent pas être corrigés par les mainteneurs du noyau." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2023,7 +2248,7 @@ msgstr "" + "charge, les mainteneurs du noyau ne sont donc pas en mesure de corriger ce " + "problème." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2033,24 +2258,24 @@ msgstr "" + "Les mainteneurs du noyau n'ont pas la possibilité de diagnostiquer les " + "rapports teintés." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Modules teintés : %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Liste des identifiants d'anomalies" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Spécifier l'URL d'un serveur bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Spécifier une révision" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2060,21 +2285,21 @@ msgstr "" + "\n" + "Rechercher des mises à jour sur le serveur bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Recherche de mises à jour" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Mises à jour introuvables pour ce paquet" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La version de ce paquet est plus récente que les mises à jour disponibles" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2103,69 +2328,70 @@ msgstr "Afficher les oops trouvés" + msgid "Delete files with found oopses" + msgstr "Supprimer les fichiers avec des oops trouvés" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "« %s » identifie plus d'un répertoire d'incident" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage : abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Liste des incidents [dans DIR]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Supprimer le répertoire d'incidents DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyser et rapporter les données des incidents dans DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimer des informations sur DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Affiche le nombre de plantages récents" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Traiter de multiples problèmes" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Répertorier les problèmes non rapportés uniquement" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Afficher le rapport détaillé" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Répertorier uniquement les problèmes plus récents que la date indiquée" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Répertorier uniquement les incidents plus anciens que la date indiquée" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2176,55 +2402,65 @@ msgstr "" + "Veuillez envisager de l'activer en effectuant\n" + "la commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Un texte plus grand que ce qui suit sera abrégé" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Répertoire d'incidents « %s » inconnu" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Affiche uniquement le nombre d'incident sans autre message" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Suppression de « %s »" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Supprimer PROBLEM_DIR après le rapport" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Suppression de « %s »" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" +@@ -2236,27 +2472,182 @@ msgstr "" + "Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporter « %s »" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sans l'argument --since, réitère tous les problèmes détectés." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/gl.po b/po/gl.po +index 16b716a..61bd784 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/gl/)\n" + "Language: gl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,102 +29,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Non é posíbel asumir a propiedade sobre «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Non é posíbel abrir o directorio para escribir «%s»" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Non é posíbel fechar a notificación: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Non é posíbel mostrar a notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Non é posíbel ler da canle gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Non é posíbel definir a codificación da canle gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Non é posíbel activar o modo sen bloqueo para a canle gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -134,6 +134,17 @@ msgstr "" + "\n" + "Applet que notifica o usuario cando o ABRT detecta problemas novos\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -155,7 +166,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -188,30 +201,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notificar os problemas incompletos" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Pechar" +@@ -237,14 +262,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -256,11 +281,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Directorio de problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Ficheiro de configuración" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -274,24 +299,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opcións]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Empregar NUM como identificador de usuario do cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Rexistrar en syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Engadir os nomes dos programas ao rexistro" + +@@ -299,63 +325,53 @@ msgstr "Engadir os nomes dos programas ao rexistro" + msgid "Unknown error" + msgstr "Produciuse un erro descoñecido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "«%s» non é un directorio de problemas válido" ++msgid "'%s' is not a valid element name" ++msgstr "«%s» non é un nome válido para un elemento" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Non é posíbel modificar o elemento «%s»" ++msgid "'%s' is not a valid problem directory" ++msgstr "«%s» non é un directorio de problemas válido" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Non autorizado " + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Non é posíbel acceder ao problema para modificar" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Non é posíbel modificar o elemento «%s»" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Fallou a execución de chown no directorio. Comprobe os rexistros do sistema " + "para máis detalles." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "«%s» non é un nome válido para un elemento" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Non é posíbel obter o tamaño de «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Non fica espazo para os problemas" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -365,12 +381,12 @@ msgstr "" + "Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en " + "execución.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Saír despois de NUM segundos de inactividade" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa débese executar como administrador." + +@@ -397,18 +413,22 @@ msgstr "Non converter en daemon" + msgid "Log to syslog even with -d" + msgstr "Rexistrar en syslog mesmo con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event DIR DE EVENTO..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Executar EVENTO en DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunicar directamente ao usuario" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -438,73 +458,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "O número de argumentos é incorrecto" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -516,68 +537,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -601,18 +622,26 @@ msgstr "Non é posíbel cambiar o propietario de «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Fallou a eliminación do directorio de problemas: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Non é posíbel obter a lista do problema de abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -661,7 +690,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Fallou a análise do trazado inverso de %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -763,12 +792,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -881,14 +942,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1103,7 +1193,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1113,16 +1204,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1131,8 +1224,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1152,6 +1249,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1175,11 +1273,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1193,16 +1293,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1210,18 +1313,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1240,14 +1346,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1256,70 +1365,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1819,64 +1978,64 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de identificadores dos fallos" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "A buscar actualizacións" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Non se atopou ningunha actualización para este paquete" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "A versión do paquete local é máis recente que as actualizacións dispoñíbeis" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1900,65 +2059,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostrar un informe detallado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1966,49 +2126,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Imprimir só o número de problemas sen ningunha mensaxe" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Imprimir só os problemas anteriores á marca temporal indicada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2017,24 +2187,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/gu.po b/po/gu.po +index 7f25c54..a95b17f 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/gu/)\n" + "Language: gu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -33,102 +33,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ની માલિકી લઇ શકાતી નથી" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ને લખવા માટે ડિરેક્ટરીને ખોલી શકાતી નથી" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "સૂચનાને બંધ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "અહેવાલ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "સૂચનાને બતાવી શકાતુ નથી: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ચેનલમાંથી વાંચી શકાતુ નથી: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ચેનલ પર એનકોડીંગ સુયોજિત કરી શકાતુ નથી: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ચેનલ માટે બ્લોક ન થાય તેવી સ્થિતિને ચાલુ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -139,6 +139,17 @@ msgstr "" + "એપલેટ કે જે વપરાશકર્તાને સૂચન કરે છે જ્યારે નવી સમસ્યાઓ ABRT દ્દારા શોધાયેલ " + "છે\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ડિરેક્ટરીની ચોરી પહેલાં પૂછો" +@@ -160,12 +171,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"coredump ફાઇલ સ્ટેક ટ્રેસને પેદા કરવા માટે જરૂરી છે કે જે સમય અને જગ્યા " +-"વપરાશ ક્રિયા છે. ABRT સેવાને પૂરુ પાડે છે કે જે coredump માંથી સ્ટેક ટ્રેસને " +-"પેદા કરે છે, પરંતુ તમે આ સેવા માટે coredump ને અપલોડ કરવુ જ પડશે. નિષ્ક્રિય " +-"થયેલ ABRT આ વિકલ્પ સાથે તેમને પૂછ્યા વગર coredump ને અપલોડ કરશે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -211,10 +220,6 @@ msgstr "" + "અસર થાય છે જો ટૂંકી થયેલ અહેવાલીકરણ સક્રિય થયેલ હોય." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Coredump અપલોડ કરતા પહેલા પૂછો " +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -222,15 +227,15 @@ msgstr "" + "સક્રિય થયેલ ABRT આ વિકલ્પ સાથે મર્યાદિત થયેલ પ્રવેશ સાથે હંમેશા ભૂલ ટિકીટ " + "બનાવે છે જો શક્ય સંવેદનશીલ માહિતી બનાવેલ હોય." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "સંવેદનશીલ માહિતી માટે ખાનગી ટિકિટની વિનંતી" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "અપૂર્ણ સમસ્યાઓ સૂચિત" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -240,6 +245,22 @@ msgstr "" + "વપરાશકર્તા બહાર નીકળી રહ્યા હોય. કિંમતી સમસ્યા અહેવાલને પૂરુ પાડવા માટે " + "ક્રમમાં, ABRT એ આ સમસ્યાઓને મોકલવા માટે તમને પરવાનગી આપશે નહિં." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "બંધ કરો (_C)" +@@ -265,14 +286,14 @@ msgstr "વિશે" + msgid "Quit" + msgstr "બહાર નીકળો" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -284,11 +305,11 @@ msgstr "" + msgid "Problem directory" + msgstr "સમસ્યા ડિરેક્ટરી" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "રૂપરેખાંકન ફાઇલ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -302,24 +323,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ક્લાયન્ટ uid તરીકે NUM ને વાપરો" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog માં લૉગ લો" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "લૉગ રાખવા માટે કાર્યક્રમ નામો ઉમેરો" + +@@ -327,60 +349,50 @@ msgstr "લૉગ રાખવા માટે કાર્યક્રમ ન + msgid "Unknown error" + msgstr "અજ્ઞાત ભૂલ" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ઘટકને બદલી શકાતુ નથી" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "અધિકૃત નથી" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "સૂચના માટે સમસ્યાને વાપરી શકાતુ નથી" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" ++msgid "'%s' element can't be modified" ++msgstr "'%s' ઘટકને બદલી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' નું માપ મેળવી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "સમસ્યાની જગ્યા બાકી રહેલ નથી" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "સમસ્યા ડિરેક્ટરી '%s' માંથી ઘટક '%s' ને કાઢી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -390,12 +402,12 @@ msgstr "" + "નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી " + "સેવા ચાલી રહી નથી.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "નિષ્ક્રિયતાની NUM સેકંડ પછી બહાર નીકળો" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "આ કાર્યક્રમ રુટ તરીકે જ ચલાવવો જોઇએ." + +@@ -422,18 +434,22 @@ msgstr "ડિમોનાઇઝ કરો નહિં" + msgid "Log to syslog even with -d" + msgstr "-d સાથે પણ syslog નો લૉગ લો" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR પર EVENT ચલાવો" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "સીધુ વપરાશકર્તા સાથે વાર્તાલાપ કરો" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -472,88 +488,89 @@ msgstr "સહવર્તી કામદારો સંખ્યા. મૂ + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB માં મહત્તમ કેશ માપ. મૂળભૂત છે" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "સત્તાધિકરણને બંધ કરો" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support વપરાશકર્તા નામ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support પાસવર્ડ, જો આપેલ ન હોય તો, તેની માટે પ્રોમ્પ્ટ કરવામાં આવશે" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL પ્રમાણપત્ર પાથ અથવા પ્રમાણપત્ર પ્રકાર" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "તમારે --password માટે --username ને પણ સ્પષ્ટ કરવુ જ જોઇએ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "તમારે ક્યાંતો --username અથવા --certificate ને વાપરી શકો છો" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "તમે ક્યાંતો --username અથવા --anonymous ને વાપરી શકો છો" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "તમે ક્યાંતો --anonymous અથવા --certificate વાપરી શકો છો" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "દલીલોની અયોગ્ય સંખ્યા" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "અજ્ઞાત વિકલ્પ કિંમત: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "પાસવર્ડ:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "પાસવર્ડ વગર ચાલુ કરી શકાતુ નથી\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ક્લાયન્ટ સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author sweta +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "અનામિક આપોઆપ અહેવાલીકરણ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -573,83 +590,83 @@ msgstr "" + " FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ડિરેક્ટરી નથી: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "છોડી રહ્યા છે: '{0}' (સ્લેશ સાથે શરૂ કરે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "છોડી રહ્યા છે: '{0}' (બિંદુ સાથે શરૂ કરે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "છોડી રહ્યા છે: '{0}' (સમાવે છે ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "છોડી રહ્યા છે: '{0}' (જગ્યાને સમાવે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "છોડી રહ્યા છે: '{0}' (ટૅબને સમાવે છે)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' માટે ડિરેક્ટરીને બદલી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "અજ્ઞાત ફાઇલ પ્રકાર: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' માં કાર્ય કરવાની ડિરેક્ટરીને બનાવી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' થી '{1}' ને ખસેડી શકાતુ નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' થી '{1}' માં નકલ કરી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' પર ચકાસણી ભૂલ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ને ખોલી રહ્યા છે" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ડિરેક્ટરીને બનાવી શકાતી નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ને ખોલી શકાતુ નથી" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' પ્રક્રિયા સફળતાપૂર્વક થઇ" + +@@ -673,18 +690,26 @@ msgstr "'%s' નું chown કરી શકાતુ નથી: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ડિરેક્ટરીની સમસ્યાને કાઢી નાંખવામાં નિષ્ફળતા: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus માંથી સમસ્યા યાદીને મેળવી શકાતી નથી: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -732,7 +757,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s બેકટ્રેસ પાર્સિંગ નિષ્ફળ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ભંગાણ થ્રેડ મળ્યુ નથી" + +@@ -838,7 +863,7 @@ msgstr "oops સંદેશાને કાઢી શકાતુ નથી: '{ + msgid "Oops text extracted successfully" + msgstr "Oops લખાણને સફળતાપૂર્વક કાઢી નાંખેલ છે" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -846,6 +871,38 @@ msgstr "" + "કર્નલ લૉગ સૂચવે છે કે હાર્ડવેર ભૂલો મળી આવી હતી.\n" + "આ મોટે ભાગે સોફ્ટવેર સમસ્યા નથી.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -963,7 +1020,36 @@ msgstr "ગેરહાજર debuginfo ફાઇલ: {0}" + msgid "All debuginfo files are available" + msgstr "બધી ડિબગ જાણકારી ફાઇલો ઉપલબ્ધ છે" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -973,7 +1059,7 @@ msgstr "" + "જો તમારો જવાબ 'ના' હોય તો, સ્ટેક ટ્રેસ સ્થાનિક રીતે ઉત્પન્ન કરાશે. (તે વિશાળ " + "પ્રમાણમાં માહિતીને ડાઉનલોડ કરી શકે છે)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1210,7 +1296,8 @@ msgstr "મળેલ દરેક oops માટે DIR માં નવી સ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation નાં જેવી, DumpLocation એ abrt.conf માં સ્પષ્ટ થયેલ છે" + +@@ -1220,16 +1307,18 @@ msgstr "PROBLEM માં કાઢી નાંખેલ જાણકારી + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "સમસ્યા ડિરેક્ટરીને દુનિયામાં વાંચી શકાય એ રીતે બનાવો" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "દરેક 1 સેકંડે થ્રોટલ સમસ્યા ડિરેક્ટરી નિર્માણ" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છાપો અને બહાર નીકળો" + +@@ -1239,9 +1328,13 @@ msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છ + msgid "Failed to compile regex" + msgstr "regex ને કમ્પાઇલ કરવામાં નિષ્ફળતા" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "સમસ્યાને સુધારી શકાતી નથી: એક કરતા વધારે oops મળ્યુ" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1260,6 +1353,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1283,11 +1377,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1301,16 +1397,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1318,18 +1417,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1348,14 +1450,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1364,12 +1469,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1379,58 +1530,62 @@ msgstr "" + "\n" + "FILE માંથી Xorg ભંગાણને કાઢો (અથવા મૂળભૂત ઇનપુટ)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "મૂળભૂત આઉટપુટ પર મળેલ ભંગાણ માહિતીને છાપો" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "મળેલ દરેક ભંગાણ માટે DIR માં સમસ્યા ડિરેક્ટરીને બનાવો" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1971,7 +2126,7 @@ msgstr "NSS ને બંધ કરવામાં નિષ્ફળતા." + msgid "Sleeping for %d seconds" + msgstr "%d સેકંડ માટે નિષ્ક્રિય" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1979,7 +2134,7 @@ msgstr "" + "બગડેલા BIOS ના કારણે કર્નલ સમસ્યા ઉદ્ભવી. કમનસીબે, આવી સમસ્યાઓ કર્નલના " + "માલિકોથી સુધારી શકાતી નથી." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1987,7 +2142,7 @@ msgstr "" + "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારું હાર્ડવેર આધારભૂત નથી, તેથી કર્નલ માલિકો આ " + "સમસ્યા સુધારવામાં અસમર્થ છે." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1996,24 +2151,24 @@ msgstr "" + "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારુ કર્નલને દૂષિત કરવામાં આવ્યુ છે (ફ્લેગ:%s). " + "કર્નલ સંચાલકો દૂષિત થયેલ અહેવાલોનું નિદાન કરવા માટે અસક્ષમ છે." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " લાઇસન્સ વગરનાં મોડ્યુલો: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ભૂલ ids ની યાદી" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "bodhi સર્વર url સ્પષ્ટ કરો" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "પ્રકાશન સ્પષ્ટ કરો" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2023,20 +2178,20 @@ msgstr "" + "\n" + "bodhi સર્વર પર સુધારાઓ માટે શોધો" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "સુધારા માટે શોધી રહ્યા છે" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "આ પેકેજ માટે સુધારો મળ્યો નથી" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "પેકેજની સ્થાનિક આવૃત્તિ ઉપલબ્ધ સુધારા કરતા નવી છે" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2065,66 +2220,67 @@ msgstr "મળેલ oopses ને છાપો" + msgid "Delete files with found oopses" + msgstr "મળેલ oopses સાથે ફાઇલોને કાઢી નાંખો" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' એ એક કરતા વધારે સમસ્યા ડિરેક્ટરીને ઓળખે છે" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "વપરાશ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "સમસ્યાઓની યાદી કરો [DIRs માં]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "સમસ્યા ડિરેક્ટરી DIR ને દૂર કરો" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR માં સમસ્યા માહિતીનું વિશ્ર્લેષણ અને અહેવાલ કરો" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR વિશે જાણકારીને છાપો" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "તાજેતરનાં ભંગાણોની ગણતરીને છાપો" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ઘણી સમસ્યાઓની પ્રક્રિયા" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --help' જુઓ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "માત્ર નહિં-અહેવાલ અપાયેલ સમસ્યાઓની જ યાદી આપો" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "વિગત થયેલ અહેવાલને બતાવો" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા વધારે તાજેતરની સમસ્યાઓની યાદી કરો" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા જૂની સમસ્યાઓની ફક્ત યાદી કરો" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2135,54 +2291,64 @@ msgstr "" + "કરવાનું ધ્યાન રાખો\n" + "'abrt-auto-reporting enabled' ને રુટ હકોવાળા વપરાશકર્તા તરીકે ચલાવીને\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "આનાં કરતા વધારે લખાણને સંક્ષિપ્ત બતાવવામાં આવશે" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "આવી સમસ્યા ડિરેક્ટરી '%s' નથી" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "કોઇપણ સંદેશા વગર ફક્ત સમસ્યાની ગણતરીને છાપો" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા ફક્ત વધારે તાજેતની સમસ્યાઓને છાપો" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT એ %u સમસ્યા(ઓ) ને શોધી. વધારે જાણકારી માટે ચલાવો: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ને કાઢી રહ્યા છે" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "અહેવાલ થયા પછી PROBLEMDIR ને દૂર કરો (_D)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ને કાઢી રહ્યા છે" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "ક્રિયાઓ: remove(rm), info(i), skip(s):" +@@ -2193,27 +2359,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "ક્રિયાઓ: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' નો અહેવાલ કરી રહ્યા છે" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "આગળની સમસ્યા માટે ENTER ને દબાવો:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since દલીલ વગર, બધી શોધાયેલ સમસ્યાઓ પર પુનરાવર્તિત થાય છે." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ટાઇમસ્ટેમ્પ પછી ફક્ત શોધાયેલ સમસ્યાઓને પસંદ કરે છે" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/he.po b/po/he.po +index a020d49..d6b6a71 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/he/)\n" + "Language: he\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,108 +30,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "דווח" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -153,7 +164,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -186,30 +199,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -235,14 +260,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -254,11 +279,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -272,24 +297,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "רשום ליומן המערכת" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -297,60 +323,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "Do not daemonize" + msgid "Log to syslog even with -d" + msgstr "Log to syslog even with -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "ניתוח מידע הקריסה נכשל עבור %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1785,63 +1944,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1863,65 +2022,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1929,49 +2089,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1980,24 +2150,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hi.po b/po/hi.po +index 7065a3f..0ec276c 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -18,7 +18,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -28,7 +28,7 @@ msgstr "" + "language/hi/)\n" + "Language: hi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -38,102 +38,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' का स्वामित्व नहीं ले सकता है" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "लिखने के लिए निर्देशिका नहीं खोल सकते हैं '% s' " + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "अधिसूचना बंद नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "अधिसूचना नहीं दिखा सकता है: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio चैनल से पढ़ा नहीं जा सकता: '% s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "जिओ चैनल पर एन्कोडिंग सेट नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "जिओ चैनल के लिए गैर ब्लॉकिंग पर चालू नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -144,6 +144,17 @@ msgstr "" + "एप्प्लेट जो उपयोक्ता को अधिसूचित करता है जब नई समस्या ABRT द्वारा पायी जाती " + "है\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -164,18 +175,15 @@ msgstr "संक्षिप्त रिपोर्टिंग" + msgid "Silent shortened reporting" + msgstr "मौन संक्षिप्त रिपोर्टिंग" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"कोरडंप फाइल स्टैक ट्रैस जनित करने के लिए जरूरी है जो कि समय और स्थान की खपत " +-"करने वाला काम है. ABRT ऐसी सेवा प्रदान करता है कोरडंप से स्टैक ट्रैस जनित " +-"करता है लेकिन आपको इस सेवा में कोरडंप को अपलोड करना है. इस विकल्प के साथ " +-"निष्क्रिय ABRT बिना पूछे कोरडंप को अपलोड करेगा." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -223,29 +231,24 @@ msgstr "" + " इस विकल्प के साथ सक्रिय ABRT रिपोर्ट किए गए समस्या को कभी नहीं दिखाता है. " + "यह तभी प्रभावी होता है जब संक्षिप्त रिपोर्टिंग सक्रिय किया जाता है." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "कोरडंप अपलोड के पहले पूछें" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "संवेदनशील सूचना के लिए निजी टिकट का निवेदन करें" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "अपूर्ण समस्या अधिसूचित करें" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -255,6 +258,22 @@ msgstr "" + "आउट है. मूल्यवान समस्या रिपोर्ट देने के क्रम में, ABRT आपको इन समस्याओं के " + "सुपुर्द करने की छूट नहीं देगा." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -281,14 +300,14 @@ msgstr "परिचय" + msgid "Quit" + msgstr "बाहर" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -300,11 +319,11 @@ msgstr "" + msgid "Problem directory" + msgstr "समस्या निर्देशिका" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "विन्यास फाइल" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -318,24 +337,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [विकल्प]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM को बतौर क्लायंट uid उपयोग करें" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "सिसलॉग में लॉग करेंसिस्टल" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "लाग करने के लिए अधिक प्रोग्राम नाम" + +@@ -343,61 +363,51 @@ msgstr "लाग करने के लिए अधिक प्रोग् + msgid "Unknown error" + msgstr "अज्ञात त्रुटि" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" ++msgid "'%s' is not a valid element name" ++msgstr "'% s' एक वैध तत्व का नाम नहीं है" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "प्राधिकृत नहीं" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "संशोधन के लिए समस्या का उपयोग नहीं कर सकते है" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning डायरेक्टरी विफल. अधिक जानकारी के लिए सिस्टम लॉग की जाँच करें." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'% s' एक वैध तत्व का नाम नहीं है" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' का आकार पा नहीं सकता है" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "कोई समस्या स्थान नहीं छोड़ दिया है" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "तत्व '%s' को समस्या निर्देशिका '%s' से मिटा नहीं सकता है" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -407,12 +417,12 @@ msgstr "" + "नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व " + "रखती है नहीं चल रहा हो.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM सेकेंड की निष्क्रियता के बाद बाहर निकलें" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "इस प्रोग्राम को जरूर बतौर रूट चलाया जाना चाहिए." + +@@ -438,18 +448,22 @@ msgstr "डेमॉनाइज मत करें" + msgid "Log to syslog even with -d" + msgstr "-d के साथ सिसलॉग घटना में लॉग-d के साथ सिस्" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT को DIR पर चलाएँ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "उपयोक्ता से सीधे संचार करें" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -487,89 +501,90 @@ msgstr "सहवर्ती वर्कर की संख्या. तय + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB में अधिकतम कैश आकार. तयशुदा है " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "सत्यापन बंद करें" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat समर्थन उपयोक्ता नाम" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat समर्थन कूटशब्द, यदि नहीं दिया हुआ है तो इसके लिए कोई प्रांप्ट निर्गत " + "किया जाएगा" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL प्रमाणपत्र पथ या प्रमाणपत्र प्रकार" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "आपको --username को --password के लिए निर्दिष्ट करने की जरूरत होगी" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "आप या तो --username या --certificate का प्रयोग कर सकते हैं" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "आप या तो --username या --anonymous का प्रयोग कर सकते हैं" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "आप या तो --anonymous या --certificate का प्रयोग कर सकते हैं" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "तर्क की अवैध संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अज्ञात विकल्प मान '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "कूटशब्द:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "कूटशब्द के बिना जारी नहीं रख सकते हैं\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP सत्यापन स्वचालित रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL क्लायंट सत्यापन स्वचालित रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "अनाम स्वचालित रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -589,83 +604,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "निर्देशिका नहीं है: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "छोड़ रहा है: '{0}' (starts with slash)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "छोड़ रहा है: '{0}' (starts with dot)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "छोड़ रहा है: '{0}' (contains ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "छोड़ रहा है: '{0}' (contains space)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "छोड़ रहा है: '{0}' (contains tab)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' में निर्देशिका बदल नहीं सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "अज्ञात फाइल प्रकार: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' में कार्यशील निर्देशिका नहीं बना सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' को '{1}' में खिसका नहीं सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' को '{1}' में नहीं नक़ल ले सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' पर सत्यापन त्रुटि" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' को खोला जा रहा है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' निर्देशिका नहीं बना सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' खोल नहीं सकता है" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' को सफलतापूर्वक प्रक्रिया किया गया" + +@@ -689,18 +704,26 @@ msgstr "chown '%s' नहीं कर सकता है: %s" + msgid "Deleting problem directory failed: %s" + msgstr "समस्या निर्देशिका को मिटाना विफल रहा: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus से समस्या सूची पा नहीं सकता है: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -747,7 +770,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s के लिए बैकट्रैस विश्लेषण विफल" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "क्रैश लड़ी नहीं मिला" + +@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" + msgstr "वूप्स पाठ सफलतापूर्वक निकाले गए" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -862,6 +885,38 @@ msgstr "" + "कर्नेल लॉग बताता है कि हार्डवेयर त्रुटि का पता चला.\n" + "यह अधिक संभव है कि सॉफ्टवेयर समस्या नहीं है.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -977,7 +1032,36 @@ msgstr "अनुपस्थित डिबगइंफो फ़ाइल: {0 + msgid "All debuginfo files are available" + msgstr "सभी डिबगइंफो फ़ाइलें उपलब्ध हैं" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -987,7 +1071,7 @@ msgstr "" + "आपका उत्तर 'नहीं' है, तो एक स्टैक ट्रैस स्थानीय रूप से बनाया जाएगा. (यह बड़ी " + "मात्रा में आँकड़ा डाउनलोड कर सकता है)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1224,7 +1308,8 @@ msgstr "DIR में हर वूप्स क्षण के लिए न + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation की तरह, DumpLocation को abrt.conf में निर्दिष्ट है" + +@@ -1234,16 +1319,18 @@ msgstr "समस्या में निकाले सूचना को + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "समस्या निर्देशिका को सभी के लिए लिखने योग्य बनाएँ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 प्रति सेकेंड से थ्रोटल समस्या निर्देशिका निर्माण" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout में खोज स्ट्रिंग छापें और बाहर निकलें" + +@@ -1253,9 +1340,13 @@ msgstr "stdout में खोज स्ट्रिंग छापें औ + msgid "Failed to compile regex" + msgstr "रिजेक्स कंपाइल करने में विफल" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "समस्या नहीं अद्यतन कर सका: एकाधिक वूप्स मिला" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1274,6 +1365,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1297,11 +1389,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1315,16 +1409,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1332,18 +1429,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1362,14 +1462,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1378,12 +1481,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1393,58 +1542,62 @@ msgstr "" + "\n" + "फ़ाइल से Xorg क्रैश निकालें (या मानक इनपुट)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "मानक आउटपुट पर छपाई में क्रैश आँकड़ा मिला" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "DIR में हर क्रैश के लिए नयी समस्या निर्देशिका बनाएँ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1978,7 +2131,7 @@ msgstr "NSS शटडाउन करने में विफल." + msgid "Sleeping for %d seconds" + msgstr "%d सेकेंड से लिए सुप्त" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1986,7 +2139,7 @@ msgstr "" + "कर्नेल समस्या आयी, टूट बीआईओएस के कारण. दुर्भाग्य से,ऐसे समस्या देखभालकर्ता " + "ठीक करने में असमर्थ हैं." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1994,7 +2147,7 @@ msgstr "" + "कर्नेल समस्या आयी, लेकिन आपका हार्डवेयर असमर्थित है, इसलिए कर्नेल " + "देखभालकर्ता इस समस्या के निदान में असमर्थ हैं." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2003,24 +2156,24 @@ msgstr "" + "कर्नेल समस्या आयी, लेकिन आपका कर्नेल टेंट किया गया है (फ्लैग:%s). कर्नेल " + "देखभाल कर्ता टेंट किया रिपोर्ट के निदान में असमर्थ है." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " टेंटेड मॉड्यूल: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "बग आईडी की सूची" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "बोधि सर्वर यूआरएल निर्दिष्ट करें" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "किसी रिलीज को निर्दिष्ट करें" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2030,20 +2183,20 @@ msgstr "" + "\n" + "बोधि सर्वर पर अद्यतन के लिए खोजें" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "अद्यतन के लिए खोजा जा रहा है" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "इस संकुल के लिए कोई अद्यतन नहीं मिला" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "संकुल का स्थानीय संस्करण उपलब्ध अद्यतन के बनिस्बत नया है" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2071,67 +2224,68 @@ msgstr "छपाई में वूप्स मिले" + msgid "Delete files with found oopses" + msgstr "मिले वूप्स से फ़ाइल मिटाएँ" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ने एकाधिक समस्या निर्देशिका की पहचान की" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "उपयोग: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "[in DIRs] में समस्या की सूची दें" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "समस्या निर्देशिका DIR को हटाएँ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR में समस्या आँकड़े को विश्लेषित और रिपोर्ट करें" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR के बारे में प्रिंट सूचना" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "हालिया क्रैश की गिनती छापें" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "एकाधिक समस्या की प्रक्रिया करें" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' को अधिक सूचना के लिए देखें" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "बिना रिपोर्ट की गई समस्या को सूचीबद्ध करें" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "विस्तृत विवरण देखें" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत केवल समस्याओं की सूची दें" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "निर्दिष्ट समयस्टैंप से पुराने समस्या की केवल सूची दें" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2142,55 +2296,65 @@ msgstr "" + "'abrt-auto-reporting enabled' को बतौर उपयोक्ता रूट अधिकार चलाकर निर्गत " + "करके\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "इससे बड़ा पाठ संक्षिप्त कर दिया जाएगा" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "कोई ऐसी समस्या निर्देशिका '%s' नहीं" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "बिना किसी संदेश के केवल समस्या गिनती छापें" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत हालिय समस्याओं को केवल छापें" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ने %u समस्या का पता किया है. अधिक जानकारी के लिए चलाएँ: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' मिटा रहा है" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "रिपोर्टिंग के बाद PROBLEM_DIR हटाएँ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' मिटा रहा है" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "क्रिया: remove(rm), info(i), skip(s):" +@@ -2201,27 +2365,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "क्रिया: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' की रिपोर्टिंग" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ENTER को अगली समस्या के लिए दबाएँ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "बिना --since argumen के, सभी पता किए समस्या पर बार-बार आता है." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "टाइमस्टैंप के बाद पता चली समस्या को केवल दिखाता है" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hu.po b/po/hu.po +index c0e3d06..bdb34ab 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -12,127 +12,142 @@ + # teknos.ferenc , 2013-2014 + # Zoltan Hoppár , 2011-2013 + # Zoltan Hoppár , 2014 ++# Kardos László , 2015. #zanata + # Szűcs Kornél Géza , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-31 05:23-0500\n" ++"PO-Revision-Date: 2015-12-16 06:53-0500\n" + "Last-Translator: Szűcs Kornél Géza \n" + "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/hu/)\n" + "Language: hu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Hibajelentés" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Alkalmazás összeomlás megtekintés és jelentés" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' tulajdona nem átvehető" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Mappa nem megnyitható írásra: '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Jelzés nem bezárható: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Hoppá!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Jelentés" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Újraindítás" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " ++"automatikusan bejelentésre került." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " ++"bejelentésre kerül, amint lesz internetkapcsolat. " + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Kérjük vegye " ++"fel a kapcsolatot a fejlesztővel, ha szeretné bejelenteni a hibát" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Ha szeretne " ++"segíteni a hiba megoldásában, kérjük küldjön egy hibajelentést." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " ++"A probléma automatikusan bejelentésre került. " + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " ++"A probléma bejelentésre kerül, amint lesz internetkapcsolat." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel. Ha szeretne " ++"segíteni a probléma megoldásában, kérjük küldjön egy hibajelentést." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Jelzés nem megjeleníthető: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "GIO csatorna nem olvasható: %s" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "GIO csatorna kódolása nem beállítása: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "GIO nonblocking módja nem beállítható: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -143,6 +158,17 @@ msgstr "" + "Alkalmazás amely képes jelezni az ABRT-n keresztül a felhasználó felé ha új " + "probléma történne\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Kérdezzen a mappa kisajátítása előtt" +@@ -164,12 +190,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"A coredump fájl fontos a stack trace generálása érdekében. Mivel ez egy idő- " +-"és erőforrás-igényes folyamat, az ABRT ad szolgáltatást ehhez, ami ezt " +-"elvégzi, de előtte fel kell tölteni a coredump fájlt. Ezzel az opcióval " +-"természetesen az ABRT fel fogja tölteni őket kérdés nélkül." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -217,10 +241,6 @@ msgstr "" + "Rövidített jelentés opció be van kapcsolva." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Kérdezzen a coredump feltöltése előtt" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -228,15 +248,15 @@ msgstr "" + "Ha ez az opció engedélyezve van, akkor az ABRT mindig korlátozott " + "hozzáféréssel jelenti a hibát, ha az bizalmas adatot tartalmaz." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Privát bejegyzés kérése érzékeny információk miatt" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Jelezze a hiányos problémákat" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -246,6 +266,22 @@ msgstr "" + "felhasználó kiléptetése zajlik. Mivel az ABRT célja, hogy hasznos hiba " + "jelentéseket küldjön, így ezeket nem tudjuk elküldeni." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Kilépés" +@@ -271,14 +307,14 @@ msgstr "Rólunk" + msgid "Quit" + msgstr "Kilépés" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -290,11 +326,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Probléma könyvtár" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurációs fájl" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -308,24 +344,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opciók]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Alkalmazza a NUM számot mint kliens UID-t" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Jelentés a rendszernaplóba" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Programnevek hozzáadása a log-hoz" + +@@ -333,62 +370,52 @@ msgstr "Programnevek hozzáadása a log-hoz" + msgid "Unknown error" + msgstr "Ismeretlen hiba" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' nem egy érvényes hibamappa" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' nem érvényes elem név" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' elemek nem módosíthatóak" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' nem egy érvényes hibamappa" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nincs engedélyezve" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Módosításhoz a probléma nem elérhető" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' elemek nem módosíthatóak" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer " + "logfájljait a további részletekért." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' nem érvényes elem név" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' mérete nem megállapítható" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nem maradt hibagyűjtő terület" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "A probléma mappából '%s' nem törölhető '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -398,12 +425,12 @@ msgstr "" + "A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp " + "ezzel a névvel aktív-e vagy sem.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kilépés NUM másodperc inaktivitás után" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ennek a programnak root jogokkal kell futnia." + +@@ -430,18 +457,22 @@ msgstr "Ne automatizálja" + msgid "Log to syslog even with -d" + msgstr "Jelentés a rendszernaplóba akkor is, ha -d opcióval ellátott" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT futtatása a DIR könyvtáron" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Közvetlen kommunikáció a felhasználóval" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -480,73 +511,74 @@ msgstr "Egyidejűleg elérhető dolgozók. Alapértelmezésben " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat támogatás felhasználónév" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Érvénytelen számú paraméter" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Ismeretlen opcionális érték: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Jelszó:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Jelszó megadása nélkül nem folytatható\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -558,74 +590,74 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Nem egy könyvtár: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Átugrás: '{0}' (perjellel kezdődik)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Átugrás: '{0}' (ponttal kezdődik)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + #, fuzzy + msgid "Skipping: '{0}' (contains ..)" + msgstr "Átugrás: '{0}' (.. tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Átugrás: '{0}' (szóközt tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Átugrás: '{0}' (tabulátort tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + #, fuzzy + msgid "Can't change directory to '{0}'" + msgstr "Sikertelen könyvtár váltás ide: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Ismeretlen fájltípus: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + #, fuzzy + msgid "Can't create working directory in '{0}'" + msgstr "Munkakönyvtár létrehozása sikertelen itt: '{0}' " + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + #, fuzzy + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' nem helyezhető át ide: '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + #, fuzzy + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' nem másolható ide: '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + #, fuzzy + msgid "Verification error on '{0}'" + msgstr "Hitelesítési hiba '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Kicsomagolás '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' könyvtár létrehozása sikertelen" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kicsomagolás sikertelen '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + #, fuzzy + msgid "'{0}' processed successfully" + msgstr "'{0}' feldolgozása sikeres" +@@ -650,18 +682,26 @@ msgstr "Sikertelen chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Hibagyüjtő mappa törlése sikertelen: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Problémák listája em elérhetőek az abrt-dbus szolgáltatásból: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -709,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s, nyomkövetési értelmezés sikertelen" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Az összeomlás szálja nem található" + +@@ -814,7 +854,7 @@ msgstr "Oops üzenet nem kibontható: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops szöveg sikeresen kibontva" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -822,6 +862,38 @@ msgstr "" + "A kernelnapló szerint hardver hiba történt.\n" + "Ez valószínűleg nem egy szoftver hiba.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -941,7 +1013,36 @@ msgstr "Hiányzó debuginfo fájl: {0}" + msgid "All debuginfo files are available" + msgstr "MInden debuginfo fájl elérhető" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -951,7 +1052,7 @@ msgstr "" + "tartalmazhat) Ha a válasza 'Nem', a nyomkövetési adatokat helyben állítjuk " + "elő. (Ezzel nagy mennyiségű adat kerülhet letöltésre)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1186,7 +1287,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Ugyanaz mint a -d DumpLocation, a DumpLocation-t pedig az abrt.conf " +@@ -1198,16 +1300,18 @@ msgstr "Mentse a kivonatolt információkat PROBLÉMA gyüjtőbe" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "A dump könyvtár környezetének olvashatóvá tétele" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aktiválja a probéma mappa létrehozását 1 másodpercenként" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" + +@@ -1216,9 +1320,13 @@ msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Probléma nem frissíthető: több mint egy oops található" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1237,6 +1345,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1260,11 +1369,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1278,16 +1389,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1295,18 +1409,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1325,14 +1442,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1341,12 +1461,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1356,59 +1522,63 @@ msgstr "" + "\n" + "Bontsa ki az Xorg összeomlást a FILE-ból (vagy szabványos bemenetről)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Nyomtassa ki az összeomlási adatokat a szabványos kimenetre" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Készítsen mindig új mappát DIR mappában minden egyes ütközéshez amit talál" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1942,7 +2112,7 @@ msgstr "NSS leállítása sikertelen." + msgid "Sleeping for %d seconds" + msgstr "Kivárás %d másodpercig" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1950,7 +2120,7 @@ msgstr "" + "Kernelhiba történt egy hibás BIOS miatt. Sajnálatos módon, az ilyen " + "problémákat nem tudják a kernel programozók kijavítani." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1958,7 +2128,7 @@ msgstr "" + "Kernelhiba történt és a hardvere nem támogatott, ezért a kernel programozók " + "nem tudják megjavítani ezt a problémát." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1967,24 +2137,24 @@ msgstr "" + "Kernelhiba történt, de a kernele összekeveredett más kóddal (flags: %s). A " + "kernel karbantartói képtelenek analizálni ezeket a jelentéseket." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Tainted állapotú modulok: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Hibaazonosítók listája" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Adjon meg egy bodhi kiszolgáló URL-t" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Adja a meg a kiadást" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1994,20 +2164,20 @@ msgstr "" + "\n" + "Keressen frissítéseket bodhi szervereken" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Frissítések keresése" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ehhez a csomaghoz frissítések nem találhatóak" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "A helyben lévő csomag verziója frissebb mint a frissítésekben levő" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2037,70 +2207,71 @@ msgstr "A nyomtatás során talált oops " + msgid "Delete files with found oopses" + msgstr "Fájlok törlése közben oops történt" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + "'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Használat: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listázza a még be nem jelentett hibákat [DIR könyvtárakban]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Hibagyűjtő DIR könyvtár eltávolítása" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Elemzi és bejelenti a hibaadatokat a DIR könyvtárban" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Információk nyomtatása DIR könyvtárról" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Írja ki a legutóbbi összeomlások számát" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Tekintse meg az 'abrt-cli PARANCS --help' a további információkért" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Csak a nem jelentett problémákat listázza" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Részletes jelentés megjelenítése" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Csak azoknak az esetek számát jelenítse meg ami frissebb, mintt a " + "meghatározott időbélyeg" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Csak azokat a megadott eseteket jelenítse meg amik régebbiek mint az " + "időbélyeg" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2111,55 +2282,65 @@ msgstr "" + "engedélyezze root jogú felhasználóként a 'abrt-auto-reporting enabled' " + "paranccsal.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opciók] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Szöveg nagyobb, ezért így fog megjelenni rövidített szövegként" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nincs ilyen problémát tartalmazó könyvtár '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + "Jelenítse meg csak azoknak az eseteknek a számát ahol minden üzenet nélkül " + "történt" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt időbélyeg " + "óta történt" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-" + "cli list %s parancsot\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2168,24 +2349,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ia.po b/po/ia.po +index 8249e12..4eabf14 100644 +--- a/po/ia.po ++++ b/po/ia.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "language/ia/)\n" + "Language: ia\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +29,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Reportar" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +163,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +198,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +259,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +278,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "File de configuration" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +296,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Registrar in syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Adder nomines de programma in registro" + +@@ -296,60 +322,50 @@ msgstr "Adder nomines de programma in registro" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +373,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +399,22 @@ msgstr "Non lancear como demone" + msgid "Log to syslog even with -d" + msgstr "Registrar in syslog mesmo con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +444,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +523,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +608,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +668,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Error durante le analyse del retraciamento de %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +757,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +903,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1154,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Identic a \"-d locodelinstantaneo\"; le loco del instantaneo es specificate " +@@ -1076,16 +1167,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1094,8 +1187,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1115,6 +1212,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1138,11 +1236,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1156,16 +1256,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1173,18 +1276,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1203,14 +1309,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1219,70 +1328,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1807,63 +1966,63 @@ msgstr "Fallimento de arrestar NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1885,65 +2044,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Monstrar un reporto detaliate" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1951,49 +2111,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2002,24 +2172,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/id.po b/po/id.po +index ec554cf..38f9d34 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "language/id/)\n" + "Language: id\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,108 +32,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Laporan" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -155,7 +166,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -188,30 +201,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -237,14 +262,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -256,11 +281,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Direktori masalah" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Berkas konfigurasi" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -274,24 +299,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Catat ke syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Menambahkan nama program untuk log" + +@@ -299,60 +325,50 @@ msgstr "Menambahkan nama program untuk log" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -360,12 +376,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,18 +402,22 @@ msgstr "Jangan dibuat daemon" + msgid "Log to syslog even with -d" + msgstr "Log ke syslog meskipun dengan -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -427,73 +447,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -505,68 +526,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -590,18 +611,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -642,7 +671,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Parsing backtrace gagal untuk %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -731,12 +760,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -845,14 +906,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1067,7 +1157,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1077,16 +1168,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1095,8 +1188,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1116,6 +1213,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1139,11 +1237,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1157,16 +1257,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1174,18 +1277,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1204,14 +1310,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1220,70 +1329,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1784,63 +1943,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1862,65 +2021,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1928,49 +2088,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1979,24 +2149,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/it.po b/po/it.po +index c4be184..41d3d18 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -21,7 +21,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -31,7 +31,7 @@ msgstr "" + "language/it/)\n" + "Language: it\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -41,102 +41,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossibile ottenere la proprietà di '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossibile aprire la directory per la scrittura: '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossibile chiudere la notifica: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Segnala" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossibile mostrare la notifica: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Impossibile eseguire la lettura dal canale gio: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossibile impostare la codifica sul canale gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Impossibile abilitare la modalità nonblocking per il canale gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -147,6 +147,17 @@ msgstr "" + "Applet che notifica all'utente il rilevamento di un nuovo problema da parte " + "di ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -167,19 +178,15 @@ msgstr "Notifica abbreviata" + msgid "Silent shortened reporting" + msgstr "Notifica abbreviata silenziosa" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Il file coredump è necessario per la generazione degli stack trace. Questa " +-"operazione richiederà tempo e spazio. ABRT fornisce un servizio in grado di " +-"generare uno stack trace da coredump, e a tal proposito sarà necessario " +-"caricare coredump per il suddetto servizio. Con questa opzione disabilitata, " +-"ABRT caricherà coredump senza richiederlo all'utente." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -230,29 +237,24 @@ msgstr "" + "problemi riportati. Questa impostazione è effettiva solo se è stata " + "abilitata la Notifica abbreviata." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Chiedi prima di caricare coredump" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Richiedi un ticket privato per le informazioni sensibili" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifica problemi incompleti" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -262,6 +264,22 @@ msgstr "" + "durante l'operazione di logout di un utente. Al fine di fornire notifiche " + "utili, ABRT non permetterà l'invio di questi problemi." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Chiudi" +@@ -287,14 +305,14 @@ msgstr "Informazioni" + msgid "Quit" + msgstr "Esci" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -306,11 +324,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Directory del problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "File di configurazione" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -324,24 +342,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opzioni]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilizzare NUM per l'uid del client" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Log su syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Aggiungi i nomi dei programmi sul log" + +@@ -349,63 +368,53 @@ msgstr "Aggiungi i nomi dei programmi sul log" + msgid "Unknown error" + msgstr "Errore sconosciuto" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' non è una directory di problema valida" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' non è un nome di elemento valido" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Impossibile modificare l'elemento '%s' " ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' non è una directory di problema valida" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Non Autorizzato" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Impossibile accedere al problema per la modifica" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Impossibile modificare l'elemento '%s' " + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Modifica proprietario della directory fallita. Controllare i log del sistema " + "per maggiori informazioni." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' non è un nome di elemento valido" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossibile ottenere la dimensione di '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nessuno spazio del problema rimasto" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -415,12 +424,12 @@ msgstr "" + "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano " + "questo nome non siano in esecuzione.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Esci dopo NUM secondi di inattività" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Questo programma deve essere eseguito come root." + +@@ -446,18 +455,22 @@ msgstr "Non rendere demone" + msgid "Log to syslog even with -d" + msgstr "Log su syslog anche con -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Esegui EVENT su DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunica direttamente all'utente" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -498,89 +511,90 @@ msgstr "Numero di thread di lavoro simultanei. L'impostazione predfinita è" + msgid "Maximal cache size in MiB. Default is " + msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr " Disabilita l'autenticazione" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nome utente per il Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Password per il Red Hat Support, se non specificata verrà richiesto di " + "inserirne una" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Tipo di certificato o percorsi per il certificato SSL uReport" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Specificare --username per --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Usare --username o --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Usare --username o --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Usare --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Numero non valido di argomenti" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valore opzione sconosciuto: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Password:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Impossibile continuare senza password\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Auto reporting autenticato con HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Auto reporting autenticato con client SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "auto reporting anonimo" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -602,83 +616,83 @@ msgstr "" + " FILENAME - Nome del file dell'archivio caricato\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Non è una directory: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Saltato: '{0}' (inizia con barra)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Saltato: '{0}' (inizia con un punto)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Saltato: '{0}' (contiene ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Saltato: '{0}' (presenta uno spazio)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Saltato: '{0}' (presenta un tab)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Impossibile modificare la directory su '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo di file sconosciuto: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Impossibile creare una directory operativa in '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Impossibile spostare '{0}' su '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Impossibile copiare '{0}' su '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Errore di verifica su '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Estrazione '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Impossibile creare la directory '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Impossibile estrarre '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' processato con successo" + +@@ -702,18 +716,26 @@ msgstr "Impossibile ottenere la proprietà '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Cancellazione directory del problema non riuscita: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Impossibile ottenere la lista problemi da abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -762,7 +784,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Fallita analisi del backtrace per %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Thread di crash non trovato" + +@@ -870,7 +892,7 @@ msgstr "Impossibile estrarre il messaggio oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Estratto con successo il testo oops" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -878,6 +900,38 @@ msgstr "" + "Il log del kernel indica che sono stati rilevati errori hardware.\n" + "Questo molto probabilmente non è un errore software.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -994,7 +1048,36 @@ msgstr "File debuginfo mancante: {0}" + msgid "All debuginfo files are available" + msgstr "Tutti i file contenenti le informazioni di debug sono disponibili" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1004,7 +1087,7 @@ msgstr "" + "risponde 'No', uno stack trace sarà generato localmente. (Può scaricare una " + "grande quantità di dati)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1244,7 +1327,8 @@ msgstr "Crea una nuova directory del problema in DIR per ogni oops rilevato" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Uguale a -d DumpLocation, DumpLocation viene specificato in abrt.conf" + +@@ -1254,16 +1338,18 @@ msgstr "Salva l'informazione estratta in PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Rendi la directory del problema leggibile a tutti" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aumenta la creazione della directory del problema a 1 per secondo" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" + +@@ -1273,9 +1359,13 @@ msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" + msgid "Failed to compile regex" + msgstr "Impossibile compilare regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Impossibile aggiornare il problema: trovati più di un oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1294,6 +1384,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1317,11 +1408,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1335,16 +1428,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1352,18 +1448,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1382,14 +1481,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1398,12 +1500,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1413,58 +1561,62 @@ msgstr "" + "\n" + "Estrae il crash di Xorg da FILE (o da standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Stampa i dati trovati relativi al crash sullo standard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Crea una nuova directory del problema in DIR per ogni crash rilevato" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2002,7 +2154,7 @@ msgstr "Arresto NSS fallito." + msgid "Sleeping for %d seconds" + msgstr "In sospensione per %d secondi" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2011,7 +2163,7 @@ msgstr "" + "Sfortunatamente questi problemi non possono essere risolti dai manutentori " + "del kernel." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2020,7 +2172,7 @@ msgstr "" + "per questo motivo i manutentori del kernel non sono in grado di risolvere " + "questo problema." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2030,24 +2182,24 @@ msgstr "" + "%s). I manutentori del kernel non sono in grado di effettuare diagnosi dei " + "rapporti inquinati." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Moduli corrotti: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista dei bug ids" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Specificare un url di un server bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Specificare una release" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2057,22 +2209,22 @@ msgstr "" + "\n" + "Ricerca aggiornamenti disponibili su un server bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Ricerca di aggiornamenti" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Non sono stati trovati aggiornamenti per questo pacchetto" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "La versione locale del pacchetto è più recente rispetto a quella disponibile " + "negli aggiornamenti" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2100,67 +2252,68 @@ msgstr "Stampa gli errori trovati" + msgid "Delete files with found oopses" + msgstr "Cancella file con errori trovati" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identifica più di una directory del problema" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Utilizzo: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Elenca i problemi [in DIR]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Rimuovi la directory del problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizza e riporta i dati del problema in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Stampa le informazioni sulla DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Stampa il contatore dei crash recenti" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Elabora problemi multipli" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Elenca solo problemi non riportati" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostra i dettagli della segnalazione" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Elenca solo i problemi più recenti della data specificata" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Elenca solo i problemi più vecchi della data specificata" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2170,55 +2323,65 @@ msgstr "" + "La funzione di auto-reporting è disabilitata. Abilitarla con il comando\n" + "'abrt-auto-reporting enabled' come utente con privilegi root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opzioni] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "I testi con dimensioni maggiori di questo verranno mostrati ridotti" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Directory '%s' del problema non trovata" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Stampa solo il contatore del problema senza nessun messaggio" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Stampa solo i problemi più recenti di un timestamp specificato" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Rimozione '%s'" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Rimuovi PROBLEM_DIR dopo la notifica" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Rimozione '%s'" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Azioni: remove(rm), info(i), skip(s):" +@@ -2229,27 +2392,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Azioni: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Notifica '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Per il problema successivo premere ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Senza l'argomento --since, ripetere su tutti i problemi rilevati." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Seleziona solo i problemi rilevati dopo il timestamp" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ja.po b/po/ja.po +index de6991a..4a59702 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -16,126 +16,127 @@ + # Tomoyuki KATO , 2012-2013 + # carrotsoft , 2011, 2012 + # Noriko Mizumoto , 2015. #zanata ++# Ooyama Yosiyuki , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-08 11:11-0500\n" +-"Last-Translator: Noriko Mizumoto \n" ++"PO-Revision-Date: 2015-08-23 07:49-0400\n" ++"Last-Translator: Ooyama Yosiyuki \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ja/)\n" + "Language: ja\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "問題の報告" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "アプリケーションクラッシュの表示とレポート" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' の所有権を取得できません" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' を書き込むためのディレクトリを開くことができません" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "通知を閉じることができません: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "おっと!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "報告する" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "再開" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題は自動的に報告されています。" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題はインターネット利用可能時に自動的に報告されます。" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を報告したい場合は、開発者に連絡してください。" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." +-msgstr "" ++msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を解決したい場合は、報告を送ってください。" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +-msgstr "" ++msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題は自動的に報告されています。" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +-msgstr "" ++msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題はインターネット利用可能時に自動的に報告されます。" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +-msgstr "" ++msgstr "申し訳ございません、 問題が発生したようです。問題を解決したい場合は、報告を送ってください。" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "通知を表示できません: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio チャネルからの読み込みができません: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio チャネルでエンコーディングを設定できません: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio チャネルのノンブロッキングモードを有効にできません: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -144,6 +145,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "新しい問題が ABRT で検出されるとユーザーに通知するアプレットです\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -161,17 +173,15 @@ msgstr " " + msgid "Silent shortened reporting" + msgstr " " + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"coredump ファイルは、時間がかかりスペースを消費する操作であるスタックトレースの生成に必要です。ABRT は、coredump " +-"からスタックトレースを生成するサービスを提供しますが、coredump " +-"をこのサービスにアップロードする必要があります。このオプションを無効にすると、ABRT は尋ねることなく coredump をアップロードします。" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -214,29 +224,24 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "このオプションを有効にすると、ABRT は報告された問題の通知を表示しません。短縮形レポーティングが有効な場合にのみ、実行されます。" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump をアップロードする前に尋ねる" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "機密情報のプライベートチケットを要求する" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "完了していない問題を通知する" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -245,6 +250,22 @@ msgstr "" + "コンピューターのシャットダウン中またはユーザーのログアウト中に完了していない問題が検出されました。価値のある問題レポートを提出するため、ABRT " + "はユーザーによるこれらの問題の提出を許可しません。" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "閉じる (_C)" +@@ -270,14 +291,14 @@ msgstr "ABRT について" + msgid "Quit" + msgstr "終了" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -289,11 +310,11 @@ msgstr "" + msgid "Problem directory" + msgstr "問題ディレクトリ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "設定ファイル" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -307,24 +328,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [オプション]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM をクライアントの uid として使用する" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog にログする" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ログにプログラム名を追加する" + +@@ -332,60 +354,50 @@ msgstr "ログにプログラム名を追加する" + msgid "Unknown error" + msgstr "不明なエラーです" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "「%s」は有効な問題ディレクトリではありません" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' は有効なエレメント名ではありません" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' エレメントを修正できません" ++msgid "'%s' is not a valid problem directory" ++msgstr "「%s」は有効な問題ディレクトリではありません" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "権限がありません" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "問題にアクセスして修正できません" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' は有効なエレメント名ではありません" ++msgid "'%s' element can't be modified" ++msgstr "'%s' エレメントを修正できません" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' の容量を取得できません" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "残っている問題領域はありません" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "「%s」エレメントを問題ディレクトリの「%s」から削除できません" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -393,12 +405,12 @@ msgid "" + "is not running.\n" + msgstr "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "休止状態が NUM 秒以上続いた場合は終了します" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "このプログラムは root で実行しなければなりません" + +@@ -421,18 +433,22 @@ msgstr "デーモン化しない" + msgid "Log to syslog even with -d" + msgstr "-d オプションを使用するとログを syslog へ書き込みます" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT を DIR で実行する" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ユーザーと直接通信する" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -470,87 +486,88 @@ msgstr "同時実行ワーカー数。規定値は次のとおりです。" + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 単位の最大キャッシュ容量。規定値は次のとおりです。" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "認証をオフにする" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat サポートユーザー名" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support パスワード、入力しないとあとで入力が求められます" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 証明書パスまたは証明書タイプ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password には --username も指定してください" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "--username または --certificate のいずれかを使用します" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "--username または --anonymous のいずれかを使用します" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous または --certificate のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "引数の数が無効な数です" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "不明なオプション値です: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "パスワード:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "パスワードを入力しないと先に進めません\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 認証の自動報告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL クライアント認証の自動報告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonymous 自動報告" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -570,83 +587,83 @@ msgstr "" + " FILENAME - アップロード済みアーカイブファイル名\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ディレクトリではありません: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "スキップ中: '{0}' (スラッシュで開始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "スキップ中: '{0}' (ドットで開始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "スキップ中: '{0}' (.. を含む)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "スキップ中: '{0}' (空白を含む)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "スキップ中: '{0}' (タブを含む)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' にディレクトリを変更できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "不明なファイルタイプ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' に作業ディレクトリを作成できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' を '{1}' に移動できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' を '{1}' にコピーできません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' で確認エラー" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' を解凍中" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ディレクトリを作成できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' を解凍できません" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' が正常に処理されました" + +@@ -670,21 +687,29 @@ msgstr "'%s の chown ができません: %s" + msgid "Deleting problem directory failed: %s" + msgstr "問題ディレクトリの削除に失敗しました: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus から問題のデータを取り込めません: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus から問題の一覧を取りこめません: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus から問題のデータを取り込めません: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "abrt-dbus でエレメントが存在しているかどうかのテストができません : %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -727,7 +752,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s のバックトレース構文解析に失敗しました" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "クラッシュスレッドは見つかりませんでした" + +@@ -832,13 +857,45 @@ msgstr "ウップスメッセージを抽出できません: '{0}'" + msgid "Oops text extracted successfully" + msgstr "ウップステキストが正常に抽出されました" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "カーネルログではハードウェア関連のエラーが検出されたことが示されているため、\n" + "これはおそらくソフトウェアに関する問題ではないでしょう。\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -952,7 +1009,36 @@ msgstr "debuginfo ファイルがありません: {0}" + msgid "All debuginfo files are available" + msgstr "すべての debuginfo ファイルが利用可能です" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -961,7 +1047,7 @@ msgstr "" + "コアダンプをアップロードしてもよいですか (これには機密情報が含まれている可能性があります) " + "?「いいえ」の場合にはスタックトレースがローカルに生成されます (これにより大量のデータがダウンロードされる可能性があります)。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1029,7 +1115,7 @@ msgstr "uReport はすでに送信されているので、再送信されませ + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "既知のBugzilla バグの CC リストにあなたを追加する" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:193 +@@ -1194,7 +1280,8 @@ msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation と同じです、 DumpLocation は abrt.conf で指定します" + +@@ -1204,16 +1291,18 @@ msgstr "抽出した情報を PROBLEM に保存します" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "問題ディレクトリを誰でも見れるようにします" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "問題のディレクトリの作成を毎秒 1 個に制限" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "検索文字列を標準出力に表示して終了" + +@@ -1223,9 +1312,13 @@ msgstr "検索文字列を標準出力に表示して終了" + msgid "Failed to compile regex" + msgstr "regex のコンパイルに失敗しました" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "問題を更新できません: 複数のウップスが見つかりました" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1244,6 +1337,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1263,15 +1357,17 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "検出されるコアダンプごと DIR 内に新規の問題ディレクトリを作成します" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1285,37 +1381,43 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "systemd-journal を開けません" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" +-msgstr "" ++msgstr "ジャーナルの最後までシークできません" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "" ++msgstr "systemd-journal cursor '%s' を設定できませんでした" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." +-msgstr "" ++msgstr "ジャーナルデータを読めません" + + #: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" +@@ -1332,14 +1434,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1348,12 +1453,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1362,58 +1513,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (または標準入力) から Xorg クラッシュを抽出します" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "発見したクラッシュデータを標準出力に表示する" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "検出されるクラッシュごと DIR 内に問題ディレクトリを作成します" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1500,7 +1655,7 @@ msgstr "Retrace サーバーを使用するには '%s' が普通のファイル + msgid "" + "The size of your crash is %s, but the retrace server only accepts crashes " + "smaller or equal to %s." +-msgstr "" ++msgstr "クラッシュサイズは %s ですが、リトレースサーバーで受け取れるクラッシュサイズは %s か、それ以下のサイズになります。" + + #: ../src/plugins/abrt-retrace-client.c:540 + msgid "The server does not support xz-compressed tarballs." +@@ -1528,12 +1683,12 @@ msgstr "アップロードするアーカイブを準備中" + msgid "" + "The size of your archive is %s, but the retrace server only accepts archives " + "smaller or equal to %s." +-msgstr "" ++msgstr "アーカイブのサイズは %s ですが、リトレースサーバーで受け取れるアーカイブのサイズは %s か、それ以下のサイズになります。" + + #: ../src/plugins/abrt-retrace-client.c:640 + #, c-format + msgid "You are going to upload %s. Continue?" +-msgstr "" ++msgstr "%s をアップロードしようとしています。継続しますか?" + + #: ../src/plugins/abrt-retrace-client.c:649 + msgid "Cancelled by user" +@@ -1542,7 +1697,7 @@ msgstr "ユーザーにより取り消されました" + #: ../src/plugins/abrt-retrace-client.c:683 + #, c-format + msgid "Uploading %s\n" +-msgstr "" ++msgstr "%s をアップロード中 \n" + + #: ../src/plugins/abrt-retrace-client.c:709 + #, c-format +@@ -1927,19 +2082,19 @@ msgstr "NSS のシャットダウンに失敗しました。" + msgid "Sleeping for %d seconds" + msgstr "%d 秒スリープします" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "BIOS が破損しているためカーネル関連の問題が発生しました。残念ながら、このような問題はカーネルのメンテナーでは修正できません。" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "カーネル関連の問題が発生しましたが、お使いのハードウェアはサポートされていないため、カーネルメンテナーは問題の修正ができません。" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1947,24 +2102,24 @@ msgid "" + msgstr "" + "カーネル関連の問題が発生しましたが、カーネル自体が破損しています (フラグ:%s)。破損したレポートの診断はカーネルメンテナーでは行なえません。" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "破損モジュール: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "バグ id の一覧" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "bodhi サーバーの url を指定する" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "リリースを指定する" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1974,20 +2129,20 @@ msgstr "" + "\n" + "bodhi サーバー上で更新を検索します" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "更新の検索中" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "このパッケージ用の更新は見つかりませんでした" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "このパッケージは、利用可能な更新よりローカルバージョンの方が新しいものになります" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2012,67 +2167,68 @@ msgstr "検出した oops を表示" + msgid "Delete files with found oopses" + msgstr "検出した oops を含んでいるファイルを削除" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' が複数の問題ディレクトリを確認しました" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "使い方: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "問題を一覧表示する [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "DIR 問題ディレクトリを削除する" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR 内の問題データを分析、 報告する" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR に関する情報を出力する" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "最新のクラッシュ回数を表示する" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "複数の問題を処理する" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "詳細については abrt-cli COMMAND --help を参照してください" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "報告されていない問題のみを表示する" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "詳細報告を表示する" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "指定したタイムスタンプより新しい問題のみを表示します" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "指定したタイムスタンプよりも古い問題のみを表示します" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2082,53 +2238,63 @@ msgstr "" + "自動報告機能は無効になっています。root の特権を持つユーザーで\n" + "'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [オプション] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "これより大きなテキストは要約して表示されます" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "そのような問題ディレクトリ '%s' はありません" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "問題の件数のみを表示し、メッセージは表示しません" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "指定されたタイムスタンプよりも新しい問題のみを表示する" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT により %u 件の問題が検出されました。次を実行して詳細を確認してください: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' を削除中" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "レポート後に PROBLEM_DIR を削除します" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' を削除中" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" +@@ -2139,27 +2305,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "アクション: 削除(rm), レポート(e), 情報(i), スキップ(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' をレポート中" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "次の問題に移るには、ENTER を押します:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since 引数がないと、すべての検出済み問題を繰り返します。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "タイムスタンプ後に検出された問題のみを選択します" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ka.po b/po/ka.po +index 3c168a1..76c2da6 100644 +--- a/po/ka.po ++++ b/po/ka.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ka/)\n" + "Language: ka\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ანგარიში" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "კონფიგურაციის ფაილი" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "ჟურნალირება syslog-ში" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "მიუთითეთ bodhi სერვერის url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "მიუთითეთ რელიზი" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "განახლებების მოძებნა" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ამ პაკეტისთვის განახლებები არ არის" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "დეტალური ანგარიშის ჩვენება" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/km.po b/po/km.po +index 3af0d2e..84bb1b1 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -1,220 +1,179 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: ++# Leap Sok , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-06 13:44+0200\n" +-"PO-Revision-Date: 2014-10-06 11:45+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-11-01 12:29-0400\n" ++"Last-Translator: Leap Sok \n" ++"Language-Team: Khmer\n" + "Language: km\n" +-"Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.8.2\n" ++"Plural-Forms: nplurals=1; plural=0\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgid "Problem Reporting" ++msgstr "រាយការណ៍អំពីបញ្ហា" + + #: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../src/applet/applet.c:129 +-msgid "" +-"The report which will be sent does not contain any security sensitive data. " +-"Therefore it is not necessary to bother you next time and require any " +-"further action by you. \n" +-msgstr "" +- +-#: ../src/applet/applet.c:135 +-msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgid "View and report application crashes" ++msgstr "មើលនិងរាយការណ៍ពីកម្មវិធី​ដែលបានគាំង" + +-#: ../src/applet/applet.c:140 +-msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "" ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "មិនអាចយកភាពជាម្ចាស់នៃ'%s'" + +-#. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:241 ++#: ../src/applet/applet.c:268 + #, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" ++msgid "Can't open directory for writing '%s'" ++msgstr "​កញ្ចប់ឯកសារមិនអាចអានបាន'%s'" + +-#: ../src/applet/applet.c:265 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" ++msgid "Can't close notification: %s" ++msgstr "មិនអាចបិទការជូនដំណឹង:'%s'" + +-#: ../src/applet/applet.c:384 +-msgid "A problem has been detected" +-msgstr "" ++#: ../src/applet/applet.c:598 ++msgid "Oops!" ++msgstr "អូ!" + +-#: ../src/applet/applet.c:386 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" ++#: ../src/applet/applet.c:616 ++msgid "Report" ++msgstr "របាយការណ៍" + +-#: ../src/applet/applet.c:396 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++#: ../src/applet/applet.c:625 ++msgid "Restart" ++msgstr " ការចាប់ផ្តើមសារឡើងវិញ" + +-#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 +-#: ../src/plugins/abrt-retrace-client.c:168 ++#: ../src/applet/applet.c:694 + #, c-format +-msgid "Can't execute '%s'" ++msgid "" ++"We're sorry, it looks like %s crashed. The problem has been automatically " ++"reported." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " ++"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" + +-#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 ++#: ../src/applet/applet.c:699 + #, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:675 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" +-"\n" +-"Do you want to continue?" ++"We’re sorry, it looks like %s crashed. The problem will be reported when the " ++"internet is available." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " ++"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" + +-#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:803 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 ++#, c-format + msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:819 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:827 +-msgid "_Quit" ++"We're sorry, it looks like %s crashed. Please contact the developer if you " ++"want to report the issue." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " ++"សូមទាក់ទងអ្នកបង្កើតកម្មវិធីបើអ្នកចង់រាយការណ៍ពីបញ្ហានេះ។" + +-#: ../src/applet/applet.c:829 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:831 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:899 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:949 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "A Known Problem has Occurred" +-msgstr "" +- +-#. Problem has not yet been 'autoreported' and can be +-#. * 'autoreported' on user request. +-#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 +-msgid "Report" ++#: ../src/applet/applet.c:713 ++#, c-format ++msgid "" ++"We're sorry, it looks like %s crashed. If you'd like to help resolve the " ++"issue, please send a report." + msgstr "" ++"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " ++"សូមផ្ញើរបាយការណ៍។" + +-#: ../src/applet/applet.c:989 +-msgid "A Problem has Occurred" ++#: ../src/applet/applet.c:732 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"has been automatically reported." + msgstr "" ++"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។​​​​​​​​ " ++"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" + +-#: ../src/applet/applet.c:1015 +-msgid "A Problem has been Reported" ++#: ../src/applet/applet.c:736 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"will be reported when the internet is available." + msgstr "" ++"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។ " ++"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" + +-#: ../src/applet/applet.c:1023 +-msgid "A New Problem has Occurred" ++#: ../src/applet/applet.c:741 ++msgid "" ++"We're sorry, it looks like a problem occurred. If you'd like to help resolve " ++"the issue, please send a report." + msgstr "" ++"យើងសូមទោស, បញ្ហាដូចជាត្រូវបានកើតឡើង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " ++"សូមផ្ញើរបាយការណ៍។" + +-#: ../src/applet/applet.c:1033 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "មិនអាចផ្តល់ការជូនដំណឹង: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "មិនអាចអានពីឆានែលgio: '%s'" + +-#: ../src/applet/applet.c:1151 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "មិនអាចកំណត់ការបម្លែងកូដនៅលើឆានែលgio: '%s'" + +-#: ../src/applet/applet.c:1155 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1189 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "មិនអាចបើក nonblocking mode សម្រាប់ឆានែលgio: %s" + +-#: ../src/applet/applet.c:1198 +-#, c-format +-msgid "Can't open directory for writing '%s'" ++#: ../src/applet/applet.c:1186 ++msgid "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" ++"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" + +-#: ../src/applet/applet.c:1481 +-#, c-format ++#: ../src/configuration-gui/abrt-config-widget.c:483 + msgid "" +-"Failed to open connection to session manager: '%s', notification may " +-"reappear on the next login" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." + msgstr "" + +-#: ../src/applet/applet.c:1622 +-msgid "" +-"& [-v] [DIR]...\n" +-"\n" +-"Applet which notifies user when new problems are detected by ABRT\n" ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "សួរមុនពេលបានយកកញ្ចប់ឯកសារ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "ទទួលផ្ញើ uReport ដោយស្វ័យប្រវត្តិ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "របាយការណ៍សង្ខេបឱ្យខ្លី" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "របាយការណ៍គ្មានសំលេងសង្ខេបខ្លី" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +187,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -247,30 +206,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -296,16 +267,17 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:388 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:400 ++#: ../src/daemon/abrt-action-save-package-data.c:406 ++#: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -314,123 +286,143 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:401 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-action-save-package-data.c:408 ++msgid "Use this directory as RPM root" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:199 ++msgid "& [-v] -d DIR\n" ++"\n" ++"Save container metadata" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:211 ++msgid "Root directory for running container commands" ++msgstr "" ++ ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 +-#: ../src/plugins/abrt-dump-journal-oops.c:302 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 ++#: ../src/plugins/abrt-dump-journal-core.c:477 ++#: ../src/plugins/abrt-dump-journal-oops.c:219 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 ++#: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:389 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" provide valuable problem reports, ABRT will not allow you to submit this " +-"problem. If you have time and want to help the developers in their effort to" +-" sort out this problem, please contact them directly." ++"detected while computer is shutting down or user is logging out. In order to " ++"provide valuable problem reports, ABRT will not allow you to submit this " ++"problem. If you have time and want to help the developers in their effort to " ++"sort out this problem, please contact them directly." + msgstr "" + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" + msgstr "" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -460,20 +452,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:234 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:235 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:236 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:252 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:258 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:264 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:270 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-auto-reporting.c:336 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:339 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:380 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:382 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:384 ++msgid "anonymous auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -485,68 +531,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -570,16 +616,30 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -606,19 +666,21 @@ msgid "" + "and identifies crash function in problem directory DIR" + msgstr "" + ++#. + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. ++#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -691,8 +753,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -704,12 +765,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -727,6 +820,7 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. ++#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -761,60 +855,99 @@ msgstr "" + msgid "Exiting on user command" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 ++#: ../src/plugins/abrt-action-install-debuginfo.in:89 + #, c-format + msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" + "to CACHEDIR, using TMPDIR as temporary staging area.\n" + "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" + "\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" + " -v Be verbose\n" + " -y Noninteractive, assume 'Yes' to all questions\n" + " --ids Default: build_ids\n" +-" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" ++" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" + " --cache Default: /var/cache/abrt-di\n" + " --size_mb Default: 4096\n" ++" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 ++#: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 ++#: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 ++#: ../src/plugins/abrt-action-install-debuginfo.in:215 + msgid "{0} of debuginfo files are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 ++#: ../src/plugins/abrt-action-install-debuginfo.in:234 ++#, c-format ++msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 ++#: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 ++#: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -824,7 +957,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -840,38 +974,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:40 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:51 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:80 ++#: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:100 ++#: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:128 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:138 ++#: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:159 ++#: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:164 ++#: ../src/plugins/abrt-action-ureport:193 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +@@ -1005,116 +1139,168 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:76 ++#: ../src/plugins/abrt-dump-oops.c:77 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:97 +-#: ../src/plugins/abrt-dump-journal-oops.c:303 ++#: ../src/plugins/abrt-dump-oops.c:98 ++#: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#: ../src/plugins/abrt-dump-oops.c:101 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#. ++#: ../src/plugins/abrt-dump-oops.c:102 ++#: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:102 +-#: ../src/plugins/abrt-dump-journal-oops.c:308 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-journal-core.c:479 ++#: ../src/plugins/abrt-dump-journal-oops.c:225 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-oops.c:104 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:104 +-#: ../src/plugins/abrt-dump-journal-oops.c:309 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:105 ++#: ../src/plugins/abrt-dump-journal-oops.c:226 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:105 +-#: ../src/plugins/abrt-dump-journal-oops.c:310 ++#: ../src/plugins/abrt-dump-oops.c:106 ++#: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:126 +-#: ../src/plugins/abrt-dump-journal-oops.c:214 ++#: ../src/plugins/abrt-dump-oops.c:127 ++#: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:185 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:43 +-msgid "Cannot read journal data." ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + +-#. Only notice because this is expected +-#: ../src/plugins/abrt-dump-journal-oops.c:125 +-#, c-format +-msgid "Not restoring journal watch's position: file '%s' does not exist" ++#: ../src/plugins/abrt-dump-journal-core.c:341 ++#: ../src/plugins/abrt-dump-journal-core.c:377 ++msgid "Failed to obtain all required information from journald" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:129 ++#. We don't want to update the counter here. ++#: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format +-msgid "Cannot restore journal watch's position form file '%s'" ++msgid "Not saving repeating crash after %ds (limit is %ds)" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:135 +-#, c-format +-msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++#: ../src/plugins/abrt-dump-journal-core.c:407 ++msgid "Failed to save detect problem data in abrt database" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:141 +-#, c-format ++#: ../src/plugins/abrt-dump-journal-core.c:427 ++#: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 ++msgid "Failed to initialize systemd-journal watch" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +-"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extract coredumps from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:149 +-#, c-format +-msgid "Cannot restore journal watch's position: open('%s')" ++#: ../src/plugins/abrt-dump-journal-core.c:478 ++msgid "Create new problem directory in DIR for every coredump" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:158 +-#, c-format +-msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:480 ++#: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 ++msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:170 +-#, c-format +-msgid "Failed to move the journal to a cursor from file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:481 ++#: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 ++msgid "Start reading systemd-journal from the end" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:185 +-msgid "Cannot save journal watch's position" ++#: ../src/plugins/abrt-dump-journal-core.c:482 ++msgid "Throttle problem directory creation to 1 per INT second" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:483 ++msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:484 ++#: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 ++msgid "Follow systemd-journal from the last seen position (if available)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:495 ++#: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 ++msgid "You need to specify either -c CURSOR or -e" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:541 ++#: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 ++msgid "Cannot open systemd-journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:544 ++msgid "Cannot filter systemd-journal to systemd-coredump data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 ++msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:195 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format +-msgid "Cannot save journal watch's position: open('%s')" ++msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:251 +-msgid "Failed to initialize systemd-journal watch" ++#: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 ++msgid "Cannot read journal data." + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:272 ++#: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" + "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" + "\n" +@@ -1128,59 +1314,144 @@ msgid "" + "The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:311 +-msgid "Start reading systemd-journal from the CURSOR position" ++#: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 ++msgid "Read journal files from all machines" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:312 +-msgid "Start reading systemd-journal from the end" ++#: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 ++msgid "Read all journal files from directory at PATH" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:313 +-msgid "Follow systemd-journal from the last seen position (if available)" ++#: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 ++#, c-format ++msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:327 +-msgid "You need to specify either -c CURSOR or -e" ++#: ../src/plugins/abrt-dump-journal-oops.c:288 ++msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:356 +-msgid "Cannot open systemd-journal" ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 ++#, c-format ++msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:359 +-msgid "Cannot filter systemd-journal to kernel data only" ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:362 +-msgid "Cannot seek to the end of journal" ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:369 +-#, c-format +-msgid "Failed to start watch from cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:378 +-#, c-format +-msgid "Failed to set systemd-journal cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:274 ++msgid "Cannot save journal watch's position" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:284 ++#, c-format ++msgid "Cannot save journal watch's position: open('%s')" ++msgstr "" ++ ++#. Only notice because this is expected ++#: ../src/plugins/abrt-journal.c:302 ++#, c-format ++msgid "Not restoring journal watch's position: file '%s' does not exist" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:304 ++#, c-format ++msgid "Cannot restore journal watch's position form file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:311 ++#, c-format ++msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:317 ++#, c-format ++msgid "" ++"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:325 ++#, c-format ++msgid "Cannot restore journal watch's position: open('%s')" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:334 ++#, c-format ++msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:346 ++#, c-format ++msgid "Failed to move the journal to a cursor from file '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " +@@ -1189,12 +1460,19 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: ++#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " + msgstr "" + ++#: ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/plugins/abrt-retrace-client.c:168 ++#, c-format ++msgid "Can't execute '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:677 +@@ -1211,8 +1489,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1011 + #: ../src/plugins/abrt-retrace-client.c:1070 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1281,8 +1558,8 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:628 + #, c-format + msgid "" +-"The size of your archive is %s, but the retrace server only accepts archives" +-" smaller or equal to %s." ++"The size of your archive is %s, but the retrace server only accepts archives " ++"smaller or equal to %s." + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:640 +@@ -1343,8 +1620,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:808 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1354,8 +1630,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1471,8 +1746,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1481,11 +1756,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1506,9 +1781,9 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1596,133 +1871,140 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +-#: ../src/plugins/oops-utils.c:71 ++#: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:205 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:210 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:225 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:233 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1740,114 +2022,126 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:127 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:66 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1856,24 +2150,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -1886,8 +2335,8 @@ msgid "" + "user doesn't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1944,8 +2393,8 @@ msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" +-"Checks if there are .vimrc and .gvimrc in your home directory and saves them" +-" as user_vimrc and user_gvimrc, respectively." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/kn.po b/po/kn.po +index c122d05..a202a7f 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -24,7 +24,7 @@ msgstr "" + "language/kn/)\n" + "Language: kn\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -34,103 +34,103 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ವರದಿ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ಮಾರ್ಗದಿಂದ ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -140,6 +140,17 @@ msgstr "" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ಕೋಶವನ್ನು ಕಸಿದುಕೊಳ್ಳುವ ಮೊದಲು ಕೇಳು" +@@ -161,13 +172,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"ಕೋರ್‌ಡಂಪ್ ಕಡತವು ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸಲು ಅಗತ್ಯವಿರುತ್ತದೆ ಆದರೆ ಇದಕ್ಕಾಗಿ " +-"ಹೆಚ್ಚಿನ ಸಮಯ ಹಾಗು ಸ್ಥಳವು ಬೇಕಿರುತ್ತದೆ. ABRT ಯು ಕೋರ್‌ಡಂಪ್‌ನಿಂದ ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ " +-"ಅನ್ನು ಉತ್ಪಾದಿಸುವ ಒಂದು ಸೇವೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ ಆದರೆ ಈ ಸೇವೆಗಾಗಿ ನೀವು ಕೋರ್‌ಡಂಪ್ " +-"ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT " +-"ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -215,10 +223,6 @@ msgstr "" + "ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಲ್ಲಿ ಮಾತ್ರ ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ನನ್ನನ್ನು ಕೇಳು" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -226,15 +230,15 @@ msgstr "" + "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು, ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯು ಕಂಡುಬಂದಲ್ಲಿ " + "ಯಾವಾಗಲೂ ಸಹ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಹೊಂದಿರುವ ದೋಷದ ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಗಾಗಿ ಖಾಸಗಿ ಟಿಕೆಟ್‌ಗಾಗಿನ ಮನವಿ" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "ಅಪೂರ್ಣವಾದ ಸಮಸ್ಯೆಗಳನ್ನು ಸೂಚಿಸು" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -244,6 +248,22 @@ msgstr "" + "ಸಮಸ್ಯೆಗಲು ಕಂಡುಬರಬಹುದು. ಮೌಲ್ಯಯುತವಾದ ಸಮಸ್ಯೆಯ ವರದಿಗಳನ್ನು ಒದಗಿಸಲು, ABRT ಈ " + "ಸಮಸ್ಯೆಗಳನ್ನು ಸಲ್ಲಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "ಮುಚ್ಚು (_C)" +@@ -269,14 +289,14 @@ msgstr "ಕುರಿತು" + msgid "Quit" + msgstr "ನಿರ್ಗಮಿಸು" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -288,11 +308,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ತೊಂದರೆಯ ಕೋಶ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ಸಂರಚನಾ ಕಡತ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -306,24 +326,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ಆಯ್ಕೆಗಳು]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM ಅನ್ನು ಕ್ಲೈಂಟ್ uid ಆಗಿ ಬಳಸು" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog ಗೆ ದಾಖಲಿಸು" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು ದಾಖಲೆಗೆ ಸೇರಿಸು" + +@@ -331,62 +352,52 @@ msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು + msgid "Unknown error" + msgstr "ಗೊತ್ತಿರದ ದೋಷ" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ಅಧಿಕಾರವಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ಮಾರ್ಪಡಿಸುವ ಸಲುವಾಗಿ ತೊಂದರೆಯನ್ನು ತಲುಪಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ಕೋಶವನ್ನು chown ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ವ್ಯವಸ್ಥೆಯ " + "ದಾಖಲೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ಗಾತ್ರವನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ಯಾವುದೆ ತೊಂದರೆ ಸ್ಥಳವು ಉಳಿದಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' ಘಟಕವನ್ನು '%s' ತೊಂದರೆಯ ಕೋಶದಿಂದ ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -396,12 +407,12 @@ msgstr "" + "'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು " + "ಪರೀಕ್ಷಿಸಿ.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ಸೆಕೆಂಡುಗಳ ನಿಷ್ಕ್ರಿಯತೆಯ ನಂತರ ನಿರ್ಗಮಿಸು" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ಈ ಪ್ರೊಗ್ರಾಮ್ ಅನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ಚಲಾಯಿಸಬೇಕು." + +@@ -427,18 +438,22 @@ msgstr "ಡೆಮನ್‌ ಆಗಿ ಮಾಡಬೇಡ" + msgid "Log to syslog even with -d" + msgstr "-d ಯೊಂದಿಗೂ ಸಹ syslog ಗೆ ದಾಖಲಿಸಿ" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR ನಲ್ಲಿ EVENT ಅನ್ನು ಚಲಾಯಿಸಿ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ಬಳಕೆದಾರರೊಂದಿಗೆ ನೇರವಾಗಿ ವ್ಯವಹರಿಸು" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -479,89 +494,90 @@ msgstr "ಏಕಕಾಲದ ಕೆಲಸಗಾರರ ಸಂಖ್ಯೆ. ಪೂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ಕ್ಯಾಶೆಯ ಗರಿಷ್ಟ ಗಾತ್ರ, MiB ಯಲ್ಲಿ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ದೃಢೀಕರಣವನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat ಸಪೋರ್ಟ್‌ನ ಬಳಕೆದಾರ ಹೆಸರು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ಸಪೋರ್ಟ್‌ಗಾಗಿನ ಗುಪ್ತಪದ, ನೀಡಲಾಗಿರದೆ ಇದ್ದರೆ, ಒಂದು ಪ್ರಾಂಪ್ಟ್ ಅನ್ನು " + "ನೀಡಲಾಗುತ್ತದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ಪ್ರಮಾಣಪತ್ರದ ಮಾರ್ಗಗಳು ಅಥವ ಪ್ರಮಾಣಪತ್ರದ ಬಗೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password ಕ್ಕಾಗಿ ನೀವು --username ಅನ್ನೂ ಸಹ ಒದಗಿಸಬೇಕು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "ನೀವು --username ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "ನೀವು --username ಮತ್ತು --anonymous ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "ನೀವು --anonymous ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳ ಸಂಖ್ಯೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "ಗುಪ್ತಪದ:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "ಗುಪ್ತಪದವಿಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ಯು ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ಕ್ಲೈಂಟ್‌ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "ಅನಾಮಧೇಯವಾಗಿ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -582,83 +598,83 @@ msgstr "" + " FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ಒಂದು ಕೋಶವಲ್ಲ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಚುಕ್ಕಿಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (.. ಅನ್ನು ಹೊಂದಿದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಖಾಲಿಸ್ಥಳವನ್ನು ಹೊಂದಿದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಟ್ಯಾಬ್ ಅನ್ನು ಹೊಂದಿದೆ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ಕೋಶವನ್ನು '{0}' ಗೆ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "ಗೊತ್ತಿರದ ಕಡತದ ಬಗೆ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ನಲ್ಲಿ ಕೆಲಸ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಸ್ಥಳಾಂತರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಪ್ರತಿಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ನಲ್ಲಿ ಪರಿಶೀಲನಾ ದೋಷ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ಅನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ನಲ್ಲಿ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ಅನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸಂಸ್ಕರಿಸಲಾಗಿದೆ" + +@@ -682,18 +698,26 @@ msgstr "'%s' ಅನ್ನು chown ಮಾಡಲಾಗಿಲ್ಲ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ತೊಂದರೆಯ ಕೋಶವನ್ನು ಅಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -742,7 +766,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s ಗಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಪಾರ್ಸಿಂಗ್ ವಿಫಲಗೊಂಡಿದೆ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ಕುಸಿತದ ಎಳೆಯು (ತ್ರೆಡ್‌) ಕಂಡುಬಂದಿಲ್ಲ" + +@@ -850,7 +874,7 @@ msgstr "ಸಂದೇಶವನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ + msgid "Oops text extracted successfully" + msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊರತೆಗೆಯಲಾಗಿದೆ" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -858,6 +882,38 @@ msgstr "" + "ಯಂತ್ರಾಂಶ ದೋಷಗಳು ಕಂಡುಬಂದಿವೆ ಎಂದು ಕರ್ನಲ್ ಲಾಗ್ ಸೂಚಿಸಿದೆ.\n" + "ಇದು ಬಹುಷಃ ತಂತ್ರಾಂಶದ ತೊಂದರೆಯಾಗಿಲ್ಲ.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -975,7 +1031,36 @@ msgstr "debuginfo ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" + msgid "All debuginfo files are available" + msgstr "debuginfo ಕಡತಗಳಿಗಾಗಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -985,7 +1070,7 @@ msgstr "" + "ನಿಮ್ಮ ಉತ್ತರವು 'ಇಲ್ಲ' ಆಗಿದ್ದಲ್ಲಿ, ಸ್ಥಳೀಯವಾಗಿ ಒಂದು ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್‌ ಅನ್ನು " + "ಉತ್ಪಾದಿಸಲಾಗುತ್ತದೆ. (ಇದು ದೊಡ್ಡ ಮೊತ್ತದ ದತ್ತಾಂಶವನ್ನು ಇಳಿಸಿಕೊಳ್ಳಬಹುದು)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1227,7 +1312,8 @@ msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation ನಂತೆಯೆ, abrt.conf ನಲ್ಲಿ DumpLocation ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" +@@ -1238,16 +1324,18 @@ msgstr "ಹೊರತೆಗೆಯಲಾದ ಮಾಹಿತಿಯನ್ನು PROB + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ದೋಷದ ಕೋಶವನ್ನು ಜಗತ್ತು ಓದುವ ರೀತಿಯಲ್ಲಿ ಮಾಡಿ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ತೊಂದರೆ ಕೋಶದ ರಚನೆಯು ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ 1 ಇರುವಂತೆ ಹತೋಟಿಯಲ್ಲಿಡು" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ನು) stdout ಗೆ ಮುದ್ರಿಸು ಮತ್ತು ನಿರ್ಗಮಿಸು" + +@@ -1257,10 +1345,13 @@ msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ + msgid "Failed to compile regex" + msgstr "regex ಅನ್ನು ಕಂಪೈಲ್ ಮಾಡಲು ವಿಫಲಗೊಂಡಿದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1279,6 +1370,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1302,11 +1394,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1320,16 +1414,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1337,18 +1434,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1367,14 +1467,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1383,12 +1486,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1398,58 +1547,62 @@ msgstr "" + "\n" + "Xorg ಕುಸಿತವನ್ನು FILE (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್‌) ಇಂದ ಹೊರತೆಗೆ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "ಕಂಡು ಬಂದ ಕುಸಿತದ ದತ್ತಾಂಶವನ್ನು ಶಿಷ್ಟವಾದ ಔಟ್‌ಪುಟ್‌ಗೆ ಮುದ್ರಿಸು" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಕುಸಿತ ಕೋಶವನ್ನು ರಚಿಸು" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1991,7 +2144,7 @@ msgstr "NSS ಅನ್ನು ಸ್ಥಗಿತಗೊಳಿಸಲು ವಿಫಲ + msgid "Sleeping for %d seconds" + msgstr "%d ಸೆಕೆಂಡುಗಳವರೆಗೆ ಜಡವಾಗಿರುತ್ತದೆ" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1999,7 +2152,7 @@ msgstr "" + "ಹಾಳಾಗಿರುವ BIOS ಕಾರಣದಿಂದಾಗಿ ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಕಾಣಿಸಿಕೊಂಡಿದೆ. ದುರದೃಷ್ಟವಶಾತ್, " + "ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2007,7 +2160,7 @@ msgstr "" + "ಕರ್ನಲ್ ತೊಂದರೆ ಉಂಟಾಗಿದೆ, ಆದರೆ ನಿಮ್ಮ ಯಂತ್ರಾಂಶವು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ, ಆದ್ದರಿಂದ ಆ " + "ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2016,24 +2169,24 @@ msgstr "" + "ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಎದುರಾಗಿದೆ, ಆದರೆ ಕರ್ನಲ್‌ಗೆ ಸೋಂಕು ಹಿಡಿದಿದೆ (flags:%s). " + "ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕರಿಂದ ಸೋಂಕು ವರದಿಗಳನ್ನು ತಪಾಸಣೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " ಪರವಾನಗಿ ಸರಿ ಇರದ ಮಾಡ್ಯೂಲ್‌ಗಳು: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ದೋಷದ idಗಳ ಪಟ್ಟಿ" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ಒಂದು ಬೋಧಿ ಪೂರೈಕೆಗಣಕ url ಅನ್ನು ಸೂಚಿಸಿ" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ಒಂದು ಬಿಡುಗಡೆಯನ್ನು ಸೂಚಿಸಿ" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2043,22 +2196,22 @@ msgstr "" + "\n" + "ಬೋಧಿ ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ಈ ಪ್ಯಾಕೇಜಿಗೆ ಯಾವುದೆ ಅಪ್‌ಡೇಟ್‌ಗಳಿಲ್ಲ" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "ಪ್ಯಾಕೇಜಿನ ಸ್ಥಳೀಯ ಆವೃತ್ತಿಯು ಲಭ್ಯವಿರುವ ಅಪ್‌ಡೇಟ್‌ನ ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗಿಂತ " + "ಹೊಸತಾಗಿದೆ" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2087,69 +2240,70 @@ msgstr "ಕಂಡುಬಂದ oopses ಅನ್ನು ಮುದ್ರಿಸು" + msgid "Delete files with found oopses" + msgstr "ಕಂಡುಬಂದ oopses ಗಳಿಂದ ಕಡತಗಳನ್ನು ಅಳಿಸು" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ತೊಂದರೆ ಕೋಶವನ್ನು ಗುರುತಿಸುತ್ತದೆ" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ಬಳಕೆ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "ತೊಂದರೆಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು [DIR ಗಳಲ್ಲಿ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ತೊಂದರೆಯ ಕೋಶ DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "ತೊಂದರೆಯ ಮಾಹಿತಿಯನ್ನು DIR ನಲ್ಲಿ ವಿಶ್ಲೇಷಿಸು ಹಾಗು ವರದಿ ಮಾಡು" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಮುದ್ರಿಸು" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯನ್ನು ಮುದ್ರಿಸಲಾಗುತ್ತಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ಅನೇಕ ತೊಂದರೆಗಳನ್ನು ಸಂಸ್ಕರಿಸಿ" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "ವರದಿ-ಮಾಡದೆ ಇರುವ ತೊಂದರೆಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "ವಿವರವಾದ ವರದಿಯನ್ನು ತೋರಿಸು" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ " + "ತೋರಿಸು" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2160,57 +2314,67 @@ msgstr "" + "ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\n" + "ಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ಇದಕ್ಕಿಂತ ದೊಡ್ಡದಾದ ಪಠ್ಯವನ್ನು ಸಂಕ್ಷೇಪವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ಅಂತಹ ಯಾವುದೆ ತೊಂದರೆ ಕೋಶ'%s' ಇಲ್ಲ" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "ಯಾವುದೆ ಸಂದೇಶವಿಲ್ಲದೆ ಕೇವಲ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ ಮುದ್ರಿಸು" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ " + "ಮುದ್ರಿಸು" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ಗೆ %u ತೊಂದರೆ(ಗಳು) ಕಂಡುಬಂದಿದೆ. (ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಇದನ್ನು ಚಲಾಯಿಸಿ: abrt-" + "cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "ಮತ್ತು ವರದಿ [ಆಯ್ಕೆಗಳು] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "ವರದಿ ಮಾಡಿದ ನಂತರ PROBLEM_DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), info(i), skip(s):" +@@ -2221,28 +2385,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' ಅನ್ನು ವರದಿ ಮಾಡಲಾಗುತ್ತಿದೆ" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ಮುಂದಿನ ಸಮಸ್ಯೆಗಾಗಿ ENTER ಅನ್ನು ಒತ್ತಿ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ಈ ಸಮಯಮುದ್ರೆಯ ನಂತರ ಕಂಡುಬಂದ ಸಮಸ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಆರಿಸು" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ko.po b/po/ko.po +index 340ca29..ab62425 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -9,126 +9,127 @@ + # Jiří Moskovčák , 2011 + # , 2011-2012 + # , 2011-2012, 2013 ++# MinWoo Joh , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-07-30 11:38-0400\n" ++"Last-Translator: MinWoo Joh \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ko/)\n" + "Language: ko\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "문제 보고" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "애플리케이션 충돌을 확인 및 보고합니다" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'의 소유 권한을 갖을 수 없음 " + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "통지를 종료할 수 없음: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "보고 " + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "재시작" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 문제는 자동으로 보고됩니다." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 문제를 보고하려면 개발자에게 문의하십시오." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." +-msgstr "" ++msgstr "죄송합니다. %s 가 충돌했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +-msgstr "" ++msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 문제는 자동으로 보고되었습니다." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +-msgstr "" ++msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +-msgstr "" ++msgstr "죄송합니다. 문제가 발생했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "통지를 표시할 수 없음: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio 채널에서 읽을 수 없음: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio 채널에서 인코딩을 설정할 수 없음: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio 채널의 비 차단 모드를 활성화할 수 없습니다: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +138,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "ABRT가 새로운 문제를 감지할 경우 사용자에게 통지하는 애플릿\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -157,17 +169,15 @@ msgstr "단축형 보고서 " + msgid "Silent shortened reporting" + msgstr "자동 단축형 보고서 " + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"코어 덤프 파일은 시간 및 공간을 많이 사용하는 작업인 스택 트레이스 생성에 필요합니다. ABRT는 코어덤프에서 스택 트레이스를 생성하는 " +-"서비스를 제공하지만 이 서비스에 코어 덤프를 업로드해야 합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 코어 덤프를 업로드합니다." +-" " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -208,29 +218,24 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "이 옵션을 사용하면 ABRT는 보고된 문제에 대해 알림을 표시하지 않습니다. 단축형 보고가 유효한 경우에만 실행됩니다. " + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump를 업로드하기 전 묻습니다 " +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +-msgstr "" ++msgstr "이 옵션이 적용되면 ABRT는 민감한 데이터가 감지되었을 경우 항상 엑세스가 제한된 버크 티켓을 생성합니다." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "민감한 정보에 대해 비공개 티켓을 요청합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "완료하지 않은 문제를 알려줍니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -239,6 +244,22 @@ msgstr "" + "컴퓨터 종료시 또는 사용자 로그 아웃 시에 완료하지 않은 문제가 감지되었습니다. 정확한 문제 보고서를 제출하기 위해 ABRT는 이러한 " + "문제에 대해 보고 허용하지 않습니다." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -270,14 +291,17 @@ msgstr "ABRT에 대해 " + msgid "Quit" + msgstr "종료 " + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"패키지 데이터베이스를 쿼리하고 패키지 및 구성요소의 이름을 저장합니다." + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -289,42 +313,45 @@ msgstr "" + msgid "Problem directory" + msgstr "문제가 있는 디렉토리 " + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "설정 파일 " + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "이 디렉토리를 RPM Root로 사용합니다." + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"저장소의 메타데이터를 저장합니다." + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "저장소 명령을 실행하기 위한 루트 디렉토리" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM을 클라이언트 uid로 사용 " + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog에 로그 " + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "로그에 프로그램 이름 추가 " + +@@ -332,60 +359,50 @@ msgstr "로그에 프로그램 이름 추가 " + msgid "Unknown error" + msgstr "알 수 없는 오류" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" ++msgid "'%s' is not a valid element name" ++msgstr "'%s'은 유효한 요소 이름이 아닙니다 " + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' 요소를 수정할 수 없습니다 " ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "권한이 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "수정하기 위해 문제에 액세스할 수 없습니다 " +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s'은 유효한 요소 이름이 아닙니다 " ++msgid "'%s' element can't be modified" ++msgstr "'%s' 요소를 수정할 수 없습니다 " ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' 용량을 얻을 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "남은 문제 공간이 없음 " + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "문제 디렉토리 '%s'에서 요소 '%s'를 삭제할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -393,12 +410,12 @@ msgid "" + "is not running.\n" + msgstr "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "이 프로그램은 root로 실행해야 합니다." + +@@ -423,18 +440,22 @@ msgstr "데몬화하지 않습니다 " + msgid "Log to syslog even with -d" + msgstr "-d를 사용하여 syslog에 로그 " + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR에서 EVENT 실행 " + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "사용자에게 직접 통신 " + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format +@@ -478,76 +499,77 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "인증을 해제합니다." + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support 사용자 이름" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" +-msgstr "" ++msgstr "Red Hat Support 암호, 지정하지 않은 경우, 이를 요청하는 메세지가 나타납니다." + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL 인증서 경로 또는 인증서 유형" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "--password에 대한 --username을 지정하십시오." + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "--username 또는 --certificate 중 하나를 사용할 수 있습니다." + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "--username 또는 --anonymous 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "--anonymous 또는 --certificate 중 하나를 사용할 수 있습니다" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "잘못된 인수 개수 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "알 수 없는 옵션 값: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "암호:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "암호없이 계속 진행할 수 없습니다\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "HTTP 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "SSL 클라이언트 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "익명으로 자동 보고" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -567,83 +589,83 @@ msgstr "" + " FILENAME - 업로드된 아카이브 파일 이름 \n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "디렉토리가 아닙니다: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "생략 중: '{0}' (슬래시로 시작)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "생략 중: '{0}' (점으로 시작)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "생략 중: '{0}' (.. 포함)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "생략 중: '{0}' (공백 포함)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "생략 중: '{0}' (탭 포함)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}'로 디렉토리를 변경할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "알 수 없는 파일 형식: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}'에 작업 디렉토리를 생성할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}'을 '{1}'로 이동할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}'을 '{1}'에 복사할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'에서 확인 오류 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' 압축 해제 중 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' 디렉토리를 생성할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}'을 압축 해제할 수 없습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}'이 성공적으로 처리되었습니다 " + +@@ -667,21 +689,29 @@ msgstr "'%s'의 chown할 수 없음: %s" + msgid "Deleting problem directory failed: %s" + msgstr "문제 디렉토리 삭제 실패: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus에서 문제 목록을 가져올 수 없음: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr " abrt-dbus에서 요소가 존재하는지 여부를 검증할 수 없습니다: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -724,7 +754,7 @@ msgid "Backtrace parsing failed for %s" + msgstr "%s 용 백트레이스 구문 분석 실패 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "충돌 스레드를 찾을 수 없습니다 " + +@@ -830,13 +860,45 @@ msgid "Oops text extracted successfully" + msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "커널 로그에 하드웨어 관련 오류가 발견된 것으로 표시됩니다.\n" + "이는 소프트웨어 문제는 아닌것 같습니다.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -923,6 +985,28 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"사용법: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" \n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"TMPDIR을 임시 준비 영역으로 사용하여 CASHEDIR에 BUILD_IDS_FILE에 나열된 모든 빌드 ID의 디버그 정보를 " ++"설치합니다. \n" ++"CACHEDIR에 있는 오래된 파일은 SIZE보다 작게될 때 까지 삭제됩니다.\n" ++"\n" ++"/etc/abrt/plugins/CCpp.conf 로부터 설정을 읽어들입니다.\n" ++"\n" ++" -v 대화식으로 실행합니다.\n" ++" -y 비 대화식으로, 모든 옵션에 대해 '예'라고 가정합니다.\n" ++" --ids 기본ID: build_id들\n" ++" --tmpdir 기본위치: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" ++" --cache 기본위치: /var/cache/abrt-di\n" ++" --size_mb 기본크기: 4096\n" ++" --pkgmgr 기본: PackageManager from CCpp.conf or 'dnf'\n" ++" -e,--exact 지정된 파일만 다운로드 합니다.\n" ++" --repo 리포지터리 검색시 사용할 규칙\n" ++" 기본: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +@@ -940,7 +1024,7 @@ msgstr "{0} debuginfo 파일이 설치되어 있지 않습니다 " + #: ../src/plugins/abrt-action-install-debuginfo.in:234 + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" +-msgstr "" ++msgstr "CCpp 애드온의 잘못된 설정, 지원되지 않는 패키지 관리자 : '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:249 +@@ -955,7 +1039,36 @@ msgstr "debuginfo 파일이 누락되어 있습니다: {0}" + msgid "All debuginfo files are available" + msgstr "모든 debuginfo 파일이 사용 가능합니다" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -964,7 +1077,7 @@ msgstr "" + "코어 덤프를 업로드해도 되겠습니까? (민감한 데이터가 포함되어 있을 수 있습니다). '아니요'로 대답할 경우 스택 추적이 로컬에 " + "생성됩니다. (이는 거대한 용량의 데이터를 다운로드할 수 있습니다)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1032,7 +1145,7 @@ msgstr "uReport가 이미 전송되어 있기때문에 다시 전송되지 않 + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "존재하는 Bugzilla bug 의 CC목록에 추가합니다. " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-ureport:193 +@@ -1226,7 +1339,8 @@ msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 " + +@@ -1237,17 +1351,19 @@ msgstr "추출한 정보를 PROBLEM에 저장합니다 " + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + +@@ -1257,15 +1373,18 @@ msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + msgid "Failed to compile regex" + msgstr "regex 컴파일에 실패했습니다 " + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 " ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "journald로부터 필요한 모든 정보를 얻는데 실패했습니다." + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 +@@ -1275,10 +1394,11 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" +-msgstr "" ++msgstr "abrt 데이터베이스에 문제 감지 데이터를 저장하는데에 실패했습니다." + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1298,59 +1418,67 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "모든 코어덤프에 대해 DIR에 새로운 문제 디렉토리를 생성" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "" ++msgstr "CURSOR의 위치에서 systemd-journal을 읽기 시작" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "" ++msgstr "뒤에서 부터 systemd-journal을 읽기 시작 " + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "-t INT와 같이, INT는 plugins/CCpp.conf에 정의되어 있습니다." + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" +-msgstr "" ++msgstr "-c CURSOR 또는 -e 중 하나를 지정해야 합니다." + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "systemd-journal을 열 수 없습니다." + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." +-msgstr "" ++msgstr "저널 데이터를 읽을 수 없습니다." + + #: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" +@@ -1367,14 +1495,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1383,12 +1514,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1397,58 +1574,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "검색된 크래시 데이터를 표준 출력에 인쇄 " + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "발견된 모든 크래시에 대해 DIR에 문제 디렉토리를 생성" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1968,44 +2149,44 @@ msgid "Sleeping for %d seconds" + msgstr "%d 초 동안 절전 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "BIOS 손상으로 인해 커널 관련 문제가 발생했습니다. 불행히도 이러한 문제는 커널 관리자에 의해 수정될 수 없습니다." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "커널 관련 문제가 발생했지만 해당 하드웨어가 지원되지 않기 때문에 커널 관리자는 이 문제를 수정할 수 없습니다." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "커널에 문제가 발생했지만 커널 자체가 손상되어 있습니다 (플래그: %s). 커널 관리자는 손상된 보고를 진단할 수 없습니다." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "잘못된 모듈: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "버그 ID 목록" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "bodhi 서버 url 지정" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "릴리즈 지정" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2015,20 +2196,20 @@ msgstr "" + "\n" + "bodhi 서버에서 업데이트 검색" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "업데이트 검색 중" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "이 패키지에 대한 업데이트를 찾을 수 없음" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "패키지의 로컬 버전은 사용 가능한 업데이트 보다 새로운 버전입니다" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2058,72 +2239,73 @@ msgid "Delete files with found oopses" + msgstr "검색된 oopses가 있는 파일을 삭제합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s'가 하나 이상의 문제 디렉토리를 확인했습니다 " + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "사용법: abrt-cli [--version] COMMAND [DIR]... " ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr " [in DIRs]에 문제 나열 " + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "문제 디렉토리 DIR 제거 " + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR에 문제가 있는 데이터를 분석 및 보고 " + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR에 관한 정보 출력 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "최근 충돌 횟수를 출력" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "여러 문제 처리 " + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "보고되지 않는 문제만 나열합니다 " + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "상세 보고를 표시합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 나열 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2133,59 +2315,69 @@ msgstr "" + "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n" + "'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "이보다 더 큰 텍스트는 요약하여 표시됩니다" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "이러한 문제 디렉토리 '%s'가 없음 " + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "아무 메세지를 표시하지 않고 문제의 건수만 출력 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT에 의해 '%u' 건의 문제가 발견되었습니다. (다음을 실행하여 보다 자세한 내용을 확인합니다: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' 삭제 중 " ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "보고 후 PROBLEM_DIR 삭제 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' 삭제 중 " +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "동작: 삭제(rm), 정보(i), 생략(s):" +@@ -2196,27 +2388,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "동작: 삭제(rm), 보고 (e), 정보(i), 생략(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' 보고 중 " + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "다음 문제로 이동하려면 ENTER를 누릅니다: " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since 인수가 없으면 감지된 모든 문제를 반복합니다 " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "타임 스탬프 후 감지된 문제만 선택합니다 " + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/lt.po b/po/lt.po +index 09c6e2b..caf1761 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "Language: lt\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "(n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,102 +31,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nepavyko tapti „%s“ savininku" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nepavyksta atverti katalogo rašymui „%s“" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nepavyksta užverti pranešimo: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Pranešti" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nepavyksta parodyti pranešimo: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Nepavyksta skaityti iš gio kanalo: „%s“" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nepavyksta nustatyti gio kanalo koduotės: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nepavyksta įjungti neblokuojančios veiksenos gio kanalui: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -136,6 +136,17 @@ msgstr "" + "\n" + "Įtaisas, kuris praneša naudotojui, kai ABRT aptinka naują problemą\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -157,7 +168,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -190,30 +203,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -239,14 +264,14 @@ msgstr "Apie" + msgid "Quit" + msgstr "Išeiti" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -258,11 +283,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemų katalogas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigūracijos failas" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -276,24 +301,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [parinktys]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Naudoti NUM kaip kliento uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Įrašyti į syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Pridėti programų pavadinimus žurnalizavimui" + +@@ -301,62 +327,52 @@ msgstr "Pridėti programų pavadinimus žurnalizavimui" + msgid "Unknown error" + msgstr "Nežinoma klaida" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "„%s“ nėra tinkamas problemų katalogas" ++msgid "'%s' is not a valid element name" ++msgstr "„%s“ nėra tinkamas elemento pavadinimas" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "„%s“ elementas negali būti pakeistas" ++msgid "'%s' is not a valid problem directory" ++msgstr "„%s“ nėra tinkamas problemų katalogas" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Neleista" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nepavyksta prieiti problemos pakeitimui" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "„%s“ elementas negali būti pakeistas" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Nepavyko pakeisti aplanko savininko. Daugiau informacijos rasite sistemos " + "žurnaluose." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "„%s“ nėra tinkamas elemento pavadinimas" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nepavyko gauti „%s“ dydžio" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nėra likusios problemų vietos" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nepavyksta ištrinti elemento „%s“ iš problemų katalogo „%s“" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -366,12 +382,12 @@ msgstr "" + "Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo " + "vardu.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Išeiti po NUM sekundžių neaktyvumo" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Šią programą reikia paleisti root naudotojo teisėmis." + +@@ -397,18 +413,22 @@ msgstr "Nedemonizuoti" + msgid "Log to syslog even with -d" + msgstr "Įrašyti į syslog net su -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ĮVYKIO KAT..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Vykdyti ĮVYKĮ KAT" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikuoti tiesiogiai su naudotoju" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -446,73 +466,74 @@ msgstr "Darbininkų skaičius. Numatyta " + msgid "Maximal cache size in MiB. Default is " + msgstr "Didžiausias podėlio dydis MiB. Numatyta " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Neteisingas argumentų skaičius" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Nežinoma parametro vertė: „%s“\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -524,68 +545,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -609,18 +630,26 @@ msgstr "Nepavyko chown „%s“: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Nepavyko ištrinti problemos katalogo: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nepavyko gauti problemų sąrašo iš abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -667,7 +696,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Nepavyko perskaityti %s pėdsako" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Lūžimo gija nerasta" + +@@ -769,12 +798,44 @@ msgstr "Nepavyksta išgauti oops pranešimo: „{0}“" + msgid "Oops text extracted successfully" + msgstr "Oops tekstas sėkmingai išgautas" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -892,7 +953,36 @@ msgstr "Trūksta derinimo informacijos failo: {0}" + msgid "All debuginfo files are available" + msgstr "Yra visi derinimo informacijos failai" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -902,7 +992,7 @@ msgstr "" + "atsakysite „Ne“, steko pėdsakas bus generuojamas vietoje. (Tai gali " + "parsiųsti daug duomenų)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1133,7 +1223,8 @@ msgstr "Sukurti naują problemos katalogą KAT kataloge kiekvienai rastai oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Tas pats kaip -d DumpLocation, DumpLocation yra nurodyta abrt.conf" + +@@ -1143,16 +1234,18 @@ msgstr "Įrašyti išgautą informaciją į PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Padaryti problemų katalogą skaitomą pasauliui" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Nustatyti problemų aplankų kūrimą į 1 per sekundę" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti" + +@@ -1161,9 +1254,13 @@ msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Nepavyksta atnaujinti problemos: rastas daugiau nei vienas oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1182,6 +1279,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1205,11 +1303,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1223,16 +1323,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1240,18 +1343,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1270,14 +1376,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1286,12 +1395,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1301,59 +1456,63 @@ msgstr "" + "\n" + "Išgauti Xorg lūžimą iš FAILO (arba standartinės įvesties)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Atspausdinti rastus lūžimo duomenis standartinėje išvestyje" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Sukurti naują problemos katalogą KAT kataloge kiekvienam rastam lūžimui" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1886,7 +2045,7 @@ msgstr "Nepavyko išjungti NSS." + msgid "Sleeping for %d seconds" + msgstr "Miegama %d sekundžių" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1894,7 +2053,7 @@ msgstr "" + "Dėl blogo BIOS kilo branduolio problema. Deja, tokių problemų branduolio " + "prižiūrėtojai negali pataisyti." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1902,7 +2061,7 @@ msgstr "" + "Kilo branduolio problema, bet jūsų aparatinė įranga yra nepalaikoma, tad " + "branduolio prižiūrėtojai negali pataisyti šios problemos." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1911,24 +2070,24 @@ msgstr "" + "Kilo branduolio problema, bet jūsų branduolys buvo pakeistas (požymiai:%s). " + "Branduolio prižiūrėtojai negali diagnozuoti pakeistų pranešimų." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Sugadinti moduliai: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Klaidų id sąrašas" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Nurodykite bohdi serverio url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Nurodykite leidimą" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1939,20 +2098,20 @@ msgstr "" + "\n" + "Ieškoti atnaujinimų bodhi serveryje" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Ieškoma atnaujinimų" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nerasta šio paketo atnaujinimų" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Vietinė paketo versija yra naujesnė nei prieinama atnaujinimuose" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1980,65 +2139,66 @@ msgstr "Atspausdinti rastus oops" + msgid "Delete files with found oopses" + msgstr "Ištrinti failus su rastais oops" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "„%s“ nurodo daugiau nei vieną problemos aplanką" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Naudojimas: abrt-cli [--version] KOMANDA [KAT]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Pašalinti problemos katalogą KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuoti ir pranešti KAT problemos duomenis" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Atspausdinti informaciją apie KAT" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Atspausdinti nesenų lūžimų skaičių" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Išvardinti tik nepraneštas problemas" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Rodyti detalią ataskaitą" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Išvardinti tik problemas, kurios naujesnės nei nurodyta laiko žyma" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Išvardinti tik problemas, kurios senesnės nei nurodyta laiko žymo" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2049,51 +2209,61 @@ msgstr "" + "teisėmis\n" + "„abrt-auto-reporting enabled“\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [parinktys] KAT..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Ilgesnis nei toks tekstas bus rodomas sutrumpintas" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nėra tokio problemos aplanko „%s“" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Atspausdinti tik problemų skaičių be jokių pranešimų" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Atspausdinti tik problemas, naujesnes nei nurodyta laiko žyma" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2102,24 +2272,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/lv.po b/po/lv.po +index 2c4a453..fd0d22d 100644 +--- a/po/lv.po ++++ b/po/lv.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: lv\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " + "2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +29,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nevar aizvērt paziņojumu: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Ziņot" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +163,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +198,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +259,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +278,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurācijas datne" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +296,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [iespējas]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -296,60 +322,50 @@ msgstr "" + msgid "Unknown error" + msgstr "Nezināma kļūda" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' nav derīgs elementa nosaukums" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' nav derīgs elementa nosaukums" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +373,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +399,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +444,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +523,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +608,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +668,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +757,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +903,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1154,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1074,16 +1165,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1092,8 +1185,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1113,6 +1210,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1136,11 +1234,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1154,16 +1254,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1171,18 +1274,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1201,14 +1307,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1217,70 +1326,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1778,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Šai pakotnei netika atrasts neviens atjauninājums." + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Parādīt detalizētu ziņojumu" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ml.po b/po/ml.po +index 2508892..19da90a 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -10,122 +10,127 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-08 10:57-0500\n" ++"PO-Revision-Date: 2015-09-25 05:50-0400\n" + "Last-Translator: Ani Peter \n" + "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ml/)\n" + "Language: ml\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 ++#, fuzzy + msgid "Problem Reporting" +-msgstr "" ++msgstr "പ്രശ്നം രേഖപ്പെടുത്തുന്ന ക്രമീകരണം" + ++# auto translated by TM merge from project: gnome-abrt, version: master, DocId: gnome-abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 ++#, fuzzy + msgid "View and report application crashes" +-msgstr "" ++msgstr "പ്രയോഗത്തിന്റെ തകരാറുകള്‍ രേഖപ്പെടുത്തുക" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "അറിയിപ്പു് അടയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "റിപോര്‍ട്ട്" + +-#: ../src/applet/applet.c:523 ++# auto translated by TM merge from project: ibus, version: head, DocId: ibus10 ++#: ../src/applet/applet.c:625 ++#, fuzzy + msgid "Restart" +-msgstr "" ++msgstr "വീണ്ടും ആരംഭിക്കുക" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "അറിയിപ്പു് കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ചാനലില്‍ നിന്നും ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ചാനലില്‍ എന്‍കോഡിങ് സജ്ജമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ചാനലിനു് nonblocking മോഡ് ഓണ്‍ ചെയ്യുവാാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -136,6 +141,17 @@ msgstr "" + "പുതിയ പ്രശ്നങ്ങള്‍ ABRT കണ്ടുപിടിയ്ക്കുമ്പോള്‍ ഉപയോക്താവിനെ " + "അറിയിയ്ക്കുന്നതിനുള്ള ആപ്ലെറ്റ്\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -156,19 +172,15 @@ msgstr "ചെറിയ രീതിയിലുള്ള റിപോര്‍ + msgid "Silent shortened reporting" + msgstr "നിശബ്ദമായ ചെറിയ റിപോര്‍ട്ടിങ്" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിന് കോര്‍ഡമ്പ് ഫയല്‍ ആവശ്യമാണു്. ഇതിനു് " +-"അധികമായ സമയവും സ്ഥലവും ആവശ്യമാണു്. കോര്‍ഡമ്പില്‍ നിന്നും സ്റ്റാക്ക് ട്രെയിസ് " +-"ലഭ്യമാക്കുന്നതിനുള്ള സേവനം എബിആര്‍ടി ലഭ്യമാക്കുന്നു, പക്ഷേ ഇതിനായി നിങ്ങള്‍ " +-"കോര്‍ഡമ്പ് അപ്‌ലോഡ് ചെയ്യണം. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കിയാല്‍, ഒരു " +-"ചോദ്യങ്ങളുമില്ലാതെ എബിആര്‍ടി കോര്‍ഡമ്പ് അപ്‌ലോ‍ഡ് ചെയ്യുന്നു." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -219,29 +231,24 @@ msgstr "" + "അറിയിപ്പ് എബിആര്‍ടി ഒരിക്കലും കാണിക്കില്ല. ലഘുവായി രേഖപ്പെടുത്തുന്നത് " + "സജ്ജമെങ്കില്‍ മാത്രം ഇതു് പ്രാഭല്യത്തിലാകുന്നു." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump അപ്‌ലോഡ് ചെയ്യുന്നതിന് മുമ്പ് ചോദിയ്ക്കുക" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "സെന്‍സിറ്റീവ് വിവരങ്ങള്‍ക്ക് സ്വകാര്യ ടിക്കറ്റ് ആവശ്യപ്പെടുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "പൂര്‍ണ്ണമല്ലാത്ത പ്രശ്നങ്ങള്‍ അറിയിയ്ക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -252,6 +259,22 @@ msgstr "" + "റിപോര്‍ട്ടുകള്‍ ലഭ്യമാക്കുന്നതിനു്, എബിആര്‍ടി ഇവ രേഖപ്പെടുത്തുവാന്‍ " + "അനുവദിക്കുകയില്ല." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -278,14 +301,14 @@ msgstr "സംബന്ധിച്ചു്" + msgid "Quit" + msgstr "പുറത്തു് കടക്കുക" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -297,11 +320,11 @@ msgstr "" + msgid "Problem directory" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ക്രമീകരണ ഫയല്‍" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -315,24 +338,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ക്ലയന്റ് യുഐഡി ആയി NUM ഉപയോഗിയ്ക്കുക" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന്റെ പേരുകള്‍ ചേര്‍ക്കുക" + +@@ -340,63 +364,53 @@ msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന് + msgid "Unknown error" + msgstr "അപരിചിതമായ പിശക്" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "അധികാരമില്ല" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "മാറ്റം വരുത്തുന്നതിനായി പ്രശ്നം കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ഡയറക്ടറി ചൌണ്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി " + "സിസ്റ്റം ലോഗുകള്‍ പരിശോധിയ്ക്കുക." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s'-ന്റെ വ്യാപ്തി ലഭ്യമല്ല" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "സ്ഥലം ലഭ്യമല്ല" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "'%s' എലമെന്റ് വെട്ടി നീക്കുവാന്‍ സാധ്യമല്ല ('%s' ഡയറക്ടറിയില്‍ നിന്നും)" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -406,12 +420,12 @@ msgstr "" + "'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല " + "എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM നിമിഷങ്ങള്‍ നിഷ്ക്രിയമായശേഷം പുറത്തു് കടക്കുക" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ഈ പ്രോഗ്രാം റൂട്ടായി പ്രവര്‍ത്തിപ്പിയ്ക്കണം." + +@@ -438,18 +452,22 @@ msgstr "daemonize ചെയ്യേണ്ടതില്ല" + msgid "Log to syslog even with -d" + msgstr "-d ഉപയോഗിച്ചു് syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR-ല്‍ EVENT പ്രവര്‍ത്തിപ്പിയ്ക്കുക" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ഉപയോക്താവുമായി നേരിട്ടു് ഇടപെടുക" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format +@@ -494,93 +512,94 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "MiB-ല്‍ ഏറ്റവും കൂടിയ ക്യാഷ് വ്യാപ്തി. സ്വതവേയുള്ളതു്" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ സംവിധാനം ഓഫ് ചെയ്യുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat പിന്തുണയ്ക്കുള്ള ഉപയോക്തൃനാമം" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat പിന്തുണയ്ക്കുള്ള രഹസ്യവാക്ക്, നല്‍കിയിട്ടില്ലെങ്കില്‍, ഇതിനായി " + "ആവശ്യപ്പെടുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + "uReport എസ്എസ്എല്‍ സര്‍ട്ടിഫിക്കേറ്റ് പാഥ് അല്ലെങ്കില്‍ സര്‍ട്ടിഫിക്കേറ്റ് " + "രീതി" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr " --password-നുള്ള --username നല്‍കേണ്ടതുണ്ടു്" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "--username അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "--username അല്ലെങ്കില്‍ --anonymous ഉപയോഗിയ്ക്കാം" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ആര്‍ഗ്യുമെന്റുകളുടെ തെറ്റായ എണ്ണം" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "അപരിചിതമായ മൂല്ല്യം: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "രഹസ്യവാക്ക്:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "രഹസ്യവാക്കില്ലാതെ തുടരുവാന്‍ സാധ്യമല്ല\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "എച്ടിടിപി ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "എസ്എസ്എല്‍ ക്ലയന്റ് ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "അപരിചിതമായ ഓട്ടോ റിപോര്‍ട്ടിങ്" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -601,83 +620,83 @@ msgstr "" + " FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ഡയറക്ടറിയല്ല: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്ലാഷില്‍ ആരംഭിയ്ക്കുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (കുത്തില്‍ ആരംഭിയ്ക്കുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (.. അടങ്ങുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്പെയിസ് അടങ്ങുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (ടാബ് അടങ്ങുന്നു)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ഡയറക്ടറിയെ '{0}'-ലേക്ക് മാറ്റുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "അപരിചിതമായ ഫയല്‍ രീതി: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}'-ല്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'-ല്‍ ഉറപ്പാക്കുന്നതില്‍ പിശക്" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' തുറക്കുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' തുറക്കുവാന്‍ സാധ്യമല്ല" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' വിജയകരമായി നടപ്പിലാക്കി" + +@@ -701,20 +720,28 @@ msgstr "'%s' chown ചെയ്യുവാന്‍ സാധ്യമല്ല + msgid "Deleting problem directory failed: %s" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി വെട്ടിനീക്കുന്നതില്‍ പരാജയം: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" +-"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -764,7 +791,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s-നുള്ള ബാക്ക്ട്രെയിസ് പാഴ്സിങ് പരാജയപ്പെട്ടു" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ക്രാഷ് ത്രെഡ് ലഭ്യമായില്ല" + +@@ -879,7 +906,7 @@ msgid "Oops text extracted successfully" + msgstr "Oops വാചകം വിജയകരമായി ലഭ്യമാക്കി" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -887,6 +914,38 @@ msgstr "" + "ഹാര്‍ഡ്‌വെയര്‍ പിശകുകള്‍ ഉണ്ടായതായി കേര്‍ണല്‍ ലോഗ് സൂചിപ്പിയ്ക്കുന്നു.\n" + "അതുകൊണ്ടു് ഇതൊരു സോഫ്റ്റ്‌വെയര്‍ പ്രശ്നമല്ല.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -1008,7 +1067,36 @@ msgstr "debuginfo ഫയല്‍ ലഭ്യമല്ല: {0}" + msgid "All debuginfo files are available" + msgstr "എല്ലാ debuginfo ഫയലുകളും ലഭ്യമാണു്" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1018,7 +1106,7 @@ msgstr "" + "ഇതു് ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഒരു സ്റ്റാക്ക് ട്രെയിസ് ലോക്കലായി " + "തയ്യാറാക്കപ്പെടുന്നു. (ഇതൊരു പക്ഷേ വലിയ ഡേറ്റാ ഡൌണ്‍ലോഡ് ചെയ്തേക്കാം)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1262,7 +1350,8 @@ msgstr "എല്ലാ oops-നും DIR-ലുള്ള തകരാറിന + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation പോലെ തന്നെ, abrt.conf-ല്‍ DumpLocation " +@@ -1274,18 +1363,20 @@ msgstr "PROBLEM-ല്‍ ലഭ്യമാക്കിയ വിവരം സ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമാക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + "ത്രോട്ടില്‍ പ്രശ്നം ഡയറക്ടറി തയ്യാറാക്കുന്നതു് ഒരു സെക്കന്‍ഡില്‍ ഒന്നു്" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രിങ് പ്രിന്റ് ചെയ്തു് പുറത്തു് കടക്കുക" + +@@ -1295,11 +1386,13 @@ msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രി + msgid "Failed to compile regex" + msgstr "regex കംപൈല്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1318,6 +1411,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1341,11 +1435,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1359,16 +1455,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1376,18 +1475,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1406,14 +1508,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1422,12 +1527,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1437,58 +1588,62 @@ msgstr "" + "\n" + "FILE-ല്‍ നിന്നും Xorg ക്രാഷ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണ ഇന്‍പുട്ട്)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "സാധാരണ ഔട്ട്പുട്ടിലേക്കു് ലഭ്യമായ ക്രാഷ് ഡേറ്റാ പ്രിന്റ് ചെയ്യുക" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "എല്ലാ ക്രാഷിനും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2040,7 +2195,7 @@ msgid "Sleeping for %d seconds" + msgstr "%d നിമിഷത്തേക്കു് മയങ്ങുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2049,7 +2204,7 @@ msgstr "" + "കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2058,7 +2213,7 @@ msgstr "" + "ലഭ്യമല്ല. അതിനാല്‍, കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് ഇതു് " + "പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2067,24 +2222,24 @@ msgstr "" + "കേര്‍ണലില്‍ ഒരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു (ഫ്ലാഗുകള്‍:%s). കാരണം എന്താണു് " + "എന്നു് കണ്ടുപിടിയ്ക്കുവാന്‍ കേര്‍ണല്‍ പാലകന്‍മാര്‍ക്കു് സാധ്യമായിട്ടില്ല." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " ലൈസന്‍സ് പ്രശ്നങ്ങളുള്ള ഘടകങ്ങള്‍: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ബഗ് ഐഡികള്‍" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ബോധി സര്‍വര്‍ യുആര്‍എല്‍ നല്‍കു" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ഒരു റിലീസ് വ്യക്തമാക്കുക" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2094,21 +2249,21 @@ msgstr "" + "\n" + "ബോധി സര്‍വറില്‍ പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുക" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുന്നു" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ഈ പാക്കേജിനു് പരിഷ്കരണങ്ങള്‍ ലഭ്യമല്ല" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "ലഭ്യമായ പരിഷ്കരണങ്ങളേക്കാള്‍ പുതിയതാണു് നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള പതിപ്പു്" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2138,71 +2293,72 @@ msgid "Delete files with found oopses" + msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകളുള്ള ഫയലുകള്‍ വെട്ടി നീക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ഒന്നില്‍ കൂടുതല്‍ പ്രശ്നമുള്ള ഡയറക്ടറി തിരിച്ചറിയുന്നു" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "പ്രശ്നങ്ങള്‍ ലഭ്യമാക്കുക [DIR-കളില്‍]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി DIR നീക്കം ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-ല്‍ പ്രശ്നമുള്ള ഡേറ്റാ നിരീക്ഷിച്ചു് രേഖപ്പെടുത്തുക" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR സംബന്ധിച്ചുള്ള വിവരം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "പുതിയ തകരാറുകളുടെ എണ്ണം പ്രിന്റ് ചെയ്യുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "അനവധി പ്രശ്നങ്ങള്‍ നടപ്പിലാക്കുക" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'abrt-cli COMMAND --help' കാണുക." + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "രേഖപ്പെടുത്താത്ത പ്രശ്നങ്ങള്‍ മാത്രം ലഭ്യമാക്കുക" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "വിശദമായ രേഖപ്പെടുത്തല്‍ കാണിയ്ക്കുക" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പുതിയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പഴയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2213,59 +2369,69 @@ msgstr "" + "ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\n" + "ഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ഇതിലും വലുതായ വാചകം അബ്രിഡ്ജമായ കാണിയ്ക്കുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "'%s' പോലുള്ള പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമല്ല" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "സന്ദേശമില്ലാതെ പ്രശ്നത്തിന്റെ എണ്ണം മാത്രം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന ടൈംസ്റ്റാമ്പിനേക്കാള്‍ പുതുതായ പ്രശ്നങ്ങള്‍ മാത്രം " + "പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ " + "വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' വെട്ടി നീക്കുന്നു" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "രേഖപ്പെടുത്തിയ ശേഷം PROBLEM_DIR നീക്കം ചെയ്യുക" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' വെട്ടി നീക്കുന്നു" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), info(i), skip(s):" +@@ -2276,29 +2442,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' രേഖപ്പെടുത്തുന്നു" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "അടുത്ത പ്രശ്നത്തിന് ENTER അമര്‍ത്തുക:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." + "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ടൈംസ്റ്റാബിനു് ശേഷം ലഭിച്ച പ്രശ്നങ്ങള്‍ മാത്രം തെരഞ്ഞെടുക്കുന്നു" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/mr.po b/po/mr.po +index 4061beb..badba91 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/mr/)\n" + "Language: mr\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,102 +30,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' लिहण्याकरीता डिरेक्ट्रि उघडणे अशक्य" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "सूचना: %s बंद करणे अशक्य" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "सूचना: %s दाखवणे अशक्य" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio वाहिनी: '%s' पासून वाचणे अशक्य" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio वाहिनी: %s वरील एंकोडिंग सेट करणे अशक्य" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio वाहिनी: %s करीता नॉनब्लॉकिंग मोड सुरू करणे अशक्य" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -135,6 +135,17 @@ msgstr "" + "\n" + "ABRT तर्फे नवीन अडचणी आढळल्यास वापरकर्त्याला सूचीत करणारे ॲप्लेट\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "डिरेक्ट्री चोरण्यापूर्वी विचारा" +@@ -156,12 +167,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"स्टॅक ट्रेस निर्माण करण्यासाठी कोरडम्प फाइल आवश्यक आहे ज्यास वेळ आणि जागा " +-"आवश्यक आहे. ABRT तुम्हाला सर्व्हिस पुरवते जे कोरडम्पपासून स्टॅक ट्रेस " +-"निर्माण करते परंतु तुम्हाला कोरडम्पला ह्या सर्व्हिसकरिता अपलोड करावे लागेल. " +-"ह्या पर्यायचा वापर न करता ABRT विना विचारता कोरडम्प अपलोड करेल." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -207,10 +216,6 @@ msgstr "" + "रिपोर्टिंग सुरू केल्यानंतरच प्रभाव पडतो." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "कोरडम्प अपलोड करण्यापूर्वी विचारा" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -218,15 +223,15 @@ msgstr "" + " हा पर्याय सुरू करून संवेदनशील डाटा आढळल्यास, ABRT नेहमी प्रतिबंधीत प्रवेशसह " + "बग तिकिट निर्माण करेल." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "संवेदनशील माहितीकरिता व्यक्तिगत तिकिटकरिता विनंती करा" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "अपूर्ण अडचणी सूचीत करा" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -236,6 +241,22 @@ msgstr "" + "मौल्यावन अडचणीचे अहवाल पुरवण्याकरिता, ABRT तुम्हाला ह्या अडचणी सादर करण्यास " + "परवानगी देणार नाही." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "बंद करा (_C)" +@@ -261,14 +282,14 @@ msgstr "विषयी" + msgid "Quit" + msgstr "बाहेर पडा" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -280,11 +301,11 @@ msgstr "" + msgid "Problem directory" + msgstr "प्रॉब्लेम डिरेक्ट्री" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "संरचना फाइल" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -298,24 +319,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM चा क्लाएंट uid म्हणून वापर करा" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog करीता लॉग" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "लॉगमध्ये कार्यक्रम नावे समाविष्ट करा" + +@@ -323,60 +345,50 @@ msgstr "लॉगमध्ये कार्यक्रम नावे सम + msgid "Unknown error" + msgstr "अपरिचीत त्रुटी" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' वैध एलिमेंट नाव नाही" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' एलिमेंट संपादित करणे अशक्य" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ओळख पटली नाही" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "संपादनकरीता अडचणकरीता प्रवेश अशक्य" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' वैध एलिमेंट नाव नाही" ++msgid "'%s' element can't be modified" ++msgstr "'%s' एलिमेंट संपादित करणे अशक्य" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s'ची आकार प्राप्ति अशक्य" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "प्रॉबलेम जागा बाकी नाही" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "एलिमेंट '%s' ला प्रॉबलेम डिरेक्ट्रि '%s' पासून नष्ट करणे अशक्य" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -386,12 +398,12 @@ msgstr "" + "नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी " + "करा.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "निष्क्रिय झाल्यावर NUM सेकंदानंतर बाहेर पडा" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "हा प्रोग्राम रूट वापरकर्ता म्हणून चालवा." + +@@ -416,18 +428,22 @@ msgstr "डिमन स्वरूपी बनवू नका" + msgid "Log to syslog even with -d" + msgstr "syslog मध्ये -d पर्यायसह लॉग करा" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR वर EVENT चालवा" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "प्रत्यक्षरित्या वापरकर्त्याशी संपर्क करा" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -465,87 +481,88 @@ msgstr "कंकरंट वर्कर्सची संख्या. प + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB मधील कमाल कॅशे आकार. पूर्वनिर्धारित आहे " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ओळख पटवणे बंद करते" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support वापकर्ता नाव" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support पासवर्ड, दिले नसल्यास, त्याकरिता विनंती दिली जाईल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL प्रमाणपत्र मार्ग किंवा प्रमाणपत्र प्रकार" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password करिता --username देखील निर्देशीत करावे लागेल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "एकतर --username किंवा --certificate यांचा वापर शक्य आहे" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "एकतर --username किंवा --anonymous यांचा वापर शक्य आहे" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "एकतर --anonymous किंवा --certificate यांचा वापर शक्य आहे" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "अवैध बाबींची संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अपरिचीत पर्याय मूल्य: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "पासवर्ड:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "पासवर्डविना पुढे जाणे अशक्य\n" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ऑथेंटिकेटेड स्व अहवाल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL क्लाएंट ऑथेंटिकेटेड स्व अहवाल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "निनावी स्व अहवाल" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -566,83 +583,83 @@ msgstr "" + " FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "डिरेक्ट्री नाही: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "वगळत आहे: '{0}' (स्लॅशपासून सुरू होते)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "वगळत आहे: '{0}' (डॉटपासून सुरू होते)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "वगळत आहे: '{0}' (समाविष्टीत आहे ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "वगळत आहे: '{0}' (स्पेस समाविष्टीत आहे)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "वगळत आहे: '{0}' (टॅब समाविष्टीत आहे)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' करिता डिरेक्ट्री बदलणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "अपरिचीत फाइल प्रकार: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' मध्ये कार्यरत डिरेक्ट्री निर्माण करणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ला '{1}' करिता हलविणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' चे '{1}' मध्ये प्रत करणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' वरील तापसणी त्रुटी" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' खुले करत आहे" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' डिरेक्ट्रीचे निर्माण अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' खुले करणे अशक्य" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' यशस्वीरित्या विश्लेषणीत केले" + +@@ -666,18 +683,26 @@ msgstr "'%s': %s chown करणे अशक्य" + msgid "Deleting problem directory failed: %s" + msgstr "अडचण डिरेक्ट्री: %s नष्ट करण्यास अपयशी" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus: %s पासून अडचण सूची प्राप्त करणे अशक्य" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -724,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s करीता बॅकट्रेस वाचणे अपयशी" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "क्रॅश थ्रेड आढळले नाही" + +@@ -830,7 +855,7 @@ msgstr "ऊप्स संदेश: '{0}' प्राप्ति अशक + msgid "Oops text extracted successfully" + msgstr "ऊप्स मजकूर यशस्वीरित्या प्राप्त केले" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -838,6 +863,38 @@ msgstr "" + "कर्नल लॉग आढळलेल्या हार्डवेअर त्रुटी निर्देशीत.\n" + "हे संभाव्यतया सॉफ्टवेअर अडचण नाही.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -955,7 +1012,36 @@ msgstr "debuginfo फाइल: {0} आढळली नाही" + msgid "All debuginfo files are available" + msgstr "सर्व debuginfo फाइल्स् उपलब्ध आहे" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -965,7 +1051,7 @@ msgstr "" + "असल्यास, स्टॅक ट्रेस् स्थानीयरित्या निर्माण केले जाईल. (कदाचित प्रचंड डाटा " + "डाउनलोड होईल)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1201,7 +1287,8 @@ msgstr "प्रत्येक ऊप्सकरीता DIR मधील + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation प्रमाणेच आहे, DumpLocation ला abrt.conf मध्ये निर्देशीत केले " +@@ -1213,16 +1300,18 @@ msgstr " PROBLEM मध्ये प्राप्य माहिती सा + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "प्रॉब्लेम डिरेक्ट्री जग वाचनजोगी बनवा" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "प्रति १ सेकंदकरिता थ्रॉटल अडचण डिरेक्ट्रीचे निर्माण" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout करीता सर्च स्ट्रिंग्स्ची छपाई करा व बाहेर पडू नका" + +@@ -1232,9 +1321,13 @@ msgstr "stdout करीता सर्च स्ट्रिंग्स्च + msgid "Failed to compile regex" + msgstr "रेगेक्स कंपाइल करण्यास अपयशी" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "अडचण सुधारित करणे अशक्य: एकापेक्षा जास्त ऊप्स आढळले" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1253,6 +1346,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1276,11 +1370,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1294,16 +1390,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1311,18 +1410,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1341,14 +1443,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1357,12 +1462,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1372,59 +1523,63 @@ msgstr "" + "\n" + "FILE (किंवा स्टँडर्ड इंपुट) पासून Xorg क्रॅश प्राप्त करा" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "स्टँडर्ड आउटपुटवर क्रॅश डाटाची छपाई करा" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "प्रत्येक आढळलेल्या क्रॅशकरीता DIR मध्ये प्रॉबलेम डिरेक्ट्रि निर्माण करा" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1951,7 +2106,7 @@ msgstr "NSS शटडाउन करण्यास अपयशी." + msgid "Sleeping for %d seconds" + msgstr "%d सेकंदकरिता निष्क्रीय झाले" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1959,7 +2114,7 @@ msgstr "" + "खंडीत BIOS मुळे कर्नल अडचण आढळली. दुर्दैवाने, अशा अडचणींचे कर्नल " + "मैनटेनर्सतर्फे निवारण केले जात नाही." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1967,7 +2122,7 @@ msgstr "" + "कर्नल अडचण आढळली, परंतु तुमचे हार्डवेअर असमर्थीत आहे, म्हणून ह्या अडचणीचे " + "कर्नल मैनटेनर्सतर्फे निवारण शक्य नाही." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1976,24 +2131,24 @@ msgstr "" + "कर्नल अडचणी आढळली, परंतु कर्नलमध्ये दोष देखील आढळले (फ्लग्स्:%s). कर्नल " + "मैनटेनर्स् दोषीत अहवालांचे विश्लेषण करण्यास अशक्य." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " टैंटेड मॉड्युल्स: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "बग आयडिजची सूची" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "बोधि सर्व्हर url निर्देशीत करा" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "प्रकाशन निर्देशीत करा" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2003,20 +2158,20 @@ msgstr "" + "\n" + "बोधि सर्व्हरवर सुधारणांकरीता शोधा" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "सुधारणांकरीता शोधत आहे" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ह्या संकुलकरीता सुधारणा आढळले नाही" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "संकुलाची स्थानीय आवृत्ती उपलब्ध सुधारणांपेक्षा नवीन आहे" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2043,66 +2198,67 @@ msgstr "आढळलेल्या ऊप्सेसची छपाई कर + msgid "Delete files with found oopses" + msgstr "आढळलेल्या ऊप्सेसपासून फाइल्स नष्ट करा" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' एकापेक्षा जास्त अडचण डिरेक्ट्री ओळखते" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "वापर: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "अडचणींची सूची दाखवा [DIRs मध्ये]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "प्रॉब्लेम डिरेक्ट्री DIR काढून टाका" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR मध्ये प्रॉब्लेम डाटाचे विश्लेषण करा व कळवा" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR विषयी माहितीची छपाई करा" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "नुकतेच क्रॅशच्या प्रमाणची छपाई करा" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "बहु अडणी विश्लेषीत करा" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' पहा" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "फक्त-न कळवलेल्या अडचणींची सूची दाखवा" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "तपशील अहवाल दाखवा" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नवीन अडचणींची सूची दाखवा" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "फक्त निर्देशीत टाइमस्टॅम्पपेक्षा जुण्या अडचणीच दाखवा" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2113,53 +2269,63 @@ msgstr "" + "root परवानगी सक्षम वापरकर्ता नुरूप, 'abrt-auto-reporting enabled' असे यास " + "गृहीत धरा\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "यापेक्षा मोठे मजकूर अब्रिज्ड दाखवले जाईल" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "या प्रकारची अडचण डिरेक्ट्री '%s' नाही" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "कोणत्याही संदेशविना फक्त अडचण प्रमाणाची छपाई करा" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नुकतेच अडचणींची छपाई करा" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRTला %u अडचणी आढळले. अधिक माहितीकरिता: abrt-cli list%s चालवा\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' नष्ट करणे" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [पर्याय] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "कळविल्यानंतर PROBLEM_DIR काढून टाका" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' नष्ट करणे" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "कृती: remove(rm), info(i), skip(s):" +@@ -2170,27 +2336,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "कृती: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' कळविणे" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "पुढील अडचणीकरिता ENTER दाबा:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since बाबविना, सर्व आढळलेल्या अडचणींची पुनराकृती करते." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "फक्त टाइमस्टॅम्पनंतर आढळलेल्या अडचणींनाच पसंत करते" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nb.po b/po/nb.po +index 6ee7aba..30f520e 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "abrt/language/nb/)\n" + "Language: nb\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -30,102 +30,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke ta eierskap av «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapporter" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -135,6 +135,17 @@ msgstr "" + "\n" + "Panelprogram som varsler bruker når nye problemer oppdages av ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -156,7 +167,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -189,30 +202,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -238,14 +263,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -257,11 +282,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurasjonsfil" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -275,24 +300,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [alternativer]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Logg til syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Legg til programnavn i loggen" + +@@ -300,60 +326,50 @@ msgstr "Legg til programnavn i loggen" + msgid "Unknown error" + msgstr "Ukjent feil" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Ikke autorisert" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -361,12 +377,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avslutt etter NUM sekunder uten aktivitet" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programmet må kjøres som root" + +@@ -387,18 +403,22 @@ msgstr "Ikke kjør som tjeneste" + msgid "Log to syslog even with -d" + msgstr "Logg til systemlogg selv med -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -428,73 +448,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -506,68 +527,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -591,18 +612,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -643,7 +672,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Tolking av dump feilet for %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -732,12 +761,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -846,14 +907,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1068,7 +1158,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1078,16 +1169,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1096,8 +1189,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1117,6 +1214,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1140,11 +1238,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1158,16 +1258,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1175,18 +1278,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1205,14 +1311,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1221,70 +1330,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1784,63 +1943,63 @@ msgstr "Klarte ikke å stenge ned NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Oppgi en versjon" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Søker etter oppdateringer" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Ingen oppdateringer funnet for denne pakken" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1862,65 +2021,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Vis detaljert rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1928,49 +2088,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1979,24 +2149,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nds.po b/po/nds.po +index 12531c2..8f3c2e7 100644 +--- a/po/nds.po ++++ b/po/nds.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/nds/)\n" + "Language: nds\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Berichten" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nl.po b/po/nl.po +index 820892b..5f486a9 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -12,17 +12,17 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-19 12:01-0400\n" ++"PO-Revision-Date: 2015-10-16 10:28-0400\n" + "Last-Translator: Geert Warrink \n" + "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/" + "language/nl/)\n" + "Language: nl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,34 +32,34 @@ msgstr "Probleemrapportage" + msgid "View and report application crashes" + msgstr "Bekijk en rapporteer crashes van toepassingen" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan '%s' niet claimen" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan map niet openen voor het schrijven van '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan notificatie niet sluiten: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Opnieuw starten" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -68,7 +68,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem is automatisch " + "gerapporteerd." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -77,8 +77,8 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem zal " + "gerapporteerd worden zodra het internet beschikbaar is." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -87,7 +87,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Neem contact op met de " + "ontwikkelaar als je het probleem wilt rapporteren." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -96,7 +96,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat %s gecrasht is. Stuur een rapport op als je " + "wilt helpen met het oplossen van het probleem." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -104,7 +104,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " + "probleem is automatisch gerapporteerd." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -112,7 +112,7 @@ msgstr "" + "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " + "probleem zal gerapporteerd worden zodra het internet beschikbaar is." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -120,28 +120,28 @@ msgstr "" + "Sorry, het ziet er naar uit dat er een probleem is opgetreden. Stuur een " + "rapport op als je wilt helpen met het oplossen van het probleem." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan notificatie niet tonen: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Kan niet van gio kanaal lezen: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan codering op gio kanaal niet instellenl: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Kan niet-blokkerende modus niet instellen voor gio kanaal: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -152,6 +152,17 @@ msgstr "" + "Applet die de gebruiker waarschuwt als nieuwe problemen door ABRT " + "gedetecteerd zijn\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Vraag voordat een map gestolen wordt" +@@ -173,13 +184,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Het coredump bestand is nodig voor het aanmaken van een stack trace, wat een " +-"tijd en ruimte spenderende bewerking is. ABRT biedt een service welke de " +-"stack trace aanmaakt uit de coredump, maar je moet de coredump uploaden naar " +-"deze service. Als deze optie uitgezet is, zal ABRT de coredump uploaden " +-"zonder te vragen." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -227,10 +235,6 @@ msgstr "" + "aan gezet is." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Vraag voordat een coredump geüpload wordt " +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -238,15 +242,15 @@ msgstr "" + " Als deze optie aangezet is, zal ABRT altijd een bug ticket aanmaken met " + "beperkte toegang als mogelijk gevoelige data ontdekt is." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Vraag privé ticket aan voor gevoelige informatie" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Geef incomplete problemen aan" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -256,6 +260,22 @@ msgstr "" + "wordt of als een gebruiker uitlogt. Om waardevolle probleemrapporten aan te " + "bieden, zal ABRT je niet toestaan om deze problemen in te dienen." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Sluiten" +@@ -281,7 +301,7 @@ msgstr "Over" + msgid "Quit" + msgstr "Verlaten" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -291,7 +311,7 @@ msgstr "" + "\n" + "Bevraag pakketdatabase en sla pakket en onderdeel naam op" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -303,11 +323,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Probleemmap" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Configuratiebestand" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Gebruik deze map als RPM root" + +@@ -323,24 +343,25 @@ msgstr "& [-v] -d MAP\n" + msgid "Root directory for running container commands" + msgstr "Root map voor het uitvoeren van container commando's" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opties]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Gebruik NUM as cliënt uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Loggen naar syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Voeg programmanamen toe aan de log" + +@@ -348,62 +369,52 @@ msgstr "Voeg programmanamen toe aan de log" + msgid "Unknown error" + msgstr "Onbekende fout" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' is geen geldige probleemmap" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' is geen geldige element naam" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' element kan niet veranderd worden" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' is geen geldige probleemmap" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Niet geauthoriseerd" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Krijg geen toegang tot het probleem om het te veranderen" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' element kan niet veranderd worden" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Veranderen van mapeigenaar mislukte. Controleer systeemlogs voor meer " + "details. " + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Krijg geen toegang tot het probleem om te lezen" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' is geen geldige element naam" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Kan grootte van '%s' niet verkrijgen" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Er is geen probleemruimte meer" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan het element '%s' niet verwijderen uit de probleemmap '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -413,12 +424,12 @@ msgstr "" + "De naam '%s' is verloren gegaan, controleer of er geen andere service draait " + "die eigenaar is van de naam.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Afsluiten na NUM seconden van inactiviteit" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Dit programma moet door root worden uitgevoerd" + +@@ -445,18 +456,22 @@ msgstr "Niet instellen als daemon" + msgid "Log to syslog even with -d" + msgstr "Loggen naar syslog zelfs met -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT MAP..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Voer EVENT uit op DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Communiceer rechtstreeks met de gebruiker" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -494,75 +509,76 @@ msgstr "Aantal gelijktijdige werkers. Standaard is " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale cachegrootte in MiB. Standaard is " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Zet de authenticatie uit" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support gebruikersnaam" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support wachtwoord, als deze niet opgegeven wordt, zal een prompt " + "uitgegeven worden" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL certificaatpaden of certificaattype" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Je moet voor --password ook --username specificeren" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Je kunt --username of --certificate gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Je kunt --username of --anonymous gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Je kunt --anonymous of --certificate gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Ongeldig aantal argumenten" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Onbekende optiewaarde: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Wachtwoord:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Kan niet verdergaan zonder wachtwoord\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Automatisch rapporteren met HTTP authenticatie" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Automatisch rapporteren met SSL Cliënt authenticatie" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Automatisch anoniem rapporteren" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -581,68 +597,68 @@ msgstr "" + " UPLOAD_MAP - Map waarin geüploade archieven opgeslagen worden\n" + " BESTANDSNAAM - Naam van geüploade archief\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Geen map: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Wordt overgeslagen: '{0}' (begint met een slash)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Wordt overgeslagen: '{0}' (begint met een punt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Wordt overgeslagen: '{0}' (bevat ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Wordt overgeslagen: '{0}' (bevat een spatie)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Wordt overgeslagen: '{0}' (bevat een tab)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Kan de map niet veranderen naar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Onbekend bestandstype: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Kan de werkmap niet veranderen naar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Kan '{0}' niet verplaatsen naar '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Kan '{0}' niet kopiëren naar '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Verificatiefout bij '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' wordt uitgepakt" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Kan map '{0}' niet aanmaken" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kan '{0}' niet uitpakken" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' is met succes verwerkt" + +@@ -666,21 +682,29 @@ msgstr "Kan niet chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Verwijderen probleemmap mislukt: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Kan geen probleemlijst verkrijgen van abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Kan met abrt-dbus niet testen of het element bestaat: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -725,7 +749,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Backtrace ontleden mislukte voor %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Crash thread werd niet gevonden" + +@@ -832,7 +856,7 @@ msgstr "Kan de oops boodschap niet extraheren: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops tekst met succes geextraheerd" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -840,6 +864,38 @@ msgstr "" + "De kernel log geeft aan dat hardwarefouten zijn ontdekt.\n" + "Dit is waarschijnlijk geen softwareprobleem.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -981,7 +1037,36 @@ msgstr "Ontbrekend debuginfo-bestand: {0}" + msgid "All debuginfo files are available" + msgstr "Alle debuginfo-bestanden zijn beschikbaar" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -991,7 +1076,7 @@ msgstr "" + "antwoord 'Nee' is , zal lokaal een stacktrace aangemaakt worden. (Dit kan " + "een grote hoeveelheid data gaan downloaden.)" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1224,7 +1309,8 @@ msgstr "Maak nieuwe probleem map aan in MAP voor elke gevonden oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Hetzelfde als -d DumpLocation, DumpLocation wordt gespecificeerd in abrt." +@@ -1236,16 +1322,18 @@ msgstr "Sla de geextraheerde informatie op in PROBLEEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Maak de probleemmap leesbaar voor iedereen" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Beperk het aanmaken van probleemmappen tot 1 per seconde" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Print zoekstring(s) naar stdout en sluit af" + +@@ -1254,9 +1342,13 @@ msgstr "Print zoekstring(s) naar stdout en sluit af" + msgid "Failed to compile regex" + msgstr "Reguliere expressie kon niet gecompileerd worden" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Kan het probleem niet vernieuwen: meer dan een oops gevonden" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1275,6 +1367,7 @@ msgstr "Opslaan gedetecteerde probleemdata in abrt database mislukte" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Kan de systemd-journal waarneming niet initialiseren" + +@@ -1311,11 +1404,13 @@ msgstr "Maak nieuwe probleemmap aan in MAP voor elke coredump" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Begin met lezen van systemd-journal op de CURSOR positie" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Begin met lezen van systemd-journal vanaf het einde" + +@@ -1329,17 +1424,20 @@ msgstr "Zelfde als -t INT, INT wordt gespecificeerd in plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Volg systemd-journal vanaf de laatst bekeken positie (indien beschikbaar)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Je moet -c CURSOR of -e specificeren" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Kan systemd-journal niet openen" + +@@ -1347,18 +1445,21 @@ msgstr "Kan systemd-journal niet openen" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Kan systemd-journal niet filteren naar alleen systemd-coredump data" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Kan niet zoeken tot aan het end van het journaal" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Instellen van systemd-journal cursor '%s' mislukte" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Kan geen journaaldata lezen" + +@@ -1390,28 +1491,77 @@ msgstr "" + "De laatst bekeken positie wordt opgeslagen in " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Lees journaalbestanden van alle machines" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Lees alle journaalbestanden uit de map op PAD" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Kan systemd-journal niet initialiseren in de map '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Kan systemd-journal niet filteren naar alleen kernel data" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Starten van waarneming vanaf cursor '%s' mislukte" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1421,46 +1571,50 @@ msgstr "" + "\n" + "Extraheer Xorg crash van FILE (of standaard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Print vond crashdata bij standaard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Maak probleem map aan in MAP voor elke gevonden crash" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Kan de positie van de journaalwaarneming niet opslaan" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Kan de positie van de journaalwaarneming niet opslaan: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "De positie van de journaalwaarneming wordt niet hersteld: bestand '%s' " + "bestaat niet" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + "Kan de positie van de journaalwaarneming niet herstellen van bestand '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Kan de positie van de journaalwaarneming niet herstellen: pad '%s' is geen " + "gewoon bestand" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1468,12 +1622,12 @@ msgstr "" + "Kan de positie van de journaalwaarneming niet herstellen: bestand '%s' " + "overschrijdt de %dB groottelimiet" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Kan de positie van de journaalwaarneming niet herstellen: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1481,7 +1635,7 @@ msgstr "" + "bestand '%s' niet lezen" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2022,7 +2176,7 @@ msgstr "Afsluiten van NSS mislukte." + msgid "Sleeping for %d seconds" + msgstr "In slaap voor %d seconden" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2030,7 +2184,7 @@ msgstr "" + "Er is een kernelprobleem opgetreden wegens een BIOS defect. Zulke problemen " + "kunnen helaas niet opgelost worden met kernelonderhoud." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2038,7 +2192,7 @@ msgstr "" + "Een kernelprobleem trad op, maar jouw hardware wordt niet ondersteund, " + "daarom kunnen kernelmaintainers dit probleem niet repareren." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2047,24 +2201,24 @@ msgstr "" + "Een kernelprobleem trad op, maar de kernel werd aangetast (flags:%s). " + "Kernelmaintainers kunnen geen diagnose stellen bij aangetaste rapporten." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Aangetaste modules: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lijst van bug ids" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Geef een bodhi-server-url op" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Geef een release op" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2074,20 +2228,20 @@ msgstr "" + "\n" + "Zoek naar updates op bodhi server" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Updates zoeken" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Geen updates voor dit pakket gevonden" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "De locale versie van het pakket is nieuwer dan de beschikbare updates" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2116,68 +2270,69 @@ msgstr "Print gevonden oopses" + msgid "Delete files with found oopses" + msgstr "Verwijder bestanden met gevonden oopses" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identificeert meer dan een probleemmap" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Gebruik: abrt-cli [--version] COMMANDO [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Toon problemen [in MAPpen]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Verwijder probleemmap DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyseer en rapporteer probleemdata in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Print informatie over DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Print de telling van de recente crashes" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Verwerk meerdere problemen" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opties]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Toon alleen niet-gerapporteerde problemen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Toon gedetailleerd rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Toon alleen de problemen die recenter zijn dan de gespecificeerde " + "tijdstempel" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Toon alleen de problemen die ouder zijn dan de gespecificeerde tijdstempel" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2189,51 +2344,61 @@ msgstr "" + "als een gebruiker met root rechten 'abrt-auto-reporting enabled' uit te " + "voeren.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Tekst groter dan dit zal verkort getoond worden" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Geen probleemmap '%s' bekend" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Print alleen de probleem telling zonder een boodschap" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Print alleen de problemen recenter is dan opgegeven tijdstempel" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-" + "cli list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [opties] MAP..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Verwijder PROBLEM_DIR na het rapporteren" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "'%s' wordt verwijderd" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [opties] MAP..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Verwijder PROBLEM_DIR na het rapporteren" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Acties: remove(rm), info(i), skip(s):" +@@ -2242,26 +2407,181 @@ msgstr "Acties: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acties: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' wordt gerapporteerd" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Duw voor het volgende probleem op ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Zonder het --since argument, wordt over alle gedetecteerde problemen " + "geïtereerd." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Selecteert alleen problemen die na het tijdstempel gedetecteerd zijn." + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/or.po b/po/or.po +index da975ec..7e64244 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "language/or/)\n" + "Language: or\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,102 +31,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' କୁ ଲେଖିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଖୋଲି ପାରିବେ ନାହିଁ" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ବିଜ୍ଞପ୍ତିକୁ ବନ୍ଦ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ରିପୋର୍ଟ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ବିଜ୍ଞପ୍ତି ଦର୍ଶାଇପାରିବେ ନାହିଁ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ଚ୍ୟାନେଲରୁ ପଢ଼ିପାରିବେ ନାହିଁ: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲରେ ସାଙ୍କେତିକରଣକୁ ସେଟ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲ ପାଇଁ ଅଟକ ରଖିପାରୁନଥିବା ଧାରାକୁ ଅନ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -137,6 +137,17 @@ msgstr "" + "ABRT ଦ୍ଵାରା ନୂତନ ସମସ୍ଯାଗୁଡ଼ିକ ଚିହ୍ନା ପଡ଼ିବା ସମୟରେ ଯେଉଁ ଚାଳକ ଆପଲେଟକୁ " + "ପରିବର୍ତ୍ତନ କରିଥାଏ\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -157,19 +168,15 @@ msgstr "ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" + msgid "Silent shortened reporting" + msgstr "ନିରବରେ ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"କୋରଡମ୍ପ ଫାଇଲଟି ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆବଶ୍ୟକ ଯାହାକି ସମୟ ଏବଂ ସ୍ଥାନ " +-"ଆବଶ୍ୟକ କରିଥିବା ପ୍ରୟୋଗ। ABRT ଏକ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ ଯାହାକି କୋର ଡମ୍ପରୁ ଷ୍ଟାକ " +-"ଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ କିନ୍ତୁ ଆପଣଙ୍କୁ ଏହି ସର୍ଭିସରେ କୋର ଡମ୍ପକୁ ଧାରଣ କରିବାକୁ ହେବ। " +-"ABRT କୁ ନିଷ୍କ୍ରିୟ କରିଥିବା ଏହି ବିକଳ୍ପ ସହିତ ତାହା ନପଚାରି କୋର ଡମ୍ପକୁ ଧାରଣ " +-"କରିଥାଏ।" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -219,29 +226,24 @@ msgstr "" + "ସମସ୍ୟାଗୁଡ଼ିକର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ଦର୍ଶାଇବ ନାହିଁ। ସକ୍ଷିପ୍ତ ଖବରକାରୀ ସକ୍ରିୟ " + "ହୋଇଥିଲେ ହିଁ କାର୍ଯ୍ଯକାରୀ ହୋଇଥାଏ।" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "coredump ଧାରଣ କରିବା ପୂର୍ବରୁ ପଚାରନ୍ତୁ" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ସମ୍ବେଦନଶୀଳ ସୂଚନା ପାଇଁ ବ୍ୟକ୍ତିଗତ ଟିକଟ ଅନୁରୋଧ କରନ୍ତୁୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ସୂଚାନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -251,6 +253,22 @@ msgstr "" + "ବ୍ୟବହାରକାରୀ ଲଗଆଉଟ ହେଉଛି। ମୂଲ୍ୟବାନ ସମସ୍ୟା ବିବରଣୀ ପ୍ରଦାନ କରିବା ପାଇଁ, ABRT " + "ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟାଗୁଡ଼ିକୁ ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେବ ନାହିଁ।" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "ବନ୍ଦ କରନ୍ତୁ (_C)" +@@ -276,14 +294,14 @@ msgstr "ବିବରଣୀ" + msgid "Quit" + msgstr "ବିଦାୟ ନିଅନ୍ତୁ" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -295,11 +313,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ସମସ୍ଯାବହୁଳ ଡିରେକ୍ଟୋରୀ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "କନଫିଗରେସନ ଫାଇଲ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -313,24 +331,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ବିକଳ୍ପଗୁଡିକ]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM କୁ କ୍ଲାଏଣ୍ଟ uid ଭାବରେ ବ୍ୟବହାର କରନ୍ତୁ" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog ପାଇଁ ଲଗ" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯୋଗ କରନ୍ତୁ" + +@@ -338,61 +357,51 @@ msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯ + msgid "Unknown error" + msgstr "ଅଜଣା ତ୍ରୁଟି" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "କ୍ଷମତା ସମ୍ପନ୍ନ ନୁହେଁ" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ପରିବର୍ତ୍ତନ ପାଇଁ ସମସ୍ୟାକୁ ଅଭିଗମ୍ୟ କରିପାରିବେ ନାହିଁ" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning ଡିରେକ୍ଟୋରୀ ବିଫଳ ହୋଇଛି। ଅଧିକ ବିବରଣୀ ପାଇଁ ତନ୍ତ୍ର ଲଗ ଯାଞ୍ଚ କରନ୍ତୁ।" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ର ଆକାର ପାଇବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "କୌଣସି ସମସ୍ୟା ସ୍ଥାନ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ଉପାଦାନ '%s' କୁ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ '%s' ରୁ ଅପସାରଣ କରିପାରିବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -402,12 +411,12 @@ msgstr "" + "'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ " + "କରନ୍ତୁ।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ସେକଣ୍ଡ ନିଷ୍କ୍ରିୟ ହେବା ପରେ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ଏହି ପ୍ରଗ୍ରାମକୁ ମୂଖ୍ଯ ଚାଳକ ଭାବରେ ଚଲାଇବା ଉଚିତ।" + +@@ -434,18 +443,22 @@ msgstr "daemonize କରନ୍ତୁ ନାହିଁ" + msgid "Log to syslog even with -d" + msgstr "-d ସହିତ ମଧ୍ଯ syslog ଘଟଣାକୁ ଲଗ କରନ୍ତୁ" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR ରେ EVENT କୁ ଚଲାନ୍ତୁ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ବ୍ୟବହାରକାରୀଙ୍କ ସହିତ ସିଧାସଳଖ ଭାବରେ ଯୋଗାଯୋଗ କରନ୍ତୁ" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -484,89 +497,90 @@ msgstr "ସହକାରୀ କର୍ମଚାରୀ ସଂଖ୍ୟା। ପୂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ସର୍ବାଧିକ କ୍ୟାଶେ ଆକାର MiB ରେ। ପୂର୍ବନିର୍ଦ୍ଧାରିତଟି ହେଉଛି" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ବୈଧିକରଣକୁ ଅଫ୍‌ କରନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat ସହାୟତା ବ୍ୟବହାରକାରୀ ନାମ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ସହାୟତା ପ୍ରବେଶ ସଂକେତ, ଯଦି ଦିଆଯାଇ ନାହିଁ, ତେବେ ଏହା ପାଇଁ ଏକ ପ୍ରମ୍ପ୍‌ଟ୍ " + "ଦିଆଯିବ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ପ୍ରମାଣପତ୍ର ପଥ କିମ୍ବା ପ୍ରମାଣପତ୍ର ପ୍ରକାର" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "ଆପଣଙ୍କୁ --password ପାଇଁ --username ମଧ୍ଯ ଉଲ୍ଲେଖ କରିବା ଆବଶ୍ୟକ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "ଆପଣ --username କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "ଆପଣ --username କିମ୍ବା --anonymous ବ୍ୟବହାର କରିପାରିବେ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "ଆପଣ --anonymous କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ଅବୈଧ ସଂଖ୍ୟକ ସ୍ୱତନ୍ତ୍ରଚର" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ଅଜଣା ବିକଳ୍ପ ମୂଲ୍ୟ: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "ପ୍ରବେଶ ସଂକେତ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ \n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL କ୍ଲାଏଣ୍ଟ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonymous ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବା" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -586,83 +600,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ଗୋଟିଏ ଡିରେକ୍ଟୋରୀ ନୁହଁ: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ସ୍ଲାଶ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ଡଟ୍‌ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଧାରଣ କରିଥାଏ ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଖାଲିସ୍ଥାନ ଧାରଣ କରିଥାଏ )" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଟ୍ୟାବ୍‌ ଧାରଣ କରିଥାଏ )" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ଡିରୋକ୍ଟୋରୀକୁ '{0}' ଭାବରେ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "ଅଜଣା ଫାଇଲ ପ୍ରକାର: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ରେ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' କୁ '{1}' କୁ ଘୁଞ୍ଚାଇପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' କୁ '{1}' କୁ ନକଲ କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ରେ ଯାଞ୍ଚ ତୃଟି" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' କୁ ଖୋଲୁଅଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' କୁ ଖୋଲିପାରିବେ ନାହିଁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' କୁ ସଫଳତାର ସହିତ କାର୍ଯ୍ୟକାରୀ ହୋଇଛି" + +@@ -686,18 +700,26 @@ msgstr "chown '%s' କରିପାରିବେ ନାହିଁ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଅପସାରଣ ବିଫଳ ହୋଇଛି: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତାଲିକା ପାଇପାରିବେ ନାହିଁ: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -745,7 +767,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s ପାଇଁ ବ୍ୟାକଟ୍ରାସ ବିଶ୍ଳେଷଣ ବିଫଳ ହୋଇଛି" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "କ୍ରାସ ଥ୍ରେଡ଼ ମିଳୁ ନାହିଁ" + +@@ -853,7 +875,7 @@ msgstr "oops ସନ୍ଦେଶକୁ ବାହାର କରିପାରିବ + msgid "Oops text extracted successfully" + msgstr "Oops ପାଠ୍ୟ ସଫଳତାର ସହିତ ବାହାର କରାଯାଇଛି" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -861,6 +883,38 @@ msgstr "" + "ହାର୍ଡୱେର ତୃଟିଗୁଡ଼ିକ ଚିହ୍ନଟ ହୋଇଛି ବୋଲି କର୍ଣ୍ଣଲ ଲଗ ସୂଚାଇଥାଏ।\n" + "ଏହା ସମ୍ଭବତଃ ଏକ ସଫ୍ଟୱେର ସମସ୍ୟା ନୁହଁ।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -978,7 +1032,36 @@ msgstr "ଅନୁପସ୍ଥିତ ତ୍ରୁଟିନିବାରଣ ଫା + msgid "All debuginfo files are available" + msgstr "ସମସ୍ତ ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ ଉପଲବ୍ଧ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -988,7 +1071,7 @@ msgstr "" + "ଆପଣଙ୍କର ଉତ୍ତର 'ନାଁ' ତେବେ, ସ୍ଥାନୀୟ ଭାବରେ ଏକ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି ହେବ। (ଏହା " + "ହୁଏତଃ ବହୁ ପରିମାଣର ତଥ୍ୟ ଆହରଣ କରିପାରେ)।" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1229,7 +1312,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d ଡମ୍ପ ଅବସ୍ଥାନ ପରି ସମାନ, ଡମ୍ପ ଅବସ୍ଥାନକୁ abrt.conf ରେ ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" +@@ -1240,16 +1324,18 @@ msgstr "ବାହାର କରାଯାଇଥିବା ସୂଚନାକୁ ସ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ବିଶ୍ୱ ପଠନଯୋଗ୍ୟ କରନ୍ତୁ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣକୁ ପ୍ରତି ସେକେଣ୍ଡରେ 1କୁ ତ୍ୱରିତ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ଼ିକୁ) ମୁଦ୍ରଣ କରନ୍ତୁ ଏବଂ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +@@ -1259,9 +1345,13 @@ msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ + msgid "Failed to compile regex" + msgstr "regex କୁ ସଙ୍କଳନ କରିବାରେ ବିଫଳ" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "ଏହି ସମସ୍ୟାକୁ ଅଦ୍ୟତନ କରିପାରିବେ ନାହିଁ: ଗୋଟିଏରୁ ଅଧିକ oops ମିଳିଛି" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1280,6 +1370,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1303,11 +1394,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1321,16 +1414,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1338,18 +1434,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1368,14 +1467,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1384,12 +1486,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1399,59 +1547,63 @@ msgstr "" + "\n" + "Xorg ନଷ୍ଟକୁ FILE (ଅଥବା ମାନକ ନିବେଶ) ରୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "ମାନକ ଫଳାଫଳ ଉପରେ ମୁଦ୍ରଣୀ ନଷ୍ଟ ତଥ୍ୟ ପାଇଛି" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "ମିଳିଥିବା ପ୍ରତ୍ୟେକ ନଷ୍ଟ ବିବରଣୀ ପାଇଁ DIR ରେ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1986,7 +2138,7 @@ msgstr "NSS କୁ ବନ୍ଦ କରିବାରେ ବିଫଳ।" + msgid "Sleeping for %d seconds" + msgstr "%d ସେକେଣ୍ଡ ପାଇଁ ସୁପ୍ତ ଅଛି" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1994,7 +2146,7 @@ msgstr "" + "ଖରାପ BIOS ହେତୁ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି। ଦୁର୍ଭାଗ୍ୟ ବଶତଃ, ଏପରି ସମସ୍ୟାଗୁଡ଼ିକୁ " + "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନଙ୍କ ଦ୍ୱାରା ସମାଧାନ ହୋଇପାରିବ ନାହିଁ।" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2002,7 +2154,7 @@ msgstr "" + "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି, କିନ୍ତୁ ଆପଣଙ୍କର ହାର୍ଡୱେର ସହାୟତା ପ୍ରାପ୍ତ ନୁହଁ, " + "ତେଣୁ କର୍ଣ୍ଣଲ ପରିଚାଳକ ମାନେ ଏହି ସମସ୍ୟାର ସମାଧାନ କରିବାରେ ଅସମର୍ଥ।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2011,24 +2163,24 @@ msgstr "" + "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଘଟିଛି, କିନ୍ତୁ ଆପଣଙ୍କର କର୍ଣ୍ଣଲ ଖରାପ ହୋଇଯାଇଛି (ସୂଚକ:%s). " + "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନେ ତ୍ରୁଟି ବିବରଣୀଗୁଡ଼ିକୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " ଦୂଷିତ ମଡ୍ୟୁଲଗୁଡ଼ିକ: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ତ୍ରୁଟି id ଗୁଡ଼ିକର ତାଲିକା" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ଏକ ବୋଧି ସର୍ଭର url ଉଲ୍ଲେଖ କରନ୍ତୁ" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ଏକ ପ୍ରକାଶନୀ ଉଲ୍ଲେଖ କରନ୍ତୁ" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2038,20 +2190,20 @@ msgstr "" + "\n" + "ବୋଧି ସର୍ଭର ଉପରେ ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରନ୍ତୁ" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରୁଅଛି" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ଏହି ପ୍ୟାକେଜ ପାଇଁ କୌଣସି ଅଦ୍ୟତନ ନାହିଁ" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "ପ୍ୟାକେଜର ସ୍ଥାନୀୟ ସଂସ୍କରଣ ଉପଲବ୍ଧ ଅଦ୍ୟତନଗୁଡ଼ିକ ଠାରୁ ନୂଆ ଅଟେ" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2079,68 +2231,69 @@ msgstr "ମୁଦ୍ରଣୀ oopses ପାଇଛି" + msgid "Delete files with found oopses" + msgstr "ମିଳିଥିବା oopses ସହିତ ଫାଇଲଗୁଡ଼ିକୁ ଅପସାରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ଗୋଟିଏରୁ ଅଧିକ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଚିହ୍ନିଟ କରିଛି" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ବ୍ୟବହାର ବିଧି: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "ତାଲିକା ସମସ୍ୟା [DIRs ରେ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ସମସ୍ଯା ଡିରେକ୍ଟୋରୀ DIRରୁ ଫାଇଲଗୁଡ଼ିକୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ରେ ସମସ୍ୟା ତଥ୍ୟକୁ ବିଶ୍ଳେଷଣ କରନ୍ତୁ ଏବଂ ଖବର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ବିଷୟରେ ସୂଚନାକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ନିକଟରେ ହୋଇଥିବା ନଷ୍ଟର ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ଏକାଧିକ ସମସ୍ୟାଗୁଡ଼ିକୁ କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' କୁ ଦେଖନ୍ତୁ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "କେବଳ ଖବର କରାଯାଇନଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "ବିସ୍ତୃତ ବିବରଣୀ ଦର୍ଶାନ୍ତୁ" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମାର ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମା ଠାରୁ ପୁରୁଣା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2151,55 +2304,65 @@ msgstr "" + "କୁ ନ୍ୟସ୍ତ କରି\n" + "ଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ଏହାଠାରୁ ବଡ଼ ପାଠ୍ୟକୁ ସଂକ୍ଷିପ୍ତରେ ଦର୍ଶାଯିବ" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ଏପରି କୌଣସି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନାହିଁ '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "କୌଣସି ସନ୍ଦେଶ ବିନା କେବଳ ସମସ୍ୟା ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟ ସୀମା ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u ସମସ୍ୟା(ଗୁଡ଼ିକୁ) ଚିହ୍ନଟ କରିଛି। ଅଧିକ ସୂଚନା ପାଇଁ ଏହାକୁ ଚଲାନ୍ତୁ: abrt-" + "cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& ବିବରଣୀ [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "ଖବର କରିସାରିବା ପରେ PROBLEM_DIR କୁ ବାହାର କରନ୍ତୁ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "କାର୍ଯ୍ୟ: (rm), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" +@@ -2210,28 +2373,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "କାର୍ଯ୍ୟ: (rm),report(e), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' କୁ ଖବର କରା ସରିଛି" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ପରବର୍ତ୍ତୀ ସମସ୍ୟା ପାଇଁ ENTER ଦବାନ୍ତୁ:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "କେବଳ timestamp ପରେ ଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ବାଛନ୍ତୁ" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pa.po b/po/pa.po +index 4a9d600..15a960a 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "abrt/language/pa/)\n" + "Language: pa\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -33,102 +33,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਖੋਲ ਸਕਿਆ" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ਸੂਚਨਾ ਬੰਦ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "ਰਿਪੋਰਟ" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ਸੂਚਨਾ ਨਹੀਂ ਵੇਖਾ ਸਕਿਆ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "'%s' ਤੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ਚੈਨਲ ਤੇ ਇੰਕੋਡਿੰਗ ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ਚੈਨਲ ਲਈ ਨਾਨ-ਬਲਾਕਿੰਗ ਮੋਡ ਨਹੀਂ ਚਾਲੂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -138,6 +138,17 @@ msgstr "" + "\n" + "ਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੀ ਨਵੀਂ ਸਮੱਸਿਆ ਬਾਰੇ ਦੱਸਦਾ ਹੈ\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -156,18 +167,15 @@ msgstr "" + msgid "Silent shortened reporting" + msgstr "" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"ਸਟੈਕ ਪੈਦਾ ਕਰਨ ਲਈ ਕੋਰਡੰਪ ਫਾਈਲ ਜਰੂਰੀ ਹੈ ਜਿਹੜੀ ਕਿ ਸਮਾਂ ਅਤੇ ਜਗ੍ਹਾ ਲੈਣ ਵਾਲੀ " +-"ਕਾਰਵਾਈ ਹੈ। ABRT ਇੱਕ ਸੇਵਾ ਮੁਹੱਈਆ ਕਰਵਾਉਂਦਾ ਹੈ ਜਿਹੜੀ ਕੋਰਡੰਪ ਤੋਂ ਸਟੈਕ ਟਰੇਸ ਪੈਦਾ " +-"ਕਰਦੀ ਹੈ ਪਰ ਤੁਹਾਨੂੰ ਇਸ ਸੇਵਾ ਨੂੰ ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨਾ ਪੈਂਦਾ ਹੈ। ਇਸ ਚੋਣ ਨੂੰ ਅਯੋਗ " +-"ਕਰਨ ਨਾਲ ABRT ਕੋਰਡੰਪ ਨੂੰ ਬਿਨਾਂ ਪੁੱਛੇ ਹੀ ਅੱਪਲੋਡ ਕਰ ਦੇਵੇਗਾ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -198,34 +206,45 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪੁੱਛੋ" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ਸੰਵੇਦਨਸ਼ੀਲ ਜਾਣਕਾਰੀ ਲਈ ਨਿੱਜੀ ਟਿਕਟ ਦੀ ਬੇਨਤੀ ਕਰੋ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "ਅਧੂਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਲਈ ਸੂਚਿਤ ਕਰੋ" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -252,14 +271,14 @@ msgstr "ਬਾਰੇ" + msgid "Quit" + msgstr "ਨਿੱਕਲੋ" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -271,11 +290,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -289,24 +308,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ਚੋਣਾਂ]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM ਨੂੰ ਕਲਾਂਈਟ uid ਤੌਰ ਤੇ ਵਰਤੋ" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog ਵਿੱਚ ਲਾਗ ਕਰੋ" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" + +@@ -314,60 +334,50 @@ msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" + msgid "Unknown error" + msgstr "ਅਣਜਾਣੀ ਗਲਤੀ" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ਪਰਮਾਣਤ ਨਹੀਂ" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ਸੁਧਾਰ ਲਈ ਸਮੱਸਿਆ ਨਹੀਂ ਵੇਖ ਸਕਦਾ" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" ++msgid "'%s' element can't be modified" ++msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ਦਾ ਆਕਾਰ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ਕੋਈ ਸਮੱਸਿਆ ਸਪੇਸ ਨਹੀਂ ਬਚੀ" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ਐਲੀਮੈਂਟ '%s' ਨੂੰ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ '%s' ਤੋਂ ਹਟਾ ਨਹੀਂ ਸਕਦਾ" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -377,12 +387,12 @@ msgstr "" + "ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ " + "ਰਿਹਾ।\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ਸਕਿੰਟਾਂ ਦੀ ਕਾਰਵਾਈ ਤੋਂ ਬਾਅਦ ਬੰਦ ਕਰੋ" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ਇਹ ਪਰੋਗਰਾਮ ਪਰਬੰਧਕ(root) ਦੇ ਤੌਰ ਤੇ ਚਲਾਉਣਾ ਜਰੂਰੀ ਹੈ।" + +@@ -408,18 +418,22 @@ msgstr "ਡੈਮਨਾਈਜ਼ ਨਾ ਕਰੋ" + msgid "Log to syslog even with -d" + msgstr "syslog ਵਿੱਚ ਭਾਵੇਂ -d ਚੋਣ ਨਾਲ ਲਾਗ ਕਰੋ" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT ਨੂੰ DIR ਉੱਪ ਚਲਾਓ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "ਯੂਜ਼ਰ ਨੂੰ ਸਿੱਧਾ ਸੰਪਰਕ ਕਰੋ" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -461,75 +475,76 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਕੈਚੇ ਆਕਾਰ MiB ਵਿੱਚ। ਮੂਲ ਹੈ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "ਅਢੁਕਵੀਂ ਗਿਣਤੀ ਦੇ ਆਰਗੂਮੈਂਟ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ਅਣਪਛਾਤਾ ਚੋਣ ਮੁੱਲ: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -541,68 +556,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -626,18 +641,26 @@ msgstr "chown '%s' ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਸੂਚੀ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -684,7 +707,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s ਲਈ ਬੈਕਟਰੇਸ ਪਾਰਸਿੰਗ ਫੇਲ ਹੋਈ ਹੈ" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ਕਰੈਸ਼ ਥਰੈੱਡ ਨਹੀਂ ਲੱਭਿਆ" + +@@ -791,7 +814,7 @@ msgid "Oops text extracted successfully" + msgstr "Oops ਸਫਲਤਾਪੂਰਵਕ ਨਿਖੇੜਿਆ ਗਿਆ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -799,6 +822,38 @@ msgstr "" + "ਕਰਨਲ ਲੌਗ ਸੰਕੇਤ ਕਰਦਾ ਹੈ ਕਿ ਹਾਰਡਵੇਅਰ ਗਲਤੀਆਂ ਖੋਜੀਆਂ ਗਈਆਂ।\n" + "ਇਹ ਸਾਫਟਵੇਅਰ ਸਮੱਸਿਆ ਉੱਕਾ ਹੀ ਨਹੀਂ ਹੋ ਸਕਦੀ।\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -916,7 +971,36 @@ msgstr "ਗੈਰ-ਮੌਜੂਦ debuginfo ਫਾਇਲ: {0}" + msgid "All debuginfo files are available" + msgstr "ਸਭ debuginfo ਫਾਇਲਾਂ ਉਪਲੱਬਧ ਹਨ" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -926,7 +1010,7 @@ msgstr "" + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1157,7 +1241,8 @@ msgstr "ਹਰੇਕ oops ਲਈ ਨਵੀਂ ਸਮੱਸਿਆ ਡਾਇਰੈ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation ਵਾਂਗ, DumpLocation ਨੂੰ abrt.conf ਵਿੱਚ ਨਿਰਧਾਰਤ ਕੀਤਾ ਹੈ" + +@@ -1167,16 +1252,18 @@ msgstr "ਅਲੱਗ ਕੀਤੀ ਹੋਈ ਜਾਣਕਾਰੀ PROBLEM ਵਿ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਪੜ੍ਹਨਯੋਗ ਬਣਾਓ" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 ਪ੍ਰਤੀ ਸੈਕਿੰਡ ਨਾਲ ਥਰੌਟਲ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣਾ " + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ ਅਤੇ ਬਾਹਰ ਜਾਓ" + +@@ -1185,9 +1272,13 @@ msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕ + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "ਮੁਸ਼ਕਿਲ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦਾ: ਇੱਕ ਤੋਂ ਜਿਆਦਾ oops ਲੱਭੀਆਂ" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1206,6 +1297,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1229,11 +1321,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1247,16 +1341,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1264,18 +1361,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1294,14 +1394,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1310,12 +1413,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1325,58 +1474,62 @@ msgstr "" + "\n" + "Xorg ਕਰੈਸ਼ ਨੂੰ FILE (ਜਾਂ ਸਟੈਂਡਰਡ ਇੰਪੁੱਟ) ਤੋਂ ਲਵੋ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "ਮਿਲੇ ਕਰੈਸ਼ ਡਾਟੇ ਨੂੰ ਸਟੈਂਡਰਡ ਆਊਟਪੁੱਟ ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "ਹਰੇਕ ਕਰੈਸ਼ ਲਈ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1903,7 +2056,7 @@ msgid "Sleeping for %d seconds" + msgstr "%d ਸੈਕਿੰਡਾਂ ਲਈ ਸੌਂ ਰਿਹਾ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1912,7 +2065,7 @@ msgstr "" + "ਮੁਸ਼ਕਲਾਂ ਕਰਨਲ ਪਰਬੰਧਕਾਂ ਦੁਆਰਾ ਠੀਕ ਹੋਣ ਯੋਗ ਨਹੀਂ ਹਨ।" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1920,7 +2073,7 @@ msgstr "" + "ਇੱਕ ਕਰਨਲ ਮੁਸ਼ਕਲ ਵਾਪਰੀ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਹਾਰਡਵੇਅਰ ਅਸਮਰਥਿਤ ਹੈ, ਇਸ ਲਈ ਕਰਨਲ ਪਰਬੰਧਕ ਇਸ " + "ਮੁਸ਼ਕਲ ਨੂੰ ਠੀਕ ਕਰਨ ਤੋਂ ਅਸਮਰੱਥ ਹਨ।" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1929,24 +2082,24 @@ msgstr "" + "ਇੱਕ ਕਰਨਲ ਸਮੱਸਿਆ ਆਈ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਕਰਨਲ ਖਰਾਬ (flags:%s) ਹੋ ਗਿਆ ਹੈ। ਕਰਨਲ ਪਰਬੰਧਕ " + "ਖਰਾਬੀ ਬਾਰੇ ਪੜਤਾਲ ਕਰਨ ਤੋਂ ਅਸਮਰਥ ਹਨ।" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "ਟੈਂਟਡ ਮੋਡੀਊਲ: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "ਬੱਗ ids ਦੀ ਸੂਚੀ" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ਇੱਕ ਬੋਧੀ ਸਰਵਰ url ਦਿਓ" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ਇੱਕ ਰੀਲੀਜ਼ ਦਿਓ" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1956,20 +2109,20 @@ msgstr "" + "\n" + "ਬੋਧੀ ਸਰਵਰ ਤੇ ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜੋ" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜ ਰਿਹਾ ਹੈ" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ਇਸ ਪੈਕੇਜ ਲਈ ਕੋਈ ਅੱਪਡੇਟ ਨਹੀਂ ਲੱਭਿਆ" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "ਪੈਕੇਜ ਦਾ ਲੋਕਲ ਵਰਜਨ ਉਪਲੱਬਧ ਅੱਪਡੇਟਾਂ ਤੋਂ ਨਵਾਂ ਹੈ" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1995,69 +2148,70 @@ msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਨੂੰ ਛਾਪੋ" + msgid "Delete files with found oopses" + msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਵਾਲੀਆਂ ਫਾਈਲਾਂ ਮਿਟਾਓ" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ਇੱਕ ਤੋਂ ਜਿਆਦਾ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀਆਂ ਪਛਾਣਦਾ ਹੈ" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ਵਰਤੋਂ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਹਟਾਓ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ਵਿੱਚ ਸਮੱਸਿਆ ਡਾਟੇ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਰਿਪੋਰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਿੰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ਹਾਲੀਆ ਹੋਏ ਕਰੈਸ਼ਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ 'abrt-cli COMMAND --help' ਵੇਖੋ" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "ਸਿਰਫ ਨਾ ਸੂਚਿਤ ਕੀਤੀਆਂ ਮੁਸ਼ਕਲਾਂ ਹੀ ਸੂਚੀਬੱਧ ਕਰੋ" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "ਵਿਸਥਾਰ ਰਿਪੋਰਟ ਵੇਖਾਓ" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਸੱਜਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਪੁਰਾਣੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2068,51 +2222,61 @@ msgstr "" + "reporting enabled' ਨੂੰ\n" + "ਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "ਇਸ ਤੋਂ ਵੱਡਾ ਪਾਠ ਸੰਖੇਪਿਤ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ਕੋਈ '%s' ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸੁਨੇਹੇ ਦੇ ਸਿਰਫ਼ ਮੁਸ਼ਕਿਲਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "ਸਿਰਫ਼ ਸਮਾਂ-ਮੋਹਰ ਤੋਂ ਵੀ ਹਾਲੀਆ ਹੋਈਆਂ ਮੁਸ਼ਕਿਲਾਂ ਹੀ ਛਾਪੋ" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ਨੇ %u ਸਮੱਸਿਆ(ਸਮੱਸਿਆਵਾਂ) ਲੱਭੀਆਂ ਹਨ। ਜਿਆਦਾ ਜਾਣਕਾਰੀ ਲਈ ਚਲਾਓ: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2121,24 +2285,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pl.po b/po/pl.po +index cf77ca9..e68bfe1 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -10,18 +10,18 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-17 03:32-0400\n" ++"PO-Revision-Date: 2015-08-28 12:31-0400\n" + "Last-Translator: Piotr Drąg \n" + "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/pl/)\n" + "Language: pl\n" + "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " + "|| n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -31,41 +31,41 @@ msgstr "Zgłaszanie problemów" + msgid "View and report application crashes" + msgstr "Wyświetlanie i zgłaszanie awarii aplikacji" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "Nie można zmienić właściciela \"%s\"" ++msgstr "Nie można zmienić właściciela „%s”" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "Nie można otworzyć katalogu do zapisania \"%s\"" ++msgstr "Nie można otworzyć katalogu do zapisania „%s”" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nie można zamknąć powiadomienia: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ups." + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Zgłoś" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Uruchom ponownie" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "Program %s uległ awarii. Problem został automatycznie zgłoszony." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -74,8 +74,8 @@ msgstr "" + "Program %s uległ awarii. Problem zostanie zgłoszony po uzyskaniu dostępu do " + "Internetu." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -84,7 +84,7 @@ msgstr "" + "Program %s uległ awarii. Proszę skontaktować się z programistami programu, " + "aby zgłosić problem." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -93,13 +93,13 @@ msgstr "" + "Program %s uległ awarii. Prosimy o wysłanie zgłoszenia, aby pomóc w " + "naprawieniu problemu." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "Wystąpił problem w składniku. Został on automatycznie zgłoszony." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -107,7 +107,7 @@ msgstr "" + "Wystąpił problem w składniku. Zostanie on zgłoszony po uzyskaniu dostępu do " + "Internetu." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -115,38 +115,49 @@ msgstr "" + "Wystąpił problem. Prosimy o wysłanie zgłoszenia, aby pomóc w jego " + "naprawieniu." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nie można wyświetlić powiadomienia: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "Nie można odczytać z kanału GIO: \"%s\"" ++msgstr "Nie można odczytać z kanału GIO: „%s”" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nie można ustawić kodowania na kanale GIO: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nie można włączyć trybu nieblokowania dla kanału GIO: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" +-"& [-v] [KATALOG]...\n" ++"& [-v] [KATALOG]…\n" + "\n" + "Aplet powiadamiający użytkownika o nowych problemach wykrytych przez program " + "ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Pytanie przed przechwytywaniem katalogu" +@@ -168,13 +179,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest " +-"działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może " +-"tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut " +-"do usługi. Jeśli ta opcja jest wyłączona, to program ABRT będzie wysyłał " +-"zrzuty core bez pytania." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -222,10 +230,6 @@ msgstr "" + "włączone jest Skrócone zgłaszanie." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Pytanie przed wysłaniem zrzutu core" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -233,15 +237,15 @@ msgstr "" + "Jeśli ta opcja jest włączona, to program ABRT będzie tworzył zgłoszenie " + "błędu z ograniczonym dostępem zawsze, kiedy wykryte zostaną prywatne dane." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Żądanie prywatnych zgłoszeń dla prywatnych informacji" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Powiadamianie o niepełnych problemach" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -251,6 +255,22 @@ msgstr "" + "jest wylogowywany. Aby dostarczać wartościowe zgłoszenia błędów, program " + "ABRT nie będzie umożliwiał wysłania takich problemów." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "Za_mknij" +@@ -276,7 +296,7 @@ msgstr "O programie" + msgid "Quit" + msgstr "Zakończ" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -286,7 +306,7 @@ msgstr "" + "\n" + "Odpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -298,11 +318,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Katalog problemu" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Plik konfiguracji" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Używa tego katalogu jako katalogu głównego pakietu RPM" + +@@ -318,24 +338,25 @@ msgstr "& [-v] -d KATALOG\n" + msgid "Root directory for running container commands" + msgstr "Katalog główny do wykonywania poleceń kontenera" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opcje]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Używa NUMERU jako UID klienta" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Przekazuje komunikaty do dziennika systemowego" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Dodaje nazwy programów do dziennika" + +@@ -343,77 +364,67 @@ msgstr "Dodaje nazwy programów do dziennika" + msgid "Unknown error" + msgstr "Nieznany błąd" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "\"%s\" nie jest prawidłowym katalogiem problemu" ++msgid "'%s' is not a valid element name" ++msgstr "„%s” nie jest prawidłową nazwą elementu" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Nie można modyfikować elementu \"%s\"" ++msgid "'%s' is not a valid problem directory" ++msgstr "„%s” nie jest prawidłowym katalogiem problemu" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Brak upoważnienia" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nie można uzyskać dostępu do problemu, aby go zmodyfikować" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Nie można modyfikować elementu „%s”" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Zmiana właściciela katalogu się nie powiodła. W dziennikach systemu można " + "znaleźć więcej informacji." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Nie można uzyskać dostępu do problemu, aby go odczytać" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "\"%s\" nie jest prawidłową nazwą elementu" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "Nie można uzyskać rozmiaru \"%s\"" ++msgstr "Nie można uzyskać rozmiaru „%s”" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Brak miejsca na problemy" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "Nie można usunąć elementu \"%s\" z katalogu problemów \"%s\"" +- +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" ++msgstr "Nie można usunąć elementu „%s” z katalogu problemów „%s”" + +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca " ++"Nazwa „%s” została utracona. Proszę sprawdzić, czy inna usługa będąca " + "właścicielem nazwy jest uruchomiona.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kończy działanie po LICZBIE sekund nieaktywności" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ten program musi być uruchamiany jako root." + +@@ -433,29 +444,33 @@ msgstr "" + + #: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" +-msgstr "Bez tworzenia demona" ++msgstr "Bez tworzenia usługi" + + #: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" + msgstr "" + "Przekazuje komunikaty do dziennika systemowego, nawet jeśli podano opcję -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ZDARZENIE KATALOG..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Wykonuje ZDARZENIE w KATALOGU" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikuje się bezpośrednio z użytkownikiem" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum \"%s\"" ++msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum „%s”" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -490,88 +505,89 @@ msgstr "Liczba jednocześnie działających wątków. Domyślnie wynosi" + msgid "Maximal cache size in MiB. Default is " + msgstr "Maksymalny rozmiar pamięci podręcznej w MiB. Domyślnie wynosi" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Wyłącza uwierzytelnianie" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nazwa użytkownika Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Hasło Red Hat Support, jeśli nie podano, to użytkownik zostanie o nie " + "zapytany" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Ścieżki lub typ certyfikatu SSL uReport" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Należy także podać --username dla opcji --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Można użyć tylko --username lub --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Można użyć tylko --username lub --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Można użyć tylko --anonymous lub --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Nieprawidłowa liczba parametrów" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Nieznana wartość opcji: \"%s\"\n" ++msgstr "Nieznana wartość opcji: „%s”\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Hasło:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Nie można kontynuować bez hasła\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Automatyczne zgłaszanie uwierzytelnione przez HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Automatyczne zgłaszanie uwierzytelnione przez klienta SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonimowe automatyczne zgłaszanie" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -586,76 +602,76 @@ msgstr "" + "\n" + " -v - Więcej informacji\n" + " -d - Usuwa wysłane archiwum\n" +-" KATALOG_SZPULI_ABRT - Katalog, do którego rozpakowywane są prawidłowo " ++" KATALOG_SZPULI_ABRT — Katalog, do którego rozpakowywane są prawidłowo " + "wysłane archiwa\n" +-" KATALOG_WYSYŁANIA - Katalog, w którym przechowywane są wysłane " ++" KATALOG_WYSYŁANIA — Katalog, w którym przechowywane są wysłane " + "archiwa\n" +-" NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" ++" NAZWA_PLIKU — Nazwa pliku wysłanego archiwum\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "Nie jest katalogiem: \"{0}\"" ++msgstr "Nie jest katalogiem: „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "Pomijanie: \"{0}\" (rozpoczyna się od ukośnika)" ++msgstr "Pomijanie: „{0}” (rozpoczyna się od ukośnika)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "Pomijanie: \"{0}\" (rozpoczyna się od kropki)" ++msgstr "Pomijanie: „{0}” (rozpoczyna się od kropki)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "Pomijanie: \"{0}\" (zawiera ..)" ++msgstr "Pomijanie: „{0}” (zawiera ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "Pomijanie: \"{0}\" (zawiera spację)" ++msgstr "Pomijanie: „{0}” (zawiera spację)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "Pomijanie: \"{0}\" (zawiera tabulację)" ++msgstr "Pomijanie: „{0}” (zawiera tabulację)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "Nie można zmienić katalogu na \"{0}\"" ++msgstr "Nie można zmienić katalogu na „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "Nieznany typ pliku: \"{0}\"" ++msgstr "Nieznany typ pliku: „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" +-msgstr "Nie można utworzyć katalogu roboczego w \"{0}\"" ++msgstr "Nie można utworzyć katalogu roboczego w „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" +-msgstr "Nie można przenieść \"{0}\" do \"{1}\"" ++msgstr "Nie można przenieść „{0}” do „{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "Nie można skopiować \"{0}\" do \"{1}\"" ++msgstr "Nie można skopiować „{0}” do „{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" +-msgstr "Błąd sprawdzania w \"{0}\"" ++msgstr "Błąd sprawdzania w „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" +-msgstr "Rozpakowywanie \"{0}\"" ++msgstr "Rozpakowywanie „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" +-msgstr "Nie można utworzyć katalogu \"{0}\"" ++msgstr "Nie można utworzyć katalogu „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" +-msgstr "Nie można rozpakować \"{0}\"" ++msgstr "Nie można rozpakować „{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" +-msgstr "Pomyślnie przetworzono \"{0}\"" ++msgstr "Pomyślnie przetworzono „{0}”" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -670,33 +686,41 @@ msgstr "Nie można połączyć z systemową magistralą D-Bus: %s" + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "Nie można zmienić właściciela \"%s\": %s" ++msgstr "Nie można zmienić właściciela „%s”: %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Usunięcie katalogu problemu się nie powiodło: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nie można uzyskać listy problemów z abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Nie można sprawdzić przez abrt-dbus, czy element istnieje: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "Nie można utworzyć pliku tymczasowego \"%s\"" ++msgstr "Nie można utworzyć pliku tymczasowego „%s”" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -704,15 +728,15 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"Nie można zapisać do \"%s\". Problem \"%s\" nie zostanie usunięty z " +-"zignorowanych problemów \"%s\"" ++"Nie można zapisać do „%s”. Problem „%s” nie zostanie usunięty z " ++"zignorowanych problemów „%s”" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +-"Nie można zmienić nazwy \"%s\" na \"%s\". Usunięcie problemu \"%s\" się nie " ++"Nie można zmienić nazwy „%s” na „%s”. Usunięcie problemu „%s” się nie " + "powiodło" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 +@@ -735,9 +759,9 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +-msgstr "Przetworzenie wyjątku nie powiodło się dla %s" ++msgstr "Przetworzenie wyjątku się nie powiodło dla %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Nie odnaleziono wątku awarii" + +@@ -754,7 +778,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "Analizowanie zrzutu core \"%s\"" ++msgstr "Analizowanie zrzutu core „%s”" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format +@@ -806,7 +830,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "Nie wczytano modułu \"%s\" - ta awaria nie zostanie zgłoszona" ++msgstr "Nie wczytano modułu „%s” — ta awaria nie zostanie zgłoszona" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -838,13 +862,13 @@ msgstr "Nie można przetworzyć {0}:\n" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "Nie można wypakować komunikatu oops: \"{0}\"" ++msgstr "Nie można wypakować komunikatu oops: „{0}”" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Pomyślnie wypakowano tekst awarii oops" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -852,6 +876,38 @@ msgstr "" + "Dziennik jądra wskazuje na wykrycie błędów sprzętowych.\n" + "Prawdopodobnie nie jest to problem oprogramowania.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -939,8 +995,8 @@ msgid "" + msgstr "" + "Użycie: %s [-vy] [--ids=PLIK_IDENTYFIKATORÓW_BUDOWANIA] [--pkgmgr=(yum|dnf)]\n" + " [--tmpdir=KATALOG_TYMCZASOWY] [--cache=KATALOG_PAMIĘCI_PODRĘCZNEJ[:" +-"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2...]] [--size_mb=ROZMIAR]\n" +-" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]...]\n" ++"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2…]] [--size_mb=ROZMIAR]\n" ++" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]…]\n" + "\n" + "Instaluje pakiety debuginfo dla wszystkich identyfikatorów budowania\n" + "wymienionych w PLIKU_IDENTYFIKATORÓW_BUDOWANIA w " +@@ -952,13 +1008,13 @@ msgstr "" + "Odczytuje konfigurację z pliku /etc/abrt/plugins/CCpp.conf\n" + "\n" + " -v Więcej komunikatów\n" +-" -y Nieinteraktywnie, przyjmuje \"Tak\" na wszystkie pytania\n" ++" -y Nieinteraktywnie, przyjmuje „Tak” na wszystkie pytania\n" + " --ids Domyślnie: identyfikatory_budowania\n" + " --tmpdir Domyślnie: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" + "LOSOWY_PRZYROSTEK\n" + " --cache Domyślnie: /var/cache/abrt-di\n" + " --size_mb Domyślnie: 4096\n" +-" --pkgmgr Domyślnie: \"PackageManager\" z pliku CCpp.conf lub \"dnf\"\n" ++" --pkgmgr Domyślnie: „PackageManager” z pliku CCpp.conf lub „dnf”\n" + " -e,--exact Pobiera tylko podane pliki\n" + " --repo Wzorzec do użycia podczas wyszukiwania repozytoriów.\n" + " Domyślnie: *debug*\n" +@@ -982,7 +1038,7 @@ msgstr "{0} plików debuginfo nie jest zainstalowanych" + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" + msgstr "" + "Nieprawidłowa konfiguracja dodatku CCpp, nieobsługiwany menedżer pakietów: " +-"\"%s\"" ++"„%s”" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +@@ -996,17 +1052,46 @@ msgstr "Brak pliku debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Wszystkie pliki debuginfo są dostępne" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + "Wysłać zrzut core (może on zawierać prywatne dane)? Jeśli wybrana zostanie " +-"odpowiedź \"nie\", to wyjątek stosu zostanie utworzony lokalnie (może to " ++"odpowiedź „nie”, to wyjątek stosu zostanie utworzony lokalnie (może to " + "spowodować pobranie dużej ilości danych)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1022,8 +1107,7 @@ msgid "" + "SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" +-"& [-v] [-d ROZMIAR:KATALOG]... [-f ROZMIAR:KATALOG]... [-p KATALOG] [PLIK]..." +-"\n" ++"& [-v] [-d ROZMIAR:KATALOG]… [-f ROZMIAR:KATALOG]… [-p KATALOG] [PLIK]…\n" + "\n" + "Usuwa katalogi (-d) lub pliki (-f) problemów w KATALOGACH, dopóki nie są " + "mniejsze niż ROZMIAR.\n" +@@ -1044,12 +1128,12 @@ msgstr "Zachowuje ten katalog" + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "Nie można uruchomić \"%s\", komunikat błędu: \"%s\"" ++msgstr "Nie można uruchomić „%s”, komunikat błędu: „%s”" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "Nie jest liczbą w \"%s\"" ++msgstr "Nie jest liczbą w „%s”" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format +@@ -1205,7 +1289,7 @@ msgid "" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" + msgstr "" +-"& [-vs] [-F POTOK]... PLIKI PROGRAM [PARAMETRY]\n" ++"& [-vs] [-F POTOK]… PLIKI PROGRAM [PARAMETRY]\n" + "\n" + "Obserwuje PLIK dziennika, wykonuje PROGRAM, kiedy plik się powiększy lub " + "zostanie zastąpiony" +@@ -1241,7 +1325,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "To samo, co -d DumpLocation, DumpLocation jest określone w pliku abrt.conf" +@@ -1252,16 +1337,18 @@ msgstr "Zapisuje wydobytą informację w PROBLEMIE" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Ustawia katalog problemu jako do odczytu dla każdego" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Przełącza tworzenie katalogów problemów na jeden na sekundę" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działanie" + +@@ -1270,10 +1357,13 @@ msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działan + msgid "Failed to compile regex" + msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"Nie można zaktualizować problemu: znaleziono więcej niż jedną awarię oops" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1296,6 +1386,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Zainicjowanie obserwacji systemd-journal się nie powiodło" + +@@ -1332,11 +1423,13 @@ msgstr "Tworzy nowy katalog problemu w KATALOGU dla każdego zrzutu core" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Rozpoczyna odczytywanie systemd-journal z położenia KURSORA" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Rozpoczyna odczytywanie systemd-journal od końca" + +@@ -1350,6 +1443,7 @@ msgstr "To samo, co -t INT, INT jest określone w pliku plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Podąża za systemd-journal od ostatnio widzianego położenia (jeśli jest " +@@ -1357,11 +1451,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Należy podać -c KURSOR lub -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Nie można otworzyć systemd-journal" + +@@ -1369,18 +1465,21 @@ msgstr "Nie można otworzyć systemd-journal" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Nie można filtrować tylko danych systemd-coredump z systemd-journal" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Nie można przejść do końca dziennika" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "Ustawienie kursora systemd-journal \"%s\" się nie powiodło" ++msgstr "Ustawienie kursora systemd-journal „%s” się nie powiodło" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Nie można odczytać danych dziennika." + +@@ -1412,28 +1511,77 @@ msgstr "" + "Ostatnio widziane położenie jest zapisywane w " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Odczytuje pliki dziennika ze wszystkich komputerów" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Odczytuje wszystkie pliki dziennika z katalogu w ŚCIEŻCE" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Nie można zainicjować systemd-journal w katalogu „%s”" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Nie można filtrować tylko danych jądra z systemd-journal" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" +-msgstr "Rozpoczęcie obserwacji od kursora \"%s\" się nie powiodło" ++msgstr "Rozpoczęcie obserwacji od kursora „%s” się nie powiodło" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1443,70 +1591,74 @@ msgstr "" + "\n" + "Wydobywa awarię Xorg z PLIKU (lub standardowego wejścia)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Wyświetla odnalezione dane awarii w standardowym wyjściu" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Nie można zapisać położenia obserwacji dziennika" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Nie można zapisać położenia obserwacji dziennika: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" +-"Położenie obserwacji dziennika nie zostanie przywrócone: plik \"%s\" nie " ++"Położenie obserwacji dziennika nie zostanie przywrócone: plik „%s” nie " + "istnieje" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" +-msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku \"%s\"" ++msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku „%s”" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" +-"Nie można przywrócić położenia obserwacji dziennika: ścieżka \"%s\" nie jest " ++"Nie można przywrócić położenia obserwacji dziennika: ścieżka „%s” nie jest " + "zwykłym plikiem" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" +-"Nie można przywrócić położenia obserwacji dziennika: plik \"%s\" przekracza " ++"Nie można przywrócić położenia obserwacji dziennika: plik „%s” przekracza " + "ograniczenie rozmiaru do %d B" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Nie można przywrócić położenia obserwacji dziennika: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + "Nie można przywrócić położenia obserwacji dziennika: nie można odczytać " +-"całego pliku \"%s\"" ++"całego pliku „%s”" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" +-msgstr "Przeniesienie dziennika do kursora z pliku \"%s\" się nie powiodło" ++msgstr "Przeniesienie dziennika do kursora z pliku „%s” się nie powiodło" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" +@@ -1529,7 +1681,7 @@ msgstr "Nie można utworzyć tymczasowego pliku w" + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "Nie można wykonać \"%s\"" ++msgstr "Nie można wykonać „%s”" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1537,7 +1689,9 @@ msgstr "Nie można wykonać \"%s\"" + #: ../src/plugins/abrt-retrace-client.c:842 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d" ++msgstr "" ++"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " ++"%d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1567,8 +1721,8 @@ msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" +-"Serwer ponownego śledzenia nie może przetworzyć pakietu \"%s.%s\".\n" +-"Czy jest on częścią oficjalnych repozytoriów \"%s\"?" ++"Serwer ponownego śledzenia nie może przetworzyć pakietu „%s.%s”.\n" ++"Czy jest on częścią oficjalnych repozytoriów „%s”?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1586,7 +1740,7 @@ msgstr "Serwer odrzucił żądanie." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "\"%s\" musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." ++msgstr "„%s” musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." + + #: ../src/plugins/abrt-retrace-client.c:520 + #, c-format +@@ -1604,7 +1758,7 @@ msgstr "Serwer nie obsługuje pakietów tar skompresowanych za pomocą xz." + #: ../src/plugins/abrt-retrace-client.c:577 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "Wydanie \"%s\" nie jest obsługiwane przez serwer ponownego śledzenia." ++msgstr "Wydanie „%s” nie jest obsługiwane przez serwer ponownego śledzenia." + + #: ../src/plugins/abrt-retrace-client.c:581 + msgid "The server is not able to handle your request." +@@ -1648,12 +1802,12 @@ msgstr "Wysyłanie %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 + msgid "Failed to read from a pipe" +-msgstr "Odczytanie z potoku nie powiodło się" ++msgstr "Odczytanie z potoku się nie powiodło" + + #: ../src/plugins/abrt-retrace-client.c:734 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "Wysłanie danych nie powiodło się: błąd NSS %d (%s): %s" ++msgstr "Wysłanie danych się nie powiodło: błąd biblioteki NSS %d (%s): %s" + + #: ../src/plugins/abrt-retrace-client.c:745 + msgid "Upload successful" +@@ -1710,14 +1864,16 @@ msgstr "Stan zadania: %s\n" + #: ../src/plugins/abrt-retrace-client.c:1053 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d." +-msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d." ++msgstr "" ++"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " ++"%d." + + #: ../src/plugins/abrt-retrace-client.c:1170 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" +-"Ponowne śledzenie nie powiodło się. Proszę spróbować ponownie później, a " ++"Ponowne śledzenie się nie powiodło. Proszę spróbować ponownie później, a " + "jeśli problem się utrzymuje, to proszę go zgłosić." + + #: ../src/plugins/abrt-retrace-client.c:1217 +@@ -1873,7 +2029,7 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Wpisanie \"insecure\" umożliwia użycie połączenia niezabezpieczonego <a " ++"Wpisanie „insecure” umożliwia użycie połączenia niezabezpieczonego <a " + "href=\"https://fedorahosted.org/abrt/wiki/" + "AbrtRetraceServerInsecureConnection\" >(ostrzeżenie)</a>" + +@@ -1891,7 +2047,7 @@ msgid "" + "executable's name. The result is saved as 'xsession_errors' element." + msgstr "" + "Skanuje plik ~/.xsession-errors i zapisuje te wiersze, które zawierają nazwę " +-"pliku wykonywalnego. Wynik jest zapisywany jako element \"xsession_errors\"." ++"pliku wykonywalnego. Wynik jest zapisywany jako element „xsession_errors”." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1900,7 +2056,7 @@ msgstr "Wystąpił błąd po stronie serwera." + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "Wystąpił błąd po stronie serwera w \"%s\"" ++msgstr "Wystąpił błąd po stronie serwera w „%s”" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +@@ -1909,24 +2065,23 @@ msgstr "Wystąpił problem podczas łączenia z serwerem" + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "Wystąpił problem podczas łączenia z \"%s\"" ++msgstr "Wystąpił problem podczas łączenia z „%s”" + + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "Certyfikat wystawcy jest nieprawidłowy: \"%s\"." ++msgstr "Certyfikat wystawcy jest nieprawidłowy: „%s”." + + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: \"%s\"." ++msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: „%s”." + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" +-"Nazwa tematu certyfikatu \"%s\" nie pasuje do docelowej nazwy komputera " +-"\"%s\"." ++"Nazwa tematu certyfikatu „%s” nie pasuje do docelowej nazwy komputera „%s”." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1935,40 +2090,40 @@ msgstr "Zdalny certyfikat wygasł." + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "Nie rozpoznano wystawcy certyfikatu: \"%s\"." ++msgstr "Nie rozpoznano wystawcy certyfikatu: „%s”." + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "Otrzymano błędny certyfikat. Temat \"%s\", wydawca \"%s\"." ++msgstr "Otrzymano błędny certyfikat. Temat „%s”, wydawca „%s”." + + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "Uzyskanie gniazda \"PEM Token #0\" nie powiodło się: %d." ++msgstr "Uzyskanie gniazda „PEM Token #0” się nie powiodło: %d." + + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "Nie można rozwiązać nazwy komputera \"%s\". Błąd biblioteki NSS %d." ++msgstr "Nie można rozwiązać nazwy komputera „%s”. Błąd biblioteki NSS %d." + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "Nie można rozwiązać nazwy komputera \"%s\"." ++msgstr "Nie można rozwiązać nazwy komputera „%s”." + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "Ustawienie trybu blokowania gniazda nie powiodło się." ++msgstr "Ustawienie trybu blokowania gniazda się nie powiodło." + + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "Opakowanie gniazda TCP za pomocą SSL nie powiodło się." ++msgstr "Opakowanie gniazda TCP za pomocą SSL się nie powiodło." + + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "Włączenie powitania klienta do gniazda SSL nie powiodło się." ++msgstr "Włączenie powitania klienta do gniazda SSL się nie powiodło." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/https-utils.c:220 +@@ -1982,24 +2137,24 @@ msgstr "Włączenie TLS się nie powiodło." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "Ustawienie adresu URL w gnieździe SSL nie powiodło się." ++msgstr "Ustawienie adresu URL w gnieździe SSL się nie powiodło." + + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "Nie można połączyć z \"%s\"" ++msgstr "Nie można połączyć z „%s”" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "Ustawienia haka certyfikatu nie powiodło się." ++msgstr "Ustawienia haka certyfikatu się nie powiodło." + + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "Ustawienie wywołania zwrotnego powitania nie powiodło się." ++msgstr "Ustawienie wywołania zwrotnego powitania się nie powiodło." + + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "Przywrócenie powitania nie powiodło się." ++msgstr "Przywrócenie powitania się nie powiodło." + + #: ../src/plugins/https-utils.c:258 + #, c-format +@@ -2008,17 +2163,17 @@ msgstr "Ukończenie powitania SSL się nie powiodło: błąd biblioteki NSS %d." + + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "Zamknięcie gniazda SSL nie powiodło się." ++msgstr "Zamknięcie gniazda SSL się nie powiodło." + + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: \"%s\"" ++msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: „%s”" + + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." +-msgstr "Pobieranie danych nie powiodło się: błąd NSS %d." ++msgstr "Pobieranie danych się nie powiodło: błąd biblioteki NSS %d." + + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." +@@ -2026,22 +2181,22 @@ msgstr "Błędnie sformatowana, urwana odpowiedź." + + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." +-msgstr "Zainicjowanie biblioteki NSS nie powiodło się." ++msgstr "Zainicjowanie biblioteki NSS się nie powiodło." + + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "Zainicjowanie modułu zabezpieczeń nie powiodło się." ++msgstr "Zainicjowanie modułu zabezpieczeń się nie powiodło." + + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "Zamknięcie biblioteki NSS nie powiodło się." ++msgstr "Zamknięcie biblioteki NSS się nie powiodło." + + #: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Usypianie na %d sekund" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2049,7 +2204,7 @@ msgstr "" + "Wystąpił problem jądra z powodu uszkodzonego BIOS-u. Tego rodzaju problemy " + "nie mogą zostać naprawione przez opiekunów jądra." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2057,7 +2212,7 @@ msgstr "" + "Wystąpił problem jądra, ale sprzęt jest nieobsługiwany, więc opiekunowie " + "jądra nie mogą go naprawić." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2066,48 +2221,48 @@ msgstr "" + "Wystąpił problem jądra, ale obecne jądro jest zanieczyszczone (flagi: %s). " + "Opiekunowie jądra nie są w stanie diagnozować zanieczyszczonych raportów." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Zanieczyszczone moduły: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista identyfikatorów błędów" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Podaje adres URL serwera Bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Podaje wydanie" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" +-"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,...] | NAZWA-" +-"PAKIETU) [NAZWA-PAKIETU]... \n" ++"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,…] | NAZWA-PAKIETU) " ++"[NAZWA-PAKIETU]… \n" + "\n" + "Wyszukuje aktualizacje na serwerze Bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Wyszukiwanie aktualizacji" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nie odnaleziono aktualizacji dla tego pakietu" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokalna wersja pakietu jest nowsza niż dostępne aktualizacje" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2122,7 +2277,7 @@ msgid "" + "\n" + "Scans files for split oops message. Can print and/or delete them." + msgstr "" +-"& [-v] [-od] PLIK...\n" ++"& [-v] [-od] PLIK…\n" + "\n" + "Skanuje pliki w poszukiwaniu rozdzielonych komunikatów awarii. Może je " + "wyświetlić i/lub usunąć." +@@ -2135,66 +2290,66 @@ msgstr "Wyświetla odnalezione awarie" + msgid "Delete files with found oopses" + msgstr "Usuwa pliki z odnalezionymi awariami" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "\"%s\" określa więcej niż jeden katalog problemu" ++msgstr "„%s” określa więcej niż jeden katalog problemu" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Użycie: abrt-cli [--version] POLECENIE [KATALOG]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Wyświetla listę problemów [w KATALOGACH]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Usuwa KATALOG problemu" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuje i zgłasza dane problemu w KATALOGU" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Wyświetla informacje o KATALOGU" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Wyświetla liczbę ostatnich awarii" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Przetwarza wiele problemów" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +-"Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" ++msgstr "Polecenie „abrt-cli POLECENIE --help” wyświetli więcej informacji" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [opcje]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Wyświetla listę niezgłoszonych problemów" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Wyświetla szczegółowe zgłoszenie" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Wyświetla tylko problemy nowsze niż podany czas" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Wyświetla tylko problemy starsze niż podany czas" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2203,52 +2358,62 @@ msgid "" + msgstr "" + "Funkcja automatycznego zgłaszania jest wyłączona. Proszę rozważyć włączenie " + "jej przez wydanie polecenia\n" +-"\"abrt-auto-reporting enabled\" jako użytkownik z uprawnieniami roota\n" ++"„abrt-auto-reporting enabled” jako użytkownik z uprawnieniami roota\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." +-msgstr "& info [opcje] KATALOG..." ++msgstr "& info [opcje] KATALOG…" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Tekst większy niż to będzie wyświetlany skrócony" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "Katalog problemu \"%s\" nie istnieje" ++msgstr "Katalog problemu „%s” nie istnieje" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Wyświetla tylko liczbę awarii, bez żadnego komunikatu" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Wyświetla tylko problemy nowsze niż podany czas" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: " + "abrt-cli list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [opcje] KATALOG..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "Usuwanie \"%s\"" ++msgstr "Usuwanie „%s”" ++ ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [opcje] KATALOG…" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +@@ -2258,24 +2423,179 @@ msgstr "Działania: usuń (rm), informacje (i), pomiń (s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Działania: usuń (rm), zgłoś (e), informacje (i), pomiń (s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "Zgłaszanie \"%s\"" ++msgstr "Zgłaszanie „%s”" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Aby przejść do następnego problemu, proszę nacisnąć klawisz Enter:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Bez parametru --since przejdzie przez wszystkie wykryte problemy." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Wybiera tylko problemy wykryte po podanym czasie" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -2334,7 +2654,7 @@ msgid "" + "'gconf_subtree' element." + msgstr "" + "Wykonuje polecenie gconftool-2 --recursive-list /apps/plik-wykonywalny i " +-"zapisuje wynik jako element \"gconf_subtree\"." ++"zapisuje wynik jako element „gconf_subtree”." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +diff --git a/po/pt.po b/po/pt.po +index 9ce2415..91c18d3 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -12,126 +12,133 @@ + # Pedro Marques Daniel , 2013 + # Ricardo Pinto , 2012 + # Rui Gouveia , 2011, 2012 ++# Manuela Silva , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-08-17 08:03-0400\n" ++"Last-Translator: Manuela Silva \n" + "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/pt/)\n" + "Language: pt\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Comunicação de Problema" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Ver e reportar craches da aplicação" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não é possível tomar posse de '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Não é possível abrir a diretoria para gravar '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Ups!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Relatório" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Reiniciar" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Nós pedimos desculpa, ocorreu um problema num componente. O problema foi " ++"reportado automaticamente." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Nós pedimos desculpa, ocorreu um problema num componente. O problema será " ++"reportado assim que a Internet estiver disponível." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Nós pedimos desculpa, ocorreu um problema num componente. Se desejar ajudar " ++"a resolver o problema, por favor, envie um relatório." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Não é possível mostrar a notificação: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Não é possível ler do canal 'gio': '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é posssível definir a codificação no canal 'gio': %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Não é possível ligar o modo 'não bloquear' para o canal 'gio': %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -142,13 +149,24 @@ msgstr "" + "Objecto que notifica o utilizador quando novos problemas são detectados pelo " + "ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Enviar automaticamente uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +@@ -163,7 +181,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -196,30 +216,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +@@ -228,7 +260,7 @@ msgstr "_Fechar" + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +-msgstr "_Predefiniçoes" ++msgstr "_Predefinições" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:116 +@@ -249,14 +281,14 @@ msgstr "Sobre" + msgid "Quit" + msgstr "Sair" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -266,13 +298,13 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "Directório de problemas" ++msgstr "Diretoria de Problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" +-msgstr "Ficheiro de configuração" ++msgstr "Ficheiro de Configuração" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -286,101 +318,93 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [opções]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilizar NUM como uid do cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Registar no syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" +-msgstr "Adicionar nomes de programa aos registos" ++msgstr "Adicionar nomes de programa ao registo" + + #: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Erro desconhecido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' não é um directório de problema válido" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' não é um nome de elemento válido" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' elemento não pode ser modificado" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' não é um diretoria de problemas válida" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Não Autorizado" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Não é possível aceder ao problema para modificação" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' não é um nome de elemento válido" ++msgid "'%s' element can't be modified" ++msgstr "'%s' elemento não pode ser modificado" ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não é possível obter o tamanho do '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "Não é possível apagar o elemento '%s' da diretoria de problemas '%s'" +- +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" + msgstr "" ++"Não é possível eliminar o elemento '%s' da diretoria de problemas '%s'" + +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" +-"O nome '%s' foi perdido, por favor verifique se outro serviço com o mesmo " +-"nome não está a correr.\n" ++"O nome '%s' foi perdido, por favor, verifique se outro serviço com o mesmo " ++"nome não está em execução.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" +-msgstr "Sair depois de NUM segundos de inactividade" ++msgstr "Sair depois de NUM segundos de inatividade" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa tem que ser executado como root." + +@@ -406,20 +430,24 @@ msgstr "Não enviar para segundo plano" + + #: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" +-msgstr "Registar para o syslog mesmo com o -d" ++msgstr "Registar para o syslog, mesmo com o -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" +-msgstr "Executa EVENT no DIR" ++msgstr "Executar EVENT no DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -439,6 +467,7 @@ msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 ++#, fuzzy + msgid "Daemize" + msgstr "Daemize" + +@@ -451,73 +480,74 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Desativa a autenticação" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Senha:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Não é possível continuar sem a senha\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -529,75 +559,75 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Não é uma diretoria: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Não é possível alterar a diretoria para '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Tipo de ficheiro desconhecido: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "Gerando o backtrace" ++msgstr "A gerar backtrace" + + #: ../src/lib/problem_api_dbus.c:42 + #, c-format +@@ -605,27 +635,35 @@ msgid "Can't connect to system DBus: %s" + msgstr "Não é possível ligar ao DBus do sistema: %s" + + #: ../src/lib/problem_api_dbus.c:68 +-#, c-format ++#, fuzzy, c-format + msgid "Can't chown '%s': %s" + msgstr "Não é possível fazer chown '%s': %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "Falha ao apagar o directório de problema: %s" ++msgstr "Falha ao apagar a diretoria de problemas: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Não é possível obter dados do problema a partir do abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "Não é possível obter a lista do problema a partir do abrt-dbus: %s" ++msgstr "Não é possível obter a lista de problemas de abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Não é possível obter os dados do problema de abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -649,6 +687,7 @@ msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 ++#, fuzzy + msgid "" + "& [options] -d DIR\n" + "\n" +@@ -666,11 +705,11 @@ msgstr "" + #. * and component only. This is not supposed to happen often. + #. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 +-#, c-format ++#, fuzzy, c-format + msgid "Backtrace parsing failed for %s" + msgstr "Processamento da traçagem falhou para %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -682,7 +721,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula e grava o UUID de coredump no directório de problemas DIR" ++"Calcula e guarda o UUID de coredump na diretoria de problemas DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -735,9 +774,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n" ++msgstr "" ++"& [-v] -d DIR\n" + "\n" +-"Calcula e grava o UUID e DUPHASH de dumps do python" ++"Calcula e guarda o UUID e DUPHASH de dumps de crache do python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -745,7 +785,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "Ficheiro {0} não existe" ++msgstr "O ficheiro {0} não existe" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +@@ -754,7 +794,8 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Não é possível processar {0}:\n" ++"{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -764,13 +805,46 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 ++#, fuzzy + msgid "" + "& [options] -d DIR\n" + "\n" +@@ -778,21 +852,21 @@ msgid "" + msgstr "" + "& [opções] -d DIR\n" + "\n" +-"Analisa coredump no directório DIR com problema, gera e grava traçagem." ++"Analisa coredump na diretoria de problemas DIR, gera e guarda traçagem." + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "Directórios adicionais de debuginfo" ++msgstr "Diretorias adicionais da informação de depuração" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "Matar o gdb se este for executado por mais de NUM segundos" ++msgstr "Terminar o gdb se este for executado mais de NUM segundos" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. + #. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 +-#, c-format ++#, fuzzy, c-format + msgid "Backtrace is generated and saved, %u bytes" + msgstr "Traçagem foi gerada e gravada, %u bytes" + +@@ -854,9 +928,10 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +-msgstr "Incapaz de abrir {0}: {1}" ++msgstr "Não é possível abrir {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:212 ++#, fuzzy + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" + "O coredump referencia {0} ficheiros debuginfo, {1} deles não estão " +@@ -877,20 +952,49 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +-msgstr "Ficheiro debuginfo em falta: {0}" ++msgstr "Ficheiro da informação de depuração em falta: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" +-msgstr "Todos os ficheiros debuginfo se encontram disponíveis" ++msgstr "Estão disponíveis todos os ficheiros da informação de depuração" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -906,21 +1010,21 @@ msgid "" + msgstr "" + "& [-v] [-d TAMANHO:DIR]... [-f TAMANHO:DIR]... [-p DIR] [FICHEIRO]...\n" + "\n" +-"Remove directórios com problemas (-d) ou ficheiros (-f) em DIRs até que " +-"estes sejam menores que TAMANHO.\n" +-"FICHEIROs são preservados (nunca apagados)." ++"Elimina diretorias de problemas (-d) ou ficheiros (-f) em DIRs até que estes " ++"sejam menores que TAMANHO.\n" ++"Os FICHEIROS são preservados (nunca eliminados)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +-msgstr "Remover todos os directórios com problemas" ++msgstr "Eliminar todos as diretorias de problemas" + + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" +-msgstr "Remover ficheiros dentro deste directório" ++msgstr "Eliminar os ficheiros dentro desta diretoria" + + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "Preservar este directório" ++msgstr "Preservar esta diretoria" + + #: ../src/plugins/abrt-action-ureport:59 + #, c-format +@@ -1084,12 +1188,13 @@ msgid "" + msgstr "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" +-"Verifique o ficheiro de log FILE, corra PROG quando este aumentar ou for " +-"subtituido" ++"Verifique o ficheiro de registo FILE, executar PROG quando este aumentar ou " ++"for substituído" + + #: ../src/plugins/abrt-watch-log.c:154 ++#, fuzzy + msgid "Don't run PROG if STRs aren't found" +-msgstr "Não corra o PROG se STRs não forem encontradas" ++msgstr "Não executar PROG se não forem encontradas STRs" + + #: ../src/plugins/abrt-dump-oops.c:77 + msgid "" +@@ -1100,6 +1205,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 ++#, fuzzy + msgid "Print found oopses on standard output" + msgstr "Apresentar oopses encontrados na saída standard" + +@@ -1114,7 +1220,9 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 ++#, fuzzy + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Igual a -d DumpLocation, DumpLocation está especificado em abrt.conf" + +@@ -1124,16 +1232,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" +-msgstr "Tornar o directório com problema visível a todos" ++msgstr "Tornar a diretoria de problemas legível para todos" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 ++#, fuzzy + msgid "Print search string(s) to stdout and exit" + msgstr "Imprimir a(s) string(s) para o stdout e sair" + +@@ -1142,8 +1253,12 @@ msgstr "Imprimir a(s) string(s) para o stdout e sair" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1163,6 +1278,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1186,11 +1302,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1204,16 +1322,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1221,18 +1342,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1251,14 +1375,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1267,12 +1394,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1280,65 +1453,70 @@ msgid "" + msgstr "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extrair o Xorg crash do ficheiro FILE (ou entrada padrão)" ++"Extrair o crache Xorg do FICHEIRO (ou entrada padrão)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" +-msgstr "Imprimir os dados do crash para o output padrão" ++msgstr "A impressão encontrou dados de crache na saída padrão" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:70 ++#, fuzzy + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +@@ -1359,7 +1537,7 @@ msgstr "Não é possível criar o ficheiro temporário em" + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "Incapaz de executar '%s'" ++msgstr "Não é possível executar '%s'" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1367,7 +1545,7 @@ msgstr "Incapaz de executar '%s'" + #: ../src/plugins/abrt-retrace-client.c:842 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "Falha ao enviar cabeçalho HTTP de tamanho %d: erro NSS %d" ++msgstr "Falha ao enviar o cabeçalho HTTP com o tamanho %d: erro NSS %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1389,7 +1567,7 @@ msgstr "Resposta HTTP inesperada do servidor: %d\n" + #: ../src/plugins/abrt-retrace-client.c:992 + #: ../src/plugins/abrt-retrace-client.c:1062 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "Resposta inválida do servidor: falta o corpo da mensagem HTTP." ++msgstr "Resposta inválida do servidor: corpo da mensagem HTTP em falta." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format +@@ -1400,7 +1578,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "A questionar definições do servidor" ++msgstr "A consultar as configurações do servidor" + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +@@ -1424,11 +1602,12 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:540 ++#, fuzzy + msgid "The server does not support xz-compressed tarballs." + msgstr "O servidor não suporta ficheiro comprimidos no formato xz-" + + #: ../src/plugins/abrt-retrace-client.c:577 +-#, c-format ++#, fuzzy, c-format + msgid "The release '%s' is not supported by the Retrace server." + msgstr "A versão '%s' não é suportada pelo servidor de traçagem." + +@@ -1471,6 +1650,7 @@ msgid "Uploading %d%%\n" + msgstr "A enviar %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 ++#, fuzzy + msgid "Failed to read from a pipe" + msgstr "Falha ao ler de um pipe" + +@@ -1496,12 +1676,12 @@ msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "" +-"O arquivo contém ficheiros nefastos (tais como apontadores simbólicos) e " +-"portanto não pode ser processado." ++"O arquivo contém ficheiros maliciosos (tais como hiperligações simbólicas) e " ++"por isso não pode ser processado." + + #: ../src/plugins/abrt-retrace-client.c:782 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "Resposta inválida do servidor: falta X-Task-Id." ++msgstr "Resposta inválida do servidor: X-Task-Id em falta." + + #: ../src/plugins/abrt-retrace-client.c:788 + msgid "Invalid response from server: missing X-Task-Password." +@@ -1546,7 +1726,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1217 + msgid "log to syslog" +-msgstr "Registar no syslog" ++msgstr "registar no registo do sistema" + + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "allow insecure connection to retrace server" +@@ -1586,7 +1766,7 @@ msgstr "ler dados de coredump" + + #: ../src/plugins/abrt-retrace-client.c:1235 + msgid "Delay for polling operations" +-msgstr "Atraso para operações de sondagem" ++msgstr "Atraso para as operações de sondagem" + + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "(debug) do not delete temporary archive created from dump dir in " +@@ -1598,7 +1778,7 @@ msgstr "Para estado, backtrace e operações de log" + + #: ../src/plugins/abrt-retrace-client.c:1241 + msgid "id of your task on server" +-msgstr "id da tarefa no servidor" ++msgstr "id. da tarefa no servidor" + + #: ../src/plugins/abrt-retrace-client.c:1243 + msgid "password of your task on server" +@@ -1620,14 +1800,14 @@ msgstr "É necessário um directório com problema ou um coredump." + #: ../src/plugins/abrt-retrace-client.c:1320 + #: ../src/plugins/abrt-retrace-client.c:1328 + msgid "Task id is needed." +-msgstr "ID da tarefa é necessário." ++msgstr "É necessária a id. da tarefa." + + #: ../src/plugins/abrt-retrace-client.c:1306 + #: ../src/plugins/abrt-retrace-client.c:1314 + #: ../src/plugins/abrt-retrace-client.c:1322 + #: ../src/plugins/abrt-retrace-client.c:1330 + msgid "Task password is needed." +-msgstr "Senha da tarefa é necessária." ++msgstr "É necessária a senha da tarefa." + + #: ../src/plugins/abrt-retrace-client.c:1334 + #, c-format +@@ -1636,13 +1816,13 @@ msgstr "Operação desconhecida: %s." + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +-msgstr "Depurador GNU local" ++msgstr "Depurador Local GNU" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" +-"Descarregar pacotes debuginfo e gerar traçagem inversa localmente utilizando " +-"GDB" ++"Transferir pacotes da informação de depuração e gerar \"backtrace\" " ++"localmente, utilizando GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" +@@ -1687,7 +1867,7 @@ msgstr "Inseguro" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + msgid "Whether or not to use insecure connection" +-msgstr "Usar ou não uma ligação insegura" ++msgstr "Utilizar ou não uma ligação insegura" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +@@ -1705,7 +1885,7 @@ msgstr "Recolher .xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "Gravar linhas relevantes do ficheiro ~/.xsession-errors" ++msgstr "Guardar linhas relevantes do ficheiro ~/.xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" +@@ -1861,19 +2041,19 @@ msgstr "Falha ao desligar NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1883,24 +2063,24 @@ msgstr "" + "Os programadores do kernel não conseguem diagnosticar relatórios " + "contaminados." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de ids de bug(s)" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especifique um url do servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especifique a versão" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1910,22 +2090,22 @@ msgstr "" + "\n" + "Procurar actualizações no servidor bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "A procurar actualizações" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Não foram encontradas actualizações para este pacote" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "A versão local deste pacote é mais recente do que a disponível nas " + "actualizações" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1947,65 +2127,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Utilização: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remover directório de problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar problema em DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Apresentar informações sobre DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Mostrar relatório detalhado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2013,49 +2194,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [opções] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2064,24 +2255,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pt_BR.po b/po/pt_BR.po +index a1840a1..a34f711 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -26,7 +26,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -36,7 +36,7 @@ msgstr "" + "fedora-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -46,34 +46,34 @@ msgstr "Relato de Problemas" + msgid "View and report application crashes" + msgstr "Visualizar e relatar travamentos de aplicações" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não foi possível obter propriedade de '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Não é possível abrir o diretório para escrita '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Oops!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Relatar" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Reiniciar" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -81,7 +81,7 @@ msgid "" + msgstr "" + "Lamentamos, parece que %s travou. O problema foi relatado automaticamente." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -90,8 +90,8 @@ msgstr "" + "Lamentamos, parece que %s travou. O problema será relatado quando a internet " + "estiver disponível." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -100,7 +100,7 @@ msgstr "" + "Lamentamos, parece que %s travou. Por favor, entre em contato com o " + "desenvolvedor se você quiser relatar o problema." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -109,7 +109,7 @@ msgstr "" + "Lamentamos, parece que %s travou. Se você quiser ajudar a resolver esse " + "problema, por favor, envie um relatório." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -117,7 +117,7 @@ msgstr "" + "Lamentamos, parece que um problema ocorreu num componente. O problema foi " + "relatado automaticamente." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -125,7 +125,7 @@ msgstr "" + "Lamentamos, parece que um problema ocorreu num componente. O problema será " + "relatado quando a internet estiver disponível." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -133,28 +133,28 @@ msgstr "" + "Lamentamos, parece que um problema ocorreu num componente. Se você quiser " + "ajudar a resolver esse problema, por favor, envie um relatório." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Não é possível mostrar a notificação: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Não é possivel ler a partir do canal gio: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é possível definir codificação no canal gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Não é possível ligar o modo de não bloqueamento para o canal gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -165,6 +165,17 @@ msgstr "" + "O mini aplicativo que notifica o usuário quando novos problemas foram " + "detectados pelo ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Pergunte antes de alterar o diretório" +@@ -186,13 +197,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"O arquivo coredump é necessário para a geração de rastreamento de pilha que " +-"é o tempo e o espaço consumindo da operação. O ABRT oferece um serviço que " +-"gera o rastreamento de pilha do coredump mas é necessário fazer o upload do " +-"coredump a este serviço. Com esta opção desabilitada o ABRT fará o upload do " +-"coredump automaticamente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -237,10 +245,6 @@ msgstr "" + "relatados. Terá efeito somente se o relatório resumido estiver habilitado." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Pergunte antes de fazer upload do coredump" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -248,15 +252,15 @@ msgstr "" + "Com esta opção habilitada o ABRT sempre criará um bug ticket com acesso " + "restrito se detectar danos minuciosos." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Solicite um ticket confidencial para informações minuciosas" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notificar problemas incompletos" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -266,6 +270,22 @@ msgstr "" + "desligado ou usuário estiver ausente. A fim de fornecer relatórios completos " + "do problema, o ABRT não reportará automaticamente estes relatórios." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Fechar" +@@ -291,14 +311,14 @@ msgstr "Sobre" + msgid "Quit" + msgstr "Sair" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -310,11 +330,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Diretório do problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Arquivo de Configuração" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -328,24 +348,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Utilize o NUM como uid de cliente" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Log para o syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Adicionar os nomes dos programas ao log" + +@@ -353,62 +374,52 @@ msgstr "Adicionar os nomes dos programas ao log" + msgid "Unknown error" + msgstr "Erro desconhecido" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' não é um diretório de problema válido" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' não é um nome válido de elemento" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "O '%s' não pode ser modificado" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' não é um diretório de problema válido" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Não Autorizado" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Não é possível acessar o problema para modificação" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "O '%s' não pode ser modificado" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais " + "detalhes." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Não é possível acessar o problema para leitura" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' não é um nome válido de elemento" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não foi possível obter o tamanho de '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nenhum problema de espaço." + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -418,12 +429,12 @@ msgstr "" + "O nome '%s' foi perdido, por favor verifique se outro serviço que possui o " + "nome não está em execução.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sai após os segundos NUM de inatividade" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa deve estar sendo executado como root." + +@@ -450,18 +461,22 @@ msgstr "Não criar um daemon" + msgid "Log to syslog even with -d" + msgstr "Registrar no syslog mesmo com o -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Executar o EVENT no DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Comunicar diretamente com o usuário" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -498,89 +513,90 @@ msgstr "Número de processos simultâneas. O padrão é" + msgid "Maximal cache size in MiB. Default is " + msgstr "Tamanho máximo de cache em MiB. O padrão é" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Desliga a Autenticação" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Nome do usuário do Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Senha do Red Hat Support, caso não seja fornecida, será enviada uma " + "solicitação " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Caminhos de certiifcado ou tipo de certificado do uReport SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Você também precisa especificar --username para --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Você pode utilizar --username ou --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Você pode usar --username ou --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Você pode usar --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Número inválido e sem argumentos" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor da opção desconhecida: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Senha:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Não foi possível continuar sem uma senha\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Reportagem automática de HTTP autenticado" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Reportagem automática de SSL Client autenticado" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Reportagem automática anônima" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -600,83 +616,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Não é um diretório: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Pulando: '{0}' (começa com a barra)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Pulando: '{0}' (começa com o ponto)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Pulando: '{0}' (contém ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Pulando: '{0}' (contém espaço)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Pulando: '{0}' (contém aba)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Não foi possível modificar o diretóri para '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo de arquivo desconhecido: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Não foi possível criar o diretório em funcionamento no '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Não foi possível mover '{0}' para '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Não foi possível copiar '{0}' para '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Erro de verificação no '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Desempacotando '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Não foi possível criar o diretório '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Não foi possível desempacotar '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' processado com sucesso" + +@@ -700,18 +716,26 @@ msgstr "Não é possível realizar o chown'%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Remoção do diretório problema falhou: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Não foi possível obter lista de problemas a partir do abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -760,7 +784,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Análise do backtrace falhou por %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Falha de segmentação não encontrado" + +@@ -864,7 +888,7 @@ msgstr "Não é possível extrair a mensagem de oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops texto extraído com sucesso." + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -872,6 +896,38 @@ msgstr "" + "O log do kernel indica que foram detectados erros de hardware.\n" + "É provável que não seja um problema de software.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -990,7 +1046,36 @@ msgstr "Faltando arquivo debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Todos os arquivos debuginfo estão disponíveis." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1000,7 +1085,7 @@ msgstr "" + "'Não', um rastreamento em pilha será gerado localmente. (Pode baixar uma " + "grande quantidade de dados)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1242,7 +1327,8 @@ msgstr "Crie novo diretório de problema no DIR para todos os oops encontrados" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Mesmo que -d DumpLocation, DumpLocation está especificado no abrt.conf" +@@ -1253,17 +1339,19 @@ msgstr "Salve as informações extraídas em PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Tornar o diretório de problema mundial legível" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + "Regulador de falhas com problemas de criação de diretório em 1 segundo" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" + +@@ -1273,11 +1361,13 @@ msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" + msgid "Failed to compile regex" + msgstr "Falha ao compilar o regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"Não é possível atualizar informações sobre o problema: há mais de um oops " +-"encontrados" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1296,6 +1386,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1319,11 +1410,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1337,16 +1430,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1354,18 +1450,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1384,14 +1483,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1400,12 +1502,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1415,59 +1563,63 @@ msgstr "" + "\n" + "Extraia o travamento do Xorg doFILE (ou entrada padrão)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Imprima dados de travamento encontrados na saída do padrão" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Criar diretório de problema no DIR para todos os travamentos encontrados" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2004,7 +2156,7 @@ msgstr "Falha ao desligar NSS" + msgid "Sleeping for %d seconds" + msgstr "Dormindo por %d segundos" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2012,7 +2164,7 @@ msgstr "" + "Ocorreu um problema no kernel por causa da BIOS quebrada. Infelizmente, " + "esses problemas não são solucionáveis ​​por mantenedores do kernel." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2020,7 +2172,7 @@ msgstr "" + "Ocorreu um problema de kernel, mas seu hardware não é suportado, portanto " + "mantenedores do kernel são incapazes de corrigir esse problema." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2030,24 +2182,24 @@ msgstr "" + "Mantenedores do kernel não são capazes de diagnosticar relatórios " + "adulterados." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Módulos danificados: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista de ids de bug" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Especificar a url do servidor bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Especificar um lançamento" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2057,20 +2209,20 @@ msgstr "" + "\n" + "Buscar atualizações no servidor bodhi." + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Buscando atualizações" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nenhuma atualização para este pacote encontrado" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Versão local dos pacotes é mais nova do que atualizações disponíveis." + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2097,66 +2249,67 @@ msgstr "Imprimir oopses encontrados" + msgid "Delete files with found oopses" + msgstr "Excluir arquivos com oopses encontrados" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "%s' identifica mais de um diretório problemático" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listar problemas [em Diretórios]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remover DIR de diretório de problema" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar dados do problema no DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimir informações sobre o DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Mostrar a contagem das quebras recentes" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Processar problemas múltiplos" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Listar apenas problemas não reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Exibir relatório detalhado" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Lista somente os problemas mais recentes do timestamp especificado" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Lista somente os problemas mais velhos do timestamp especificado" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2167,56 +2320,66 @@ msgstr "" + "\n" + "'abrt-auto-reporting habilitado' como um usuário com privilégios de root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Um texto maior do que este será mostrado resumidamente" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Não há o diretório defeituoso '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Mostrar apenas a contagem de problema sem mensagem" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Mostrar apenas problemas mais recentes que a marca de tempo especificada" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT detectou %u problema(s). Para mais informações execute: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Removendo '%s'" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& relatório [opções] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Remover PROBLEM_DIR após relatar" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Removendo '%s'" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Ações: remover (rm), info(i), skip(s):" +@@ -2227,27 +2390,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acões: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Para o próximo problema, pressione ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sem o argumento --since, itera em todos os problemas detectados." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Seleciona somente problemas detectados após o timestamp" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ru.po b/po/ru.po +index adba018..e5bde0b 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -4,15 +4,15 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-04-06 04:10-0400\n" +-"Last-Translator: Igor Gorbounov \n" ++"PO-Revision-Date: 2015-07-20 08:46-0400\n" ++"Last-Translator: yuliya \n" + "Language-Team: Russian\n" + "Language: ru\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +@@ -25,37 +25,37 @@ msgid "View and report application crashes" + msgstr "Просмотреть сбои приложения и создать отчет" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не удается стать владельцем «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Не удалось открыть каталог для записи «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не удалось закрыть уведомление: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ой!" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Сообщить" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Перезапуск" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -64,7 +64,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке " + "автоматически отправлен." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -73,8 +73,8 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке будет " + "отправлен, когда будет доступ к Интернету." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -83,7 +83,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Свяжитесь с разработчиком, если " + "вы хотите сообщить о проблеме." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -92,7 +92,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой %s. Если вы хотите помочь решить " + "проблему, отправьте отчет." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -100,7 +100,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой компонента. Автоматически отправлен " + "отчет об этой проблеме." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -108,7 +108,7 @@ msgstr "" + "Похоже, что, к сожалению, произошел сбой компонента. Отчет об этой проблеме " + "будет отправлен, когда будет доступ к Интернету." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -117,32 +117,32 @@ msgstr "" + "проблемы, отправьте отчет." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не удалось показать уведомление: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не удалось выполнить чтение из канала gio: «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не удалось изменить шифрование в канале gio: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не удалось включить неблокирующий режим для канала gio: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -151,10 +151,21 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "Модуль оповещения о неполадках, обнаруженных ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "Спрашивать перед перехватом каталога" ++msgstr "Подтверждать перемещение каталога" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 +@@ -171,18 +182,15 @@ msgstr "Сокращенный отчет" + msgid "Silent shortened reporting" + msgstr "Сокращенный отчет без подтверждения" + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Файл дампа памяти нужен для создания трассировки стека. На эту операцию " +-"требуется достаточно много времени и места. ABRT предоставляет службу " +-"создания трассировки стека из предварительно загруженного дампа памяти. Если " +-"этот параметр выключен, ABRT будет отправлять дамп без подтверждения." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -205,7 +213,7 @@ msgid "" + "uReports are sent automatically immediately after problem detection." + msgstr "" + "uReport содержит краткое и полностью анонимное описание проблемы. ABRT " +-"использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной " ++"использует отчеты uReport для быстрого поиска дубликатов. В стандартной " + "конфигурации uReport отправляется в начале процесса формирования отчетности. " + "Если этот параметр включен, отчеты uReport отправляются автоматически сразу " + "после обнаружения проблемы." +@@ -218,9 +226,8 @@ msgid "" + "You can always use the default problem browser to make complete report." + msgstr "" + "Если этот параметр включен, процесс создания отчета, запущенный нажатием " +-"кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после " +-"отправления отчета uReport. Для создания полного отчета можно " +-"воспользоваться стандартным средством просмотра проблем." ++"кнопки «Отчет» во всплывающем сообщении о сбое, ограничится отправкой отчета " ++"uReport. Полный отчет можно создать в окне просмотра обнаруженных ошибок." + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 +@@ -228,44 +235,54 @@ msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" +-"Если этот параметр включен, ABRT не будет показывать уведомления о " +-"сообщенных проблемах. Действует, только если включен сокращенный формат " +-"отчетов." ++"Если этот параметр включен, ABRT не будет показывать уведомления об отправке " ++"отчетов. Действует, если включен сокращенный формат." + +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Спрашивать перед выгрузкой дампа памяти" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" +-"Если этот параметр включен, ABRT будет создавать отчет об ошибке с " +-"ограниченным доступом, если обнаружена вероятность попадания в отчет " +-"конфиденциальных данных." ++"Если этот параметр включен, ABRT будет создавать отчет с ограниченным " ++"доступом, если обнаружена вероятность попадания в отчет конфиденциальных " ++"данных." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "Запросить доступ к закрытому билету с конфиденциальными данными" ++msgstr "Ограничение доступа к отчету" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" +-msgstr "Уведомлять о неполных данных по проблеме" ++msgstr "Уведомлять о неполных данных" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" +-"Обнаружены неполные данные об ошибках вследствие выключения компьютера или " +-"выхода пользователя из системы. С целью обеспечения содержательности отчетов " +-"ABRT не отправит отчет об этих ошибках." ++"Если обнаружены неполные данные об ошибках (вследствие выключения компьютера " ++"или выхода пользователя из системы), то в целях обеспечения информативности " ++"ABRT не позволит отправлять неполные отчеты." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/system-config-abrt.c:79 +@@ -281,12 +298,12 @@ msgstr "По _умолчанию" + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "Конфигурация отчетов о сбоях" ++msgstr "Конфигурация отчетов об ошибках" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "О System Config ABRT" ++msgstr "О программе system-config-abrt" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/configuration-gui/main.c:105 +@@ -298,7 +315,7 @@ msgstr "О программе" + msgid "Quit" + msgstr "Выход" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -306,10 +323,10 @@ msgid "" + msgstr "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +-"Запросить в базе данных и сохранить название пакета и компонента" ++"Сделать запрос к базе данных и сохранить название пакета и компонента" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -322,11 +339,11 @@ msgid "Problem directory" + msgstr "Каталог с данными сбоя" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Файл конфигурации" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Использовать этот каталог в качестве корневого для RPM" + +@@ -343,27 +360,28 @@ msgid "Root directory for running container commands" + msgstr "Корневой каталог для выполнения команд для контейнера" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [параметры]" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Использовать NUM как uid клиента" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Запись в журнал" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Добавить названия программ в журнал" + +@@ -373,69 +391,58 @@ msgid "Unknown error" + msgstr "Неизвестная ошибка" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "«%s» не является правильным каталогом для данных о сбое" ++msgid "'%s' is not a valid element name" ++msgstr "Недопустимое имя элемента: «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Элемент «%s» не может быть изменен" ++msgid "'%s' is not a valid problem directory" ++msgstr "Недопустимый каталог с данными сбоя: «%s»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Не разрешено" + ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Ошибка доступа к проблеме с целью ее изменения" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Элемент «%s» не может быть изменен" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "Не удалось изменить владельца каталога. Проверьте журналы." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Не удается получить доступ к данным сбоя для чтения" +- + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "Недопустимое имя элемента: «%s»" +- +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Не удалось определить размер «%s»." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Недостаточно места" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Ошибка удаления элемента «%s» из каталога «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -446,13 +453,13 @@ msgstr "" + "использующая это имя.\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Выйти после NUM секунд бездействия" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + "Эта программа должна запускаться от имени привелигированного пользователя." +@@ -482,21 +489,24 @@ msgstr "Не выполнять как службу" + msgid "Log to syslog even with -d" + msgstr "Запись в журнал даже с -d" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Запуск EVENT в DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Взаимодействие с пользователем напрямую" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format +@@ -519,8 +529,8 @@ msgstr "" + "& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n" + "\n" + "\n" +-"Следит за указанным каналогом и распаковывает поступающие\n" +-"архивы в место, определенное в выражении DumpLocation в abrt.conf\n" ++"Следит за указанным каталогом и распаковывает поступающие\n" ++"архивы в место, определенное значением DumpLocation в abrt.conf\n" + "\n" + "Если КАТАЛОГ не определен, будет выбрано значение \n" + "WatchCrashdumpArchiveDir из abrt.conf" +@@ -541,91 +551,92 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальный размер кэша в МиБ. По умолчанию:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Отключает аутентификацию" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Имя пользователя в системе поддержки Red Hat" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Пароль доступа к системе поддержки Red Hat. Если не указан, будет предложено " + "его ввести вручную" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Путь к SSL-сертификату uReport или тип сертификата" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "Если задан пароль, необходимо определить --username" ++msgstr "Если пароль задан, необходимо определить --username" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Укажите --username или --certificate " + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Укажите --username или --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Укажите --anonymous или --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Недопустимое число аргументов" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Неизвестное значение параметра: «%s»\n" ++msgstr "Неизвестное значение: «%s»\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Пароль:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Для продолжения необходимо ввести пароль.\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Автоматический отчет для HTTP-подключений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Автоматический отчет для SSL-подключений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "Автоматический отчет для анонимных подключений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -645,83 +656,83 @@ msgstr "" + " ФАЙЛ - имя файла отправляемого архива\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Не является каталогом: «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Пропускается: «{0}» (начинается с косой черты)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Пропускается: «{0}» (начинается с точки)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Пропускается: «{0}» (содержит ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Пропускается: «{0}» (содержит пробел)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Пропускается: «{0}» (содержит знак табуляции)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Не удалось изменить каталог на «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Неизвестный тип файла: «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Не удалось создать рабочий каталог в «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Не удалось переместить «{0}» в «{1}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Не удалось скопировать «{0}» в «{1}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Ошибка проверки «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Распаковка «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Не удалось создать каталог «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Не удалось распаковать «{0}»" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' обработан успешно" + +@@ -749,23 +760,31 @@ msgstr "Не удается сменить владельца «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Не удалось удалить каталог с данными о сбоях: %s" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не удается получить список ошибок от abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Не удается проверить, существует ли элемент, через abrt-dbus: %s" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/lib/ignored_problems.c:233 +@@ -780,8 +799,8 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"Ошибка записи в «%s». Не удалось удалить проблему «%s» из списка " +-"игнорируемых проблем «%s»." ++"Ошибка записи в «%s». Не удалось удалить «%s» из списка игнорируемых проблем " ++"«%s»." + + # translation auto-copied from project abrt, version rhel7, document abrt + #. Something nefarious happened +@@ -817,7 +836,7 @@ msgid "Backtrace parsing failed for %s" + msgstr "Ошибка разбора протокола сбоя %s" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Поток сбоя не найден" + +@@ -939,7 +958,7 @@ msgid "Oops text extracted successfully" + msgstr "Текст ошибки ядра извлечен успешно" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -947,6 +966,38 @@ msgstr "" + "kernel.log сообщает об ошибках оборудования.\n" + "Это, скорее всего, не проблема программного обеспечения.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -1105,8 +1156,37 @@ msgstr "Отсутствует файл debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Все отладочные пакеты доступны" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1117,7 +1197,7 @@ msgstr "" + "значительного объема данных." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1243,7 +1323,7 @@ msgstr "Сигнал, вызванный изменением размеров + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "Сигнал по истечении " ++msgstr "Сигнал по завершении alarm(N) " + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-gdb-exploitable:583 +@@ -1396,7 +1476,8 @@ msgstr "Создавать каталог в DIR для каждого сбоя + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "То же, что и \"-d DumpLocation\", \"DumpLocation\" задается в abrt.conf" + +@@ -1408,18 +1489,20 @@ msgstr "Сохранить извлеченную информацию в PROBLE + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Открыть доступ чтения к каталогу сбоев" + + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Повторить создание каталога через 1 секунду" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Вывести строку (строки) поиска в stdout и выйти" + +@@ -1429,10 +1512,13 @@ msgstr "Вывести строку (строки) поиска в stdout и в + msgid "Failed to compile regex" + msgstr "Не удалось скомпилировать регулярное выражение" + +-# translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Не удалось обновить проблему: найдено несколько ошибок" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1451,6 +1537,7 @@ msgstr "Не удалось сохранить данные по обнаруж + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Не удалось инициализировать отслеживание systemd-journal" + +@@ -1485,11 +1572,13 @@ msgstr "Создавать новый каталог для сбоя в DIR дл + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Начать чтение журнала systemd с позиции курсора" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Начать чтение журнала systemd с конца" + +@@ -1503,16 +1592,19 @@ msgstr "То же, что и -t INT, INT указывается в plugins/CCpp. + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "Следить за журналом systemd с последней позиции просмотра (если есть)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Необходимо указать либо -c CURSOR, либо -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Не удается открыть журнал systemd" + +@@ -1520,18 +1612,21 @@ msgstr "Не удается открыть журнал systemd" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Не удается отобрать из журнала systemd только данные systemd-coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Не удается перейти в конец журнала " + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Не удалось установить курсор журнала systemd «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Не удается чтение данных журнала." + +@@ -1562,29 +1657,78 @@ msgstr "" + "Последняя позиция просмотра сохраняется в " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Читать файлы журнала со всех машин" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Читать все файлы журнала из каталога в PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Не удается инициализация systemd-journal в каталоге «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Не удается отобрать из журнала systemd-journal только данные ядра" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Не удалось начать наблюдение с курсора «%s»" + ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1595,45 +1739,49 @@ msgstr "" + "Извлекать данные о сбое Xorg из FILE (или стандартного ввода)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Вывести найденные данные о сбое в стандартный вывод" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Создавать каталог в DIR для каждого сбоя" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Не удается сохранить точку отслеживания журнала" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Не удается сохранить точку отслеживания журнала: открывание(«%s»)" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + "Не восстанавливается точка отслеживания журнала: файл «%s» не существует" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Не удается восстановить точку отслеживания журнала из файла «%s»" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Не удается восстановить точку отслеживания журнала: путь «%s» не является " + "обычным файлом" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1641,12 +1789,12 @@ msgstr "" + "Не удается восстановить точку отслеживания журнала: файл «%s» превышает " + "предельный размер %dБ" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Не удается восстановить точку отслеживания журнала: открывание(«%s»)" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1654,7 +1802,7 @@ msgstr "" + "весь файл «%s»" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Не удалось переместить журнал в позицию курсора из файла «%s»" +@@ -2051,7 +2199,7 @@ msgid "" + "private data, if any." + msgstr "" + "Отправляет дамп памяти на сервер для генерации протокола сбоя. Достоинства: " +-"не требуется загружать debuginfo. База данных на остлеживающем сервер более " ++"не требуется загружать debuginfo. База данных на отслеживающем сервере более " + "подробная, поэтому сервер может создавать более точные отчёты. Недостатки: " + "отправляемый дамп содержит все данные сбойной программы, в том числе и " + "личные." +@@ -2284,7 +2432,7 @@ msgid "Sleeping for %d seconds" + msgstr "Переход в режим ожидания на %d сек." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2293,7 +2441,7 @@ msgstr "" + "проблемы не решаются на уровне ядра." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2302,7 +2450,7 @@ msgstr "" + "проблема не может быть решена на уровне ядра." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2313,28 +2461,28 @@ msgstr "" + "диагностировать проблему в таких ядрах." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Поврежденные модули: %s." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Список идентификторов ошибок" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Указать адрес bodhi-сервера" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Указать версию" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2345,23 +2493,23 @@ msgstr "" + "Искать обновления на bodhi-сервере" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Поиск обновлений" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Нет обновлений этого пакета" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Локальная версия пакета новее обнаруженных обновлений" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2392,79 +2540,79 @@ msgid "Delete files with found oopses" + msgstr "Удалить файлы с найденными сбоями" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» обнаружил несколько проблемных каталогов" + +-# translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Формат: abrt-cli [--version] КОМАНДА [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Показать ошибки [в DIR]" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Удалить каталог DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Анализировать и предоставить отчет по ошибкам в DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Вывод информации о DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Вывод числа недавних сбоев" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Обработка нескольких проблем" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Для получения дополнительной информации выполните «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [параметры]" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Показать ошибки, о которых еще не сообщалось" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Показать подробный отчёт" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Дать список сбоев, обнаруженных после указанного момента времени" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Дать список сбоев, обнаруженных до указанного момента времени" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2475,60 +2623,70 @@ msgstr "" + "Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [параметры] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Текст, длина которого превышает указанную, будет усечен" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Нет такого каталога: «%s»." + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Вывод только числа сбоев" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Вывод сбоев, обнаруженных после указанного момента времени" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT обнаружил %u сбой (сбоев). Для получения дополнительной информации " + "выполните: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Удаление «%s»" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [параметры] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Удалить PROBLEM_DIR после отправки отчета" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Удаление «%s»" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Действия: удалить (rm), информация (i), пропустить (s):" +@@ -2539,29 +2697,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Действия: удалить (rm), сообщить (e), информация (i), пропустить (s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Отчет по «%s»..." + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Для перехода к следующей проблеме нажмите ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " + "последовательно" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Выбор сбоев, обнаруженных после заданного момента времени" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/sk.po b/po/sk.po +index 3bf4b52..63f33da 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -9,126 +9,141 @@ + # Michal Hriň , 2011 + # Milan Ondrašovič , 2013 + # Richard Marko , 2012 ++# Dusan Kazik , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-10-21 12:10-0400\n" ++"Last-Translator: Dusan Kazik \n" + "Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/" + "language/sk/)\n" + "Language: sk\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Nahlásenie problému" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Zobrazuje a nahlasuje zlyhania aplikácií" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nedá sa prevziať vlastníctvo '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nedá sa otvoriť adresár na zapísanie „%s“" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nedá sa zavrieť oznámenie: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Ale nie!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Nahlásiť" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Reštartovať" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Problém " ++"bol automaticky nahlásený." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Keď bude " ++"dostupné pripojenie na internet, bude problém nahlásený." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak chcete " ++"nahlásiť problém, prosím, kontaktujte vývojára." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak by ste " ++"chceli pomôcť vyriešiť problém, prosím, odošlite hlásenie." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Problém " ++"bol automaticky nahlásený." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Keď bude " ++"dostupné pripojenie na internet, bude problém nahlásený." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém. Ak by ste chceli " ++"pomôcť tento problém vyriešiť, prosím, odošlite hlásenie." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nedá sa zobraziť oznámenie: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Nedá sa čítať z kanálu gio: „%s“" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nedá sa nastaviť kódovanie na kanáli gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nedá sa zapnúť neblokovaný režim pre kanál gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -138,28 +153,41 @@ msgstr "" + "\n" + "Aplet, ktorý upozorní používateľa na novo zistené problémy službou ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Opýtať sa pred odcudzením adresára" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Automaticky odoslať hlásenie uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Skrátenie nahlasovanie" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Tiché skrátené nahlasovanie" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -192,33 +220,45 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Požiadať o súkromný tiket pre citlivé informácie" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Oznámiť nedokončené problémy" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +-msgstr "" ++msgstr "_Zavrieť" + + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +@@ -227,7 +267,7 @@ msgstr "_Predvolené" + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "Problém s hlásením konfigurácie" ++msgstr "Konfigurácia nahlásenia problému" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +@@ -241,14 +281,14 @@ msgstr "O programe" + msgid "Quit" + msgstr "Ukončiť" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -260,11 +300,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Adresár s informáciami o probléme" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfiguračný súbor" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -278,24 +318,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [voľby]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Použiť NUM ako identifikátor používateľa pre klienta" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Zalogovať do syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Pridať názvy programu do log-u" + +@@ -303,62 +344,52 @@ msgstr "Pridať názvy programu do log-u" + msgid "Unknown error" + msgstr "Neznáma chyba" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' nie je platným adresárom problému" ++msgid "'%s' is not a valid element name" ++msgstr "„%s“ nie je platným názvom prvku" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Prvok „%s“ sa nedá zmeniť" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' nie je platným adresárom problému" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nepovolený" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Nedá sa pristúpiť k problému a zmeniť ho" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Prvok „%s“ sa nedá zmeniť" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Vykonávanie chown na adresár zlyhalo. Pre viac podrobností skontrolujte " + "systémové záznamy." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "„%s“ nie je platným názvom prvku" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nedá sa získať veľkosť „%s“" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Nezostalo miesto pre problémy" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nedá sa odstrániť prvok „%s“ z adresára problému „%s“" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -368,12 +399,12 @@ msgstr "" + "Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca " + "tento názov nie je spustená.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončit po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí byť spustený s oprávneniami administrátora." + +@@ -399,18 +430,22 @@ msgstr "Nespúšťať ako démona" + msgid "Log to syslog even with -d" + msgstr "Zalogovať do syslog ešte s -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ADR. UDALOSTÍ..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Spustiť EVENT v adresári DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Komunikovať priamo s používateľom" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -438,75 +473,76 @@ msgstr "" + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "Maximálna veľkosť vyrovnávacej pamäte v MiB. Predvolená je " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Vypne overovanie totožnosti" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Používateľské meno podpory spoločnosti Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Neplatný počet argumentov" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Neznáma hodnota pre voľbu: „%s“\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Heslo:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Nedá sa pokračovať bez hesla\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "anonymné automatické nahlasovanie" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -518,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Nie je adresár: „{0}“" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (začína lomítkom)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (začína bodkou)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (obsahuje ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (obsahuje medzeru)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Vynecháva sa: „{0}“ (obsahuje tabulátor)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Nedá sa zmeniť adresár na „{0}“" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -603,18 +639,26 @@ msgstr "Nedá sa vykonať chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Zlyhalo odstránenie adresára s problémom: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nedá sa získať zoznam problémov zo zbernice abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -661,7 +705,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Parsovanie backtrace zlyhalo pre %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Vlákno s pádom sa nenašlo" + +@@ -751,7 +795,8 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Nedá sa spracovať {0}:\n" ++"{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -761,12 +806,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -811,7 +888,7 @@ msgstr "Generuje sa záznam volaní jadra (core_backtrace)" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "Chyba: Odlaďovač GDB nevrátil žiadne údaje" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format +@@ -870,7 +947,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Chýba požadovaný súbor: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +@@ -880,7 +957,36 @@ msgstr "Chýbajúci debuginfo balíček: {0}" + msgid "All debuginfo files are available" + msgstr "Všetky debuginfo balíčky sú dostupné." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -890,7 +996,7 @@ msgstr "" + "stacktrace bude vygenerovaný lokálne. (Môže byť nutné stiahnuť veľké " + "množstvo dát)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -927,25 +1033,27 @@ msgstr "Ponechať daný adresár" + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Nie je možné spustiť „%s“. Chybová hláška bola: „%s“" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Nie je číslo v súbore „%s“" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Použitie: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" ++"Nie je možné získať aktuálny pracovný adresár, pretože bol pravdepodobne " ++"odstránený" + + #: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Pre tento problém už bolo vyplnené hlásenie o chybe:" + + #: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" +@@ -979,7 +1087,7 @@ msgstr "" + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "Signál bol odoslaný klávesnicou" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 +@@ -1022,7 +1130,7 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "Aritmetická výnimka" + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +@@ -1030,7 +1138,7 @@ msgstr "Delenie nulou" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "Nepovolená inštrukcia (skok na náhodnú adresu?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +@@ -1038,11 +1146,11 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "Pretečenie zásobníka" + + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "Zápis do neplatnej adresy" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +@@ -1051,7 +1159,7 @@ msgstr "" + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "Skok na neplatnú adresu" + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" +@@ -1064,7 +1172,7 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "Pravdepodobný dôvod predčasného skončenia:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +@@ -1072,7 +1180,7 @@ msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Aktuálna inštrukcia:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -1116,7 +1224,8 @@ msgstr "Vytvoriť nový adresár s problémom v DIR pre každý nájdený oops" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Rovnaké ako -d DumpLocation, DumpLocation je nastavené v abrt.conf" + +@@ -1126,26 +1235,32 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Nastaviť pracovný adresár prístupný pre všetkých" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Vypísať vyhľadávací/ie reťazec/ce na stdout a skončiť" + + #: ../src/plugins/abrt-dump-oops.c:127 + #: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" ++msgstr "Zlyhalo skompilovanie regexu" ++ ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1165,6 +1280,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1188,11 +1304,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1206,16 +1324,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1223,18 +1344,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1253,14 +1377,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1269,12 +1396,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1284,58 +1457,62 @@ msgstr "" + "\n" + "Extrahovať Xorg pád z FILE(súbor) (alebo zo štandardného vstupu)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Vypísať nájdené údaje o páde na štandardný výstup" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Vytvoriť adresár s problémom v DIR pre každý nájdený pád" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1863,19 +2040,19 @@ msgstr "Nepodarilo sa ukončiť NSS." + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1885,24 +2062,24 @@ msgstr "" + "označené ako 'tainted' (príkaz: %s). Vývojári jadra nie sú schopný " + "diagnostikovať takto označený problém." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "Nefunkčné moduly: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Zoznam identifikátorov chýb" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Určte url servera bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Určte vydanie" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1912,20 +2089,20 @@ msgstr "" + "\n" + "Vyhľadávať aktualizácie na bodhi serveri" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Hľadajú sa aktualizácie" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Nenašli sa aktualizácie pre tento balík" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Lokálna verzia balíka je novšia ako v dostupných aktualizáciách" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1949,65 +2126,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Použitie: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Zmazať adresár DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzovať a ohlásiť problém z adresára DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Vypísať informácie o adresári DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Vypísať počet nedávnych pádov" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --help'" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Zobraziť detailnú správu" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2015,52 +2193,62 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Vypísať iba počet problémov bez akejkoľvek správy" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová hranica" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2069,24 +2257,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sq.po b/po/sq.po +index 971f150..aeb05e4 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -1,195 +1,138 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: ++# Silva Arapi , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-06 13:44+0200\n" +-"PO-Revision-Date: 2014-10-06 11:45+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-10-31 11:16-0400\n" ++"Last-Translator: Silva Arapi \n" ++"Language-Team: Albanian\n" + "Language: sq\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.8.2\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgid "Problem Reporting" ++msgstr "Raportimi i Problemeve" + + #: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../src/applet/applet.c:129 +-msgid "" +-"The report which will be sent does not contain any security sensitive data. " +-"Therefore it is not necessary to bother you next time and require any " +-"further action by you. \n" +-msgstr "" +- +-#: ../src/applet/applet.c:135 +-msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgid "View and report application crashes" ++msgstr "Shikoni dhe raportoni përplasjet e aplikacioneve" + +-#: ../src/applet/applet.c:140 +-msgid "Do you want to enable automatically submitted anonymous crash reports?" ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 ++#, c-format ++msgid "Can't take ownership of '%s'" + msgstr "" + +-#. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:241 ++#: ../src/applet/applet.c:268 + #, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" ++msgid "Can't open directory for writing '%s'" ++msgstr "Nuk mund të hapet direktoria për të shkruar '%s'" + +-#: ../src/applet/applet.c:265 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" ++msgid "Can't close notification: %s" ++msgstr "Nuk mund të mbyllen njoftimet: %s" + +-#: ../src/applet/applet.c:384 +-msgid "A problem has been detected" ++#: ../src/applet/applet.c:598 ++msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:386 +-#, c-format +-msgid "A problem in the %s package has been detected" ++#: ../src/applet/applet.c:616 ++msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:396 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" ++#: ../src/applet/applet.c:625 ++msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 +-#: ../src/plugins/abrt-retrace-client.c:168 ++#: ../src/applet/applet.c:694 + #, c-format +-msgid "Can't execute '%s'" ++msgid "" ++"We're sorry, it looks like %s crashed. The problem has been automatically " ++"reported." + msgstr "" + +-#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 ++#: ../src/applet/applet.c:699 + #, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:675 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" +-"\n" +-"Do you want to continue?" ++"We’re sorry, it looks like %s crashed. The problem will be reported when the " ++"internet is available." + msgstr "" + +-#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:803 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 ++#, c-format + msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" ++"We're sorry, it looks like %s crashed. Please contact the developer if you " ++"want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:819 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:827 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:829 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:831 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:899 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:949 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:965 +-msgid "A Known Problem has Occurred" +-msgstr "" +- +-#. Problem has not yet been 'autoreported' and can be +-#. * 'autoreported' on user request. +-#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 +-msgid "Report" ++#: ../src/applet/applet.c:713 ++#, c-format ++msgid "" ++"We're sorry, it looks like %s crashed. If you'd like to help resolve the " ++"issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:989 +-msgid "A Problem has Occurred" ++#: ../src/applet/applet.c:732 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:1015 +-msgid "A Problem has been Reported" ++#: ../src/applet/applet.c:736 ++msgid "" ++"We're sorry, it looks like a problem occurred in a component. The problem " ++"will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:1023 +-msgid "A New Problem has Occurred" ++#: ../src/applet/applet.c:741 ++msgid "" ++"We're sorry, it looks like a problem occurred. If you'd like to help resolve " ++"the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:1033 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1151 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1155 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1189 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1198 +-#, c-format +-msgid "Can't open directory for writing '%s'" ++#: ../src/applet/applet.c:1186 ++msgid "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/applet/applet.c:1481 +-#, c-format ++#: ../src/configuration-gui/abrt-config-widget.c:483 + msgid "" +-"Failed to open connection to session manager: '%s', notification may " +-"reappear on the next login" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." + msgstr "" + +-#: ../src/applet/applet.c:1622 +-msgid "" +-"& [-v] [DIR]...\n" +-"\n" +-"Applet which notifies user when new problems are detected by ABRT\n" ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 +@@ -211,10 +154,11 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +172,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -247,30 +191,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -296,16 +252,17 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:388 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:400 ++#: ../src/daemon/abrt-action-save-package-data.c:406 ++#: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -314,123 +271,143 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:401 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-action-save-package-data.c:408 ++msgid "Use this directory as RPM root" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:199 ++msgid "& [-v] -d DIR\n" ++"\n" ++"Save container metadata" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-container-data.c:211 ++msgid "Root directory for running container commands" ++msgstr "" ++ ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 +-#: ../src/plugins/abrt-dump-journal-oops.c:302 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 ++#: ../src/plugins/abrt-dump-journal-core.c:477 ++#: ../src/plugins/abrt-dump-journal-oops.c:219 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 ++#: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:389 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" provide valuable problem reports, ABRT will not allow you to submit this " +-"problem. If you have time and want to help the developers in their effort to" +-" sort out this problem, please contact them directly." ++"detected while computer is shutting down or user is logging out. In order to " ++"provide valuable problem reports, ABRT will not allow you to submit this " ++"problem. If you have time and want to help the developers in their effort to " ++"sort out this problem, please contact them directly." + msgstr "" + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" + msgstr "" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -460,20 +437,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:234 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:235 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:236 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:252 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:258 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:264 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:270 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-auto-reporting.c:336 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:339 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:380 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:382 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:384 ++msgid "anonymous auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -485,68 +516,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -570,16 +601,30 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -606,19 +651,21 @@ msgid "" + "and identifies crash function in problem directory DIR" + msgstr "" + ++#. + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. ++#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -691,8 +738,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -704,12 +750,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -727,6 +805,7 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. ++#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -761,60 +840,99 @@ msgstr "" + msgid "Exiting on user command" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 ++#: ../src/plugins/abrt-action-install-debuginfo.in:89 + #, c-format + msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" + "to CACHEDIR, using TMPDIR as temporary staging area.\n" + "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" + "\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" + " -v Be verbose\n" + " -y Noninteractive, assume 'Yes' to all questions\n" + " --ids Default: build_ids\n" +-" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" ++" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" + " --cache Default: /var/cache/abrt-di\n" + " --size_mb Default: 4096\n" ++" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 ++#: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 ++#: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 ++#: ../src/plugins/abrt-action-install-debuginfo.in:215 + msgid "{0} of debuginfo files are not installed" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 ++#: ../src/plugins/abrt-action-install-debuginfo.in:234 ++#, c-format ++msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 ++#: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" + msgstr "" + +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 ++#: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -824,7 +942,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -840,38 +959,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:40 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:51 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:80 ++#: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:100 ++#: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:128 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:138 ++#: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:159 ++#: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:164 ++#: ../src/plugins/abrt-action-ureport:193 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +@@ -1005,116 +1124,168 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:76 ++#: ../src/plugins/abrt-dump-oops.c:77 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:97 +-#: ../src/plugins/abrt-dump-journal-oops.c:303 ++#: ../src/plugins/abrt-dump-oops.c:98 ++#: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#: ../src/plugins/abrt-dump-oops.c:101 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#. ++#: ../src/plugins/abrt-dump-oops.c:102 ++#: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:102 +-#: ../src/plugins/abrt-dump-journal-oops.c:308 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-journal-core.c:479 ++#: ../src/plugins/abrt-dump-journal-oops.c:225 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:103 ++#: ../src/plugins/abrt-dump-oops.c:104 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:104 +-#: ../src/plugins/abrt-dump-journal-oops.c:309 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:105 ++#: ../src/plugins/abrt-dump-journal-oops.c:226 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:105 +-#: ../src/plugins/abrt-dump-journal-oops.c:310 ++#: ../src/plugins/abrt-dump-oops.c:106 ++#: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:126 +-#: ../src/plugins/abrt-dump-journal-oops.c:214 ++#: ../src/plugins/abrt-dump-oops.c:127 ++#: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:185 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:43 +-msgid "Cannot read journal data." ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + +-#. Only notice because this is expected +-#: ../src/plugins/abrt-dump-journal-oops.c:125 +-#, c-format +-msgid "Not restoring journal watch's position: file '%s' does not exist" ++#: ../src/plugins/abrt-dump-journal-core.c:341 ++#: ../src/plugins/abrt-dump-journal-core.c:377 ++msgid "Failed to obtain all required information from journald" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:129 ++#. We don't want to update the counter here. ++#: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format +-msgid "Cannot restore journal watch's position form file '%s'" ++msgid "Not saving repeating crash after %ds (limit is %ds)" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:135 +-#, c-format +-msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++#: ../src/plugins/abrt-dump-journal-core.c:407 ++msgid "Failed to save detect problem data in abrt database" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:141 +-#, c-format ++#: ../src/plugins/abrt-dump-journal-core.c:427 ++#: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 ++msgid "Failed to initialize systemd-journal watch" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +-"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Extract coredumps from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:149 +-#, c-format +-msgid "Cannot restore journal watch's position: open('%s')" ++#: ../src/plugins/abrt-dump-journal-core.c:478 ++msgid "Create new problem directory in DIR for every coredump" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:158 +-#, c-format +-msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:480 ++#: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 ++msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:170 +-#, c-format +-msgid "Failed to move the journal to a cursor from file '%s'" ++#: ../src/plugins/abrt-dump-journal-core.c:481 ++#: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 ++msgid "Start reading systemd-journal from the end" + msgstr "" + +-#. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-dump-journal-oops.c:185 +-msgid "Cannot save journal watch's position" ++#: ../src/plugins/abrt-dump-journal-core.c:482 ++msgid "Throttle problem directory creation to 1 per INT second" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:483 ++msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:484 ++#: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 ++msgid "Follow systemd-journal from the last seen position (if available)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:495 ++#: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 ++msgid "You need to specify either -c CURSOR or -e" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:541 ++#: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 ++msgid "Cannot open systemd-journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:544 ++msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:195 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 ++msgid "Cannot seek to the end of journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format +-msgid "Cannot save journal watch's position: open('%s')" ++msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:251 +-msgid "Failed to initialize systemd-journal watch" ++#: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 ++msgid "Cannot read journal data." + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:272 ++#: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" + "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" + "\n" +@@ -1128,59 +1299,144 @@ msgid "" + "The last seen position is saved in " + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:311 +-msgid "Start reading systemd-journal from the CURSOR position" ++#: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 ++msgid "Read journal files from all machines" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:312 +-msgid "Start reading systemd-journal from the end" ++#: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 ++msgid "Read all journal files from directory at PATH" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:313 +-msgid "Follow systemd-journal from the last seen position (if available)" ++#: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 ++#, c-format ++msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:327 +-msgid "You need to specify either -c CURSOR or -e" ++#: ../src/plugins/abrt-dump-journal-oops.c:288 ++msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:356 +-msgid "Cannot open systemd-journal" ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 ++#, c-format ++msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:359 +-msgid "Cannot filter systemd-journal to kernel data only" ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:362 +-msgid "Cannot seek to the end of journal" ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:369 +-#, c-format +-msgid "Failed to start watch from cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:378 +-#, c-format +-msgid "Failed to set systemd-journal cursor '%s'" ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:274 ++msgid "Cannot save journal watch's position" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:284 ++#, c-format ++msgid "Cannot save journal watch's position: open('%s')" ++msgstr "" ++ ++#. Only notice because this is expected ++#: ../src/plugins/abrt-journal.c:302 ++#, c-format ++msgid "Not restoring journal watch's position: file '%s' does not exist" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:304 ++#, c-format ++msgid "Cannot restore journal watch's position form file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:311 ++#, c-format ++msgid "Cannot restore journal watch's position: path '%s' is not regular file" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:317 ++#, c-format ++msgid "" ++"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:325 ++#, c-format ++msgid "Cannot restore journal watch's position: open('%s')" ++msgstr "" ++ ++#: ../src/plugins/abrt-journal.c:334 ++#, c-format ++msgid "Cannot restore journal watch's position: cannot read entire file '%s'" ++msgstr "" ++ ++#. abrt_journal_set_cursor() prints error message in verbose mode ++#: ../src/plugins/abrt-journal.c:346 ++#, c-format ++msgid "Failed to move the journal to a cursor from file '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " +@@ -1189,12 +1445,19 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: ++#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " + msgstr "" + ++#: ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/plugins/abrt-retrace-client.c:168 ++#, c-format ++msgid "Can't execute '%s'" ++msgstr "" ++ + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:677 +@@ -1211,8 +1474,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1011 + #: ../src/plugins/abrt-retrace-client.c:1070 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1281,8 +1543,8 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:628 + #, c-format + msgid "" +-"The size of your archive is %s, but the retrace server only accepts archives" +-" smaller or equal to %s." ++"The size of your archive is %s, but the retrace server only accepts archives " ++"smaller or equal to %s." + msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:640 +@@ -1343,8 +1605,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:808 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1354,8 +1615,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1471,8 +1731,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1481,11 +1741,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1506,9 +1766,9 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1596,133 +1856,140 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +-#: ../src/plugins/oops-utils.c:71 ++#: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:205 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:210 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:225 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:233 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1740,114 +2007,126 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:127 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:66 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1856,24 +2135,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -1886,8 +2320,8 @@ msgid "" + "user doesn't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1944,8 +2378,8 @@ msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" +-"Checks if there are .vimrc and .gvimrc in your home directory and saves them" +-" as user_vimrc and user_gvimrc, respectively." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/sr.po b/po/sr.po +index 12a7cf7..93e82f6 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -4,155 +4,185 @@ + # + # Translators: + # Jiří Moskovčák , 2011 ++# Momcilo Medic , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-10-06 07:45-0400\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-09-17 07:58-0400\n" ++"Last-Translator: Momcilo Medic \n" + "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/sr/)\n" + "Language: sr\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +-msgstr "" ++msgstr "Пријављивање проблема" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "" ++msgstr "Види и пријави програмски пад" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "Не могу да преузмем власништво над '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "Не могу да отворим директоријум за упис '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "Не могу да затворим обавештење: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" +-msgstr "" ++msgstr "Упс!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Пријава" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" +-msgstr "" ++msgstr "Покрени поново" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Овај проблем је аутоматски пријављен." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Овај проблем ће бити аутоматски пријављен " ++"чим интернет буде доступан." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Молим да контактирате програмера ако " ++"желите пријавити проблем." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" ++"Нажалост, изгледа да се %s срушио. Ако желите да помогнете у решавању овог " ++"проблема, молим да пошаљете извештај." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" ++"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем је " ++"аутоматски пријављен." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" ++"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем ће бити " ++"пријављен аутоматски чим интернет буде доступан." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" ++"Нажалост, изгледа да се догодио проблем. Ако желите да помогнете у решавању " ++"овог проблема, молим да пошаљете извештај." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "Не могу да прикажем обавештење: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "Не могу да читам са gio канала: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "Не могу да поставим кодирање на gio каналу: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" ++msgstr "Не могу да укључим неблокирајући режим за gio каналу: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Програмчић који обавештава корисника када ABRT открије нове проблеме\n" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Питати пре крађе директоријума" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Аутоматски пошаљи uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Скраћено пријављивање" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Тихо скраћено пријављивање" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -162,6 +192,10 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"ABRT чува податке о проблему у директоријумима. Кад год је ABRT-у неопходан " ++"директоријум за упис, директоријум ће бити премештен са системске локације у " ++"ваш лични директоријум. Када је ова опција онемогућена ABRT ће преместити " ++"директоријум проблема без питања." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -170,6 +204,10 @@ msgid "" + "uReport is sent at beginning of reporting process. With this option enabled " + "uReports are sent automatically immediately after problem detection." + msgstr "" ++"uReport је кратки и потпуно анонимни опис проблема. ABRT користи uReport-ове " ++"за брзо глобално откривање дупликата. У подразумеваној конфигурацији uReport " ++"се шаље на почету процеса пријављивања. Када је ова опција омогућена uReport " ++"се шаљу аутоматски одмах након откривања проблема." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +@@ -177,71 +215,98 @@ msgid "" + "in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"Када је ова опција омогућена поступак пријављивања започет кликом на Пријави " ++"дугме у балону обавештења о проблему, ће бити прекинут након што је uReport " ++"послат. Можете увек употребити подразумевани прегледач проблема да направите " ++"комплетну пријаву." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++"Када је ова опција омогућена ABRT никад не приказује обавештења о " ++"пријављеним проблемима. Има ефекта само када је омогућено скраћено " ++"пријављивање." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" ++"Када је ова опција омогућена ABRT увек прави карту програмске грешке са " ++"ограниченим приступом ако су откривени могући осетљиви подаци." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Захтевати приватну карту за осетљиве информације" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Обавести о непотпуним проблемима" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"Непотпуни проблеми су откривени када се рачунар искључује или се корисник " ++"одјављује. Да би се пружили корисни извештаји о проблемима, ABRT вам неће " ++"дозволити да пошаљете ове проблеме." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" + + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" +-msgstr "" ++msgstr "_Затвори" + + #: ../src/configuration-gui/system-config-abrt.c:88 + msgid "_Defaults" +-msgstr "" ++msgstr "_Подразумеване вредности" + + #: ../src/configuration-gui/system-config-abrt.c:116 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Подешавање пријављивања проблема" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "О програму за системско подешавање ABRT-а" + + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "О програму" + + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Излаз" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" ++"\n" ++"Пошаљи упит бази података пакета и сними име пакета и компоненте" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -251,120 +316,117 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "" ++msgstr "Директоријум проблема" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" +-msgstr "" ++msgstr "Датотека подешавања" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" +-msgstr "" ++msgstr "Користи овај директоријум као RPM корен" + + #: ../src/daemon/abrt-action-save-container-data.c:199 + msgid "& [-v] -d DIR\n" + "\n" + "Save container metadata" +-msgstr "" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Сачувај метаподатке контејнера" + + #: ../src/daemon/abrt-action-save-container-data.c:211 + msgid "Root directory for running container commands" +-msgstr "" ++msgstr "Корени директоријум за извршавање контејнер команди" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" +-msgstr "" ++msgstr "& [опције]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" +-msgstr "" ++msgstr "Користи NUM као uid клијента" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" +-msgstr "" ++msgstr "Записник у syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" +-msgstr "" ++msgstr "Додај имена програма у записник" + + #: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" +-msgstr "" ++msgstr "Непозната грешка" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' није исправно име елемента" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' није исправан директоријум проблема" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" ++msgstr "Неовлашћен" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" ++msgid "'%s' element can't be modified" ++msgstr "'%s' елемент не може бити измењен" ++ ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" ++"Промена власништва директоријума неуспешна. Проверите системске записе за " ++"више детаља." + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "" ++msgstr "Не могу да добијем величину '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" +-msgstr "" ++msgstr "Није остало места за проблеме" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" ++msgstr "Не могу да обришем елемент '%s' из директоријума проблема '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" + msgstr "" ++"Име '%s' је изгубљено, молим проверите да ли други сервис са власништвом над " ++"именом није покренут.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" +-msgstr "" ++msgstr "Изађи након NUM секунди неактивности" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." +-msgstr "" ++msgstr "Овај програм мора бити извршен под root налогом." + + #: ../src/daemon/abrtd.c:389 + msgid "" +@@ -374,31 +436,40 @@ msgid "" + "problem. If you have time and want to help the developers in their effort to " + "sort out this problem, please contact them directly." + msgstr "" ++"Подаци о проблему су непотпуни. Ово се обично дешава када се открије проблем " ++"док се рачунар искључује или се корисник одјављује. Да би се пружили корисни " ++"извештаји о проблемима, ABRT вам неће дозволити да пошаљете овај проблем. " ++"Ако имате времена и желите да помогнете програмерима у њиховом настојању да " ++"реше овај проблем, молим да их контактирате директно." + + #: ../src/daemon/abrtd.c:457 + msgid "Do not daemonize" +-msgstr "" ++msgstr "Немој покренути као сервис" + + #: ../src/daemon/abrtd.c:458 + msgid "Log to syslog even with -d" +-msgstr "" ++msgstr "Записуј у syslog чак и са -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" +-msgstr "" ++msgstr "Изврши EVENT над DIR-ом" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" ++msgstr "Пренеси директно са кориснику" ++ ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" + msgstr "" + + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "Нема слободних радника и бафер је пун. Прескачем архиву '%s'" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -411,86 +482,96 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Прати UPLOAD_DIRECTORY и отпакује архиве које пристижу у DumpLocation\n" ++"назначену у abrt.conf\n" ++"\n" ++"Ако UPLOAD_DIRECTORY није задат, користи вредност\n" ++"WatchCrashdumpArchiveDir опције из abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Као сервис" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "Број упоредних радника. Подразумевано је " + + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "Максимална величина кеша у MiB. Подразумевано је " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Искључује аутентификацију" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support корисничко име" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Red Hat Support лозинка, ако није задата, онда ће бити издат упит за њу" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL путање сертификата или врста сертификата" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Такође је потребно да назначите --username за --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Можете користити или --username или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Можете користити или --username или --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Можете користити или --anonymous или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Неисправан број аргумената" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Непозната вредност опције: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" +-msgstr "" ++msgstr "Лозинка:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Не могу наставити без лозинке\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "HTTP аутентификовано аутоматско пријављивање" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "SSL Client аутентификовано аутоматско пријављивање" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "анонимно аутоматско пријављивање" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,112 +582,127 @@ msgid "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + msgstr "" ++"Употреба: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Брбљивост\n" ++" -d - Обриши послату архиву\n" ++" ABRT_SPOOL_DIR - Директоријум где се отпакују исправне послате архиве\n" ++" UPLOAD_DIR - Директоријум где се чувају послате архиве\n" ++" FILENAME - Име датотеке послате архиве\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Није директоријум: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Прескачем: '{0}' (почиње косом цртом)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Прескачем: '{0}' (почиње тачком)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи размак)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи таб)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Не могу променити директоријум на '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Непозната врста датотеке: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Не могу да направим радни директоријум у '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Не могу преместити '{0}' на '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Не могу копирати '{0}' на '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Грешка при провери '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Отпакујем '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Не могу да направим '{0}' директоријум" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Не могу да отпакујем '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' успешно обрађено" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "" ++msgstr "Стварам стабло позивања" + + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" +-msgstr "" ++msgstr "Не могу да се повежем на системски DBus: %s" + + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "" ++msgstr "Не могу да chown-ујем '%s': %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "" ++msgstr "Грешка при брисању директоријума проблема: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" ++msgstr "Не могу преузети списак проблема од abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не могу да преузмем податке о проблему од abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Не могу испробати да ли елемент постоји преко abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "" ++msgstr "Не могу направити привремену датотеку '%s'" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -614,12 +710,14 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" ++"Не могу да упишем у '%s'. Проблем '%s' неће бити уклоњен из занемарених " ++"проблема '%s'" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" ++msgstr "Не могу да преименујем '%s' у '%s'. Грешка при уклањању проблема '%s'" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -628,6 +726,11 @@ msgid "" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" + msgstr "" ++"& [опције] -d DIR\n" ++"\n" ++"Анализира C/C++ стабло позивања, ствара збир понављања, оцену стабла " ++"позивања\n" ++"и идентификује срушену функцију у директоријуму проблема DIR" + + #. + #. * The parser failed. Compute the duphash from the executable +@@ -637,11 +740,11 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +-msgstr "" ++msgstr "Неуспешна обрада стабла позивања за %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" +-msgstr "" ++msgstr "Срушена нит није пронађена" + + #: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" +@@ -649,25 +752,28 @@ msgid "" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID coredump-а у директоријуму проблема DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Анализирам coredump '%s'" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Недостаје id изградње: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Употреба: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE није назначен" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -675,6 +781,9 @@ msgid "" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за директоријум oops проблема DIR" + + #: ../src/plugins/abrt-action-analyze-oops.c:79 + msgid "" +@@ -683,6 +792,11 @@ msgid "" + "your computer. ABRT will not allow you to create a report in a bug tracking " + "system but you can contact kernel maintainers via e-mail." + msgstr "" ++"Стабло развоја не садржи довољно смислених оквира функције да би било " ++"пријављено. Ово је непријатно али не указује обавезно на проблем са вашим " ++"рачунаром. ABRT вам неће дозволити да направите извештај у систему праћења " ++"програмских грешака али можете контактирати програмере језгра преко " ++"електронске поште." + + #: ../src/plugins/abrt-action-analyze-xorg.c:73 + msgid "" +@@ -690,11 +804,14 @@ msgid "" + "\n" + "Calculates and saves UUID and DUPHASH for xorg problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за директоријум xorg проблема DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" ++msgstr "Модул '%s' је био учитан - нећу пријавити овај крах" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -702,37 +819,75 @@ msgid "" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за python crash dump-ове" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "Употреба: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "" ++msgstr "Датотека {0} не постоји" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "Извлачим oops текст из језгра" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Не могу да обрадим {0}:\n" ++"{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "Не могу да извучем oops поруку: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Oops текст успешно извучен" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" ++"Запис језгра указује на пронађене хардверске грешке.\n" ++"Ово највероватније није програмски проблем.\n" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -740,14 +895,18 @@ msgid "" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" ++"& [опције] -d DIR\n" ++"\n" ++"Анализира coredump у директоријуму проблема DIR, ствара и чува стабло " ++"развоја" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "" ++msgstr "Додатни debuginfo директоријуми" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "" ++msgstr "Убиј gdb ако се извршава дуже од NUM секунди" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +@@ -755,7 +914,7 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +-msgstr "" ++msgstr "Стабло развоја је направљено и сачувано, %u бајтова" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -763,28 +922,32 @@ msgid "" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" + msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Ствара стабло развоја coredump нивоа из core dump-а и одговарајуће бинарне " ++"датотеке" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +-msgstr "" ++msgstr "Немој правити збир отисака" + + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "" ++msgstr "Правим core_backtrace" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "Грешка: GDB није вратио никакве податке" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "Грешка: %s" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "" ++msgstr "Излазим по команди корисника" + + #: ../src/plugins/abrt-action-install-debuginfo.in:89 + #, c-format +@@ -812,48 +975,104 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Употреба: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Инсталира debuginfos за све build-id-ове наведене у BUILD_IDS_FILE\n" ++"у CACHEDIR, користећи TMPDIR као привремени простор за постављање.\n" ++"Старе датотеке у CACHEDIR се бришу све док не постање мањи од SIZE.\n" ++"\n" ++"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" ++"\n" ++" -v Буди брбљив\n" ++" -y Без интеракције, претпостави 'Да' за сва питања\n" ++" --ids Подразумевано: build_ids\n" ++" --tmpdir Подразумевано: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Подразумевано: /var/cache/abrt-di\n" ++" --size_mb Подразумевано: 4096\n" ++" --pkgmgr Подразумевано: PackageManager из CCpp.conf или 'dnf'\n" ++" -e,--exact Преузми само назначене датотеке\n" ++" --repo Шаблон који се користи када се траже ризнице.\n" ++" Подразумевано: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:175 + msgid "Can't open {0}: {1}" +-msgstr "" ++msgstr "Не могу да отворим {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:212 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" ++msgstr "Coredump помиње {0} debuginfo датотека, {1} од њих није инсталирано" + + #: ../src/plugins/abrt-action-install-debuginfo.in:215 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} debuginfo датотека није инсталирано" + + #: ../src/plugins/abrt-action-install-debuginfo.in:234 + #, c-format + msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" +-msgstr "" ++msgstr "Неисправно подешавање CCpp додатка, неподржан управник пакетима: '%s'" + + #: ../src/plugins/abrt-action-install-debuginfo.in:249 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Недостаје захтевана датотека: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:254 + msgid "Missing debuginfo file: {0}" +-msgstr "" ++msgstr "Недостаје debuginfo датотека: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:257 + msgid "All debuginfo files are available" ++msgstr "Све debuginfo датотеке су доступне" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" ++"Да ли је у реду послати coredump? (Може садржати осетљиве податке). Ако је " ++"ваш одговор 'Не', траг стека ће бити створен локално. (Можда ће преузети " ++"огромну количину података)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." + msgstr "" ++"Да ли желите створити траг стека локално? (Можда ће преузети огромну " ++"количину података али извештај не може наставити без трага стека)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -863,172 +1082,180 @@ msgid "" + "SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Брише проблематичне директоријуме (-d) или датотеке (-f) у DIR-екторијумима " ++"све док не буду мањи од SIZE.\n" ++"FILE-ови су очувани (никад обрисани)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +-msgstr "" ++msgstr "Обриши све директоријуме проблема" + + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" +-msgstr "" ++msgstr "Обриши датотеке унутар овог директоријума" + + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "" ++msgstr "Очувај овај директоријум" + + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Не могу да покренем '%s', порука о грешки је: '%s'" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Није број у датотеци '%s'" + + #: ../src/plugins/abrt-action-ureport:99 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Употреба: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:120 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" ++"Не могу да добијем тренутни радни директоријум јер је вероватно обрисан" + + #: ../src/plugins/abrt-action-ureport:148 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Већ је пријављена програмска грешка у вези са овим проблемом:" + + #: ../src/plugins/abrt-action-ureport:158 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport је већ послат, не шаљем га поново" + + #: ../src/plugins/abrt-action-ureport:179 + msgid "Adding you to CC List of the existing bugzilla bug" +-msgstr "" ++msgstr "Додајем те на CC списак тренутне програмске грешке на bugzilla-и" + + #: ../src/plugins/abrt-action-ureport:193 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport неуспешан са излазним кодом %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "" ++msgstr "Сигнал послат од стране кода из корисничког простора" + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "" ++msgstr "Сигнал послат од стране timer/IO/async догађаја" + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" ++msgstr "Сигнал има siginfo.si_code = SI_USER" + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "Сигнал приспео за упис на затворен канал" + + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "Сигнал послат од стране тастатуре" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "" ++msgstr "Сигнал контроле послова послат од кернела" + + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "" ++msgstr "Сигнал послат променом величине прозора" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "Сигнал послат истицањем аларма(N)" + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "Сигнал приспео за упис на покварен канал" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "" ++msgstr "ABRT сигнал (abort() је позван?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "XCPU сигнал (преко CPU временског ограничења)" + + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "XFSZ сигнал (преко ограничења величине датотеке)" + + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "TRAP сигнал (може бити програмска грешка у октлањачу грешака/трагачу)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "" ++msgstr "SYS сигнал (непознат системски позив је позван?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "Аритметичка грешка" + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "" ++msgstr "Дељење нулом" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "Неправилна инструкција (скок на насумичну адресу?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "" ++msgstr "Сигнал који није узрокован отказивањем" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "Преливање стека" + + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "Упис на неисправну адресу" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" ++msgstr "Подрутина се вратила на неисправну адресу (оштећен стек?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "Скок на неисправну адресу" + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" + msgstr "" ++"Приступ након завршетка мапиране датотеке, неисправна адреса, приступ ван " ++"поравнања, итд" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" ++msgstr "Не могу да примим сигнал не и урадим анализу злоупотребе\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "Вероватни узрок отказивања:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "" ++msgstr "Рејтинг злоупотребе (скала 0-9):" + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Тренутна инструкција:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "" ++msgstr "Анализа злоупотребе није ништа пронашла\n" + + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" +@@ -1036,10 +1263,13 @@ msgid "" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" + msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Прати датотеку записа FILE, изврши PROG када порасте или буде замењена" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +-msgstr "" ++msgstr "Немој покренути PROG ако STR-ови нису пронађени" + + #: ../src/plugins/abrt-dump-oops.c:77 + msgid "" +@@ -1047,11 +1277,14 @@ msgid "" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Извуци oops из FILE (или стандардног улаза)" + + #: ../src/plugins/abrt-dump-oops.c:98 + #: ../src/plugins/abrt-dump-journal-oops.c:220 + msgid "Print found oopses on standard output" +-msgstr "" ++msgstr "Испиши пронађене oops-еве на стандардни излаз" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +@@ -1059,62 +1292,70 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:102 + #: ../src/plugins/abrt-dump-journal-oops.c:224 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "" ++msgstr "Направи нови директоријум проблема у DIR за сваки пронађени oops" + + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" +-msgstr "" ++msgstr "Исто као -d DumpLocation, DumpLocation је назначена у abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:104 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "Сачувај извучене информације у PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" +-msgstr "" ++msgstr "Учини директоријум проблема читљивим за свет" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "Успори стварање директоријума проблема на један по секунди" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" +-msgstr "" ++msgstr "Испиши текст(ове) претраге на стандардни излаз и изађи" + + #: ../src/plugins/abrt-dump-oops.c:127 + #: ../src/plugins/abrt-dump-journal-oops.c:128 + msgid "Failed to compile regex" ++msgstr "Неуспешна изградња регуларног израза" ++ ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 + msgid "Failed to obtain all required information from journald" +-msgstr "" ++msgstr "Неуспешно преузимање свих неопходних информација од journald-а" + + #. We don't want to update the counter here. + #: ../src/plugins/abrt-dump-journal-core.c:401 + #, c-format + msgid "Not saving repeating crash after %ds (limit is %ds)" +-msgstr "" ++msgstr "Не чувам поновне крахове након %ds (граница је %ds)" + + #: ../src/plugins/abrt-dump-journal-core.c:407 + msgid "Failed to save detect problem data in abrt database" +-msgstr "" ++msgstr "Неуспешно чување података откривеног проблема у abrt бази података" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" +-msgstr "" ++msgstr "Неуспешна иницијализација systemd-journal надзора" + + #: ../src/plugins/abrt-dump-journal-core.c:447 + msgid "" +@@ -1129,62 +1370,80 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" ++"\n" ++"Извуци coredump-ове из systemd-journal\n" ++"\n" ++"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" ++"\n" ++"-e је корисно само за -f зато што праћење дневника почиње читањем \n" ++"целог дневника ако последња прегледана позиција није доступна.\n" ++"\n" ++"Последња прегледана позиција је сачувана у " + + #: ../src/plugins/abrt-dump-journal-core.c:478 + msgid "Create new problem directory in DIR for every coredump" +-msgstr "" ++msgstr "Направи нови директоријум проблема у DIR за сваки coredump" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" +-msgstr "" ++msgstr "Почни читање systemd-journal од позиције CURSOR" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" +-msgstr "" ++msgstr "Почни читање systemd-journal од краја" + + #: ../src/plugins/abrt-dump-journal-core.c:482 + msgid "Throttle problem directory creation to 1 per INT second" +-msgstr "" ++msgstr "Успори стварање директоријума проблема на један по INT секунди" + + #: ../src/plugins/abrt-dump-journal-core.c:483 + msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" +-msgstr "" ++msgstr "Исто као -t INT, INT је назначен у plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" +-msgstr "" ++msgstr "Прати systemd-journal од последње виђене позиције (ако је доступна)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" +-msgstr "" ++msgstr "Потребно је да назначите или -c CURSOR или -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" +-msgstr "" ++msgstr "Не могу да отворим systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:544 + msgid "Cannot filter systemd-journal to systemd-coredump data only" +-msgstr "" ++msgstr "Не могу да филтрирам systemd-journal на само systemd-coredump податке" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" +-msgstr "" ++msgstr "Не могу да пређем на крај дневника" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" +-msgstr "" ++msgstr "Неуспешно постављање systemd-journal курсора '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." +-msgstr "" ++msgstr "Не могу да прочитам податке дневника." + + #: ../src/plugins/abrt-dump-journal-oops.c:186 + msgid "" +@@ -1199,97 +1458,171 @@ msgid "" + "\n" + "The last seen position is saved in " + msgstr "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Извуци oops из systemd-journal\n" ++"\n" ++"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" ++"\n" ++"-e је корисно само за -f зато што праћење дневника почиње читањем \n" ++"целог дневника ако последња прегледана позиција није доступна.\n" ++"\n" ++"Последња прегледана позиција је сачувана у " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" +-msgstr "" ++msgstr "Прочитај датотеке дневника са свих машина" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Прочитај све датотеке дневника из директоријума на PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Не могу да иницијализујем systemd-journal у директоријуму '%s'" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" +-msgstr "" ++msgstr "Не могу да филтрирам systemd-journal на само податке о језгру" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" ++msgstr "Неуспешно започињање прегледа од курсора '%s'" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Извуци Xorg крах из FILE (или стандардног улаза)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" +-msgstr "" ++msgstr "Испиши пронађене податке о краху на стандардни излаз" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" ++msgstr "Направи директоријум проблема у DIR за сваки пронађени крах" ++ ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" +-msgstr "" ++msgstr "Не могу да снимим позицију прегледача дневника" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" +-msgstr "" ++msgstr "Не могу да снимим позицију прегледача дневника: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" +-msgstr "" ++msgstr "Не враћам позицију прегледања дневника: датотека '%s' не постоји" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" +-msgstr "" ++msgstr "Не могу да вратим позицију прегледања дневника из датотеке '%s'" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" ++"Не могу да вратим позицију прегледања дневника: путања '%s' није редовна " ++"датотека" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" ++"Не могу да вратим позицију прегледања дневника: датотека '%s' превазилази " ++"%dB ограничење величине" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" +-msgstr "" ++msgstr "Не могу да вратим позицију прегледања дневника: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" ++"Не могу да вратим позицију прегледања дневника: не могу прочитати целу " ++"датотеку '%s'" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" +-msgstr "" ++msgstr "Неуспешно померање дневника на курсор из датотеке '%s'" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" ++"Сервер за поновни траг не може бити употревљен, зато што је крах превелик. " ++"Покушајте локално поновно трагање." + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +@@ -1298,13 +1631,13 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "" ++msgstr "Не могу направити привремену датотеку у " + + #: ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "" ++msgstr "Не могу извршити '%s'" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1312,7 +1645,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:842 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" ++msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1324,7 +1657,8 @@ msgstr "" + #, c-format + msgid "Unexpected HTTP response from server: %d\n" + "%s" +-msgstr "" ++msgstr "Неочекивани HTTP одговор од сервера: %d\n" ++"%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:755 +@@ -1333,7 +1667,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:992 + #: ../src/plugins/abrt-retrace-client.c:1062 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје HTTP тело поруке." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format +@@ -1341,24 +1675,27 @@ msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" ++"Сервер поновног трага не успева да обради пакет '%s.%s.'\n" ++"Да ли је то део званичних '%s' ризница?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "" ++msgstr "Захтевам поставке сервера" + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "" ++msgstr "Сервер је потпуно заузет. Покушајте поново касније." + + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +-msgstr "" ++msgstr "Сервер је одбио ваш захтев." + + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" ++"'%s' мора бити редовна датотека да бисте користили сервер за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:520 + #, c-format +@@ -1366,27 +1703,29 @@ msgid "" + "The size of your crash is %s, but the retrace server only accepts crashes " + "smaller or equal to %s." + msgstr "" ++"Величина вашег краха је %s, али сервер за поновни траг прихвата само крахове " ++"мање или једнаке са %s." + + #: ../src/plugins/abrt-retrace-client.c:540 + msgid "The server does not support xz-compressed tarballs." +-msgstr "" ++msgstr "Сервер не подржава xz-компресоване tarball-ове." + + #: ../src/plugins/abrt-retrace-client.c:577 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" ++msgstr "Издање '%s' није подржано од стране сервера за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:581 + msgid "The server is not able to handle your request." +-msgstr "" ++msgstr "Сервер не може да обради ваш захтев." + + #: ../src/plugins/abrt-retrace-client.c:600 + msgid "Unknown package sent to Retrace server." +-msgstr "" ++msgstr "Непознат пакет послат серверу за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:609 + msgid "Preparing an archive to upload" +-msgstr "" ++msgstr "Припремање архиве за слање" + + #: ../src/plugins/abrt-retrace-client.c:628 + #, c-format +@@ -1394,187 +1733,204 @@ msgid "" + "The size of your archive is %s, but the retrace server only accepts archives " + "smaller or equal to %s." + msgstr "" ++"Величина ваше архиве је %s, али сервер за поновни траг прихвата само архиве " ++"мање или једнаке са %s." + + #: ../src/plugins/abrt-retrace-client.c:640 + #, c-format + msgid "You are going to upload %s. Continue?" +-msgstr "" ++msgstr "Послаћете %s. Наставити?" + + #: ../src/plugins/abrt-retrace-client.c:649 + msgid "Cancelled by user" +-msgstr "" ++msgstr "Отказано од стране корисника" + + #: ../src/plugins/abrt-retrace-client.c:683 + #, c-format + msgid "Uploading %s\n" +-msgstr "" ++msgstr "Шаљем %s\n" + + #: ../src/plugins/abrt-retrace-client.c:709 + #, c-format + msgid "Uploading %d%%\n" +-msgstr "" ++msgstr "Шаљем %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:721 + msgid "Failed to read from a pipe" +-msgstr "" ++msgstr "Неуспешно читање са тунела" + + #: ../src/plugins/abrt-retrace-client.c:734 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" ++msgstr "Неуспешно слање података: NSS грешка %d (%s): %s" + + #: ../src/plugins/abrt-retrace-client.c:745 + msgid "Upload successful" +-msgstr "" ++msgstr "Успешно слање" + + #: ../src/plugins/abrt-retrace-client.c:767 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." + msgstr "" ++"Ваш директоријум проблема је оштећен и не може бити обрађен од стране " ++"сервера за поновни траг." + + #: ../src/plugins/abrt-retrace-client.c:769 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "" ++"Архива садржи злонамерне датотеке (као што су симболички линкови) те не може " ++"бити обрађена." + + #: ../src/plugins/abrt-retrace-client.c:782 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје X-Task-Id." + + #: ../src/plugins/abrt-retrace-client.c:788 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје X-Task-Password." + + #: ../src/plugins/abrt-retrace-client.c:795 + msgid "Retrace job started" +-msgstr "" ++msgstr "Започет посао поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:808 + #, c-format + msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "" ++msgstr "Id задатка: %s\n" ++"Лозинка задатка: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:866 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" ++msgstr "Неисправан одговор од сервера: недостаје X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:878 + #, c-format + msgid "Task Status: %s\n" + "%s\n" +-msgstr "" ++msgstr "Стање задатка: %s\n" ++"%s\n" + + #: ../src/plugins/abrt-retrace-client.c:909 + #: ../src/plugins/abrt-retrace-client.c:983 + #: ../src/plugins/abrt-retrace-client.c:1053 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d." +-msgstr "" ++msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d." + + #: ../src/plugins/abrt-retrace-client.c:1170 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" ++"Неуспешан поновни траг. Покушајте поново касније и ако и даље постоји " ++"проблем молим да га пријавите." + + #: ../src/plugins/abrt-retrace-client.c:1217 + msgid "log to syslog" +-msgstr "" ++msgstr "записник у syslog" + + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "allow insecure connection to retrace server" +-msgstr "" ++msgstr "дозволи несигурне везе до сервера поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" + msgstr "" ++"немој проверавати да ли је сервер поновног трага способан да обради дати " ++"пакет пре но што се пошаље архива" + + #: ../src/plugins/abrt-retrace-client.c:1224 + msgid "retrace server URL" +-msgstr "" ++msgstr "URL сервера поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:1226 + msgid "retrace server port" +-msgstr "" ++msgstr "порт сервера поновног трага" + + #: ../src/plugins/abrt-retrace-client.c:1228 + msgid "(debug) show received HTTP headers" +-msgstr "" ++msgstr "(откривање програмских грешака) прикажи примљена HTTP заглавља" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For create and batch operations" +-msgstr "" ++msgstr "За стварање и обједињене операције" + + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "read data from ABRT problem directory" +-msgstr "" ++msgstr "читај податке из ABRT директоријума проблема" + + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "read data from coredump" +-msgstr "" ++msgstr "читај податке из coredump-а" + + #: ../src/plugins/abrt-retrace-client.c:1235 + msgid "Delay for polling operations" +-msgstr "" ++msgstr "Пауза за операције упита" + + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" ++"(отклањање програмских грешака) немој брисати привремене архиве створене из " ++"директоријума излаза у " + + #: ../src/plugins/abrt-retrace-client.c:1239 + msgid "For status, backtrace, and log operations" +-msgstr "" ++msgstr "За стање, стабло позивања и запис операција" + + #: ../src/plugins/abrt-retrace-client.c:1241 + msgid "id of your task on server" +-msgstr "" ++msgstr "id вашег задатка на серверу" + + #: ../src/plugins/abrt-retrace-client.c:1243 + msgid "password of your task on server" +-msgstr "" ++msgstr "лозинка вашег задатка на серверу" + + #: ../src/plugins/abrt-retrace-client.c:1247 + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" + msgstr "" ++"abrt-retrace-client [опције]\n" ++"Операције: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1292 + #: ../src/plugins/abrt-retrace-client.c:1298 + msgid "Either problem directory or coredump is needed." +-msgstr "" ++msgstr "Потребан је или директоријум проблема или coredump." + + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 + #: ../src/plugins/abrt-retrace-client.c:1320 + #: ../src/plugins/abrt-retrace-client.c:1328 + msgid "Task id is needed." +-msgstr "" ++msgstr "Id задатка је неопходан." + + #: ../src/plugins/abrt-retrace-client.c:1306 + #: ../src/plugins/abrt-retrace-client.c:1314 + #: ../src/plugins/abrt-retrace-client.c:1322 + #: ../src/plugins/abrt-retrace-client.c:1330 + msgid "Task password is needed." +-msgstr "" ++msgstr "Лозинка задатка је неопходна." + + #: ../src/plugins/abrt-retrace-client.c:1334 + #, c-format + msgid "Unknown operation: %s." +-msgstr "" ++msgstr "Непозната операција: %s." + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +-msgstr "" ++msgstr "Локални GNU програм за отклањање програмских грешака" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" ++"Преузми debuginfo пакете и створи стабло позивања локално користећи GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" +@@ -1582,10 +1938,13 @@ msgid "" + "and take up disk space. However, unlike RetraceServer, doesn't send coredump " + "to remote machines." + msgstr "" ++"Потребно је преузети debuginfo пакете, што може захтевати значајан период " ++"времена, и заузимати простор на диску. Међутим, за разлику од RetraceServer-" ++"а, не шаље coredump на удаљене машине." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "" ++msgstr "Пошаљи coredump на удаљени сервер за поновни траг на анализу" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +@@ -1595,22 +1954,27 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" ++"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Предности: " ++"нема потребе за преузимањем debuginfo-а. База података debuginfo-а сервера " ++"за поновни траг је комплетнија. Сервер за поновни траг може створити боља " ++"стабла позивања. Мане: coredump који шаљете садржи све податке о срушеном " ++"програму, укључујући и ваше приватне податке, ако их има." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + msgid "Retrace server URL" +-msgstr "" ++msgstr "URL сервера поновног трага" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + msgid "Address of the retrace server" +-msgstr "" ++msgstr "Адреса сервера поновног трага" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + msgid "Insecure" +-msgstr "" ++msgstr "Несигурно" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + msgid "Whether or not to use insecure connection" +-msgstr "" ++msgstr "Да ли да користи несигурну везу или не" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + msgid "" +@@ -1618,227 +1982,244 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" ++"Напиши \"insecure\" да дозволите несигурну везу <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +-msgstr "" ++msgstr "Скупи .xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "" ++msgstr "Сачувај значајне линије из ~/.xsession-errors датотеке" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." + msgstr "" ++"Скенира кроз ~/.xsession-errors датотеку и снима оне линије које садрже име " ++"извршне датотеке. Резултат је сачуван као 'xsession_errors' елемент." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +-msgstr "" ++msgstr "Догодила се грешка са серверске стране." + + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "" ++msgstr "На серверској страни се догодила грешка на '%s'" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +-msgstr "" ++msgstr "Догодила се грешка при повезивању на сервер" + + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "" ++msgstr "Грешка се догодила при повезивању на '%s'" + + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "" ++msgstr "Издавач сертификата није исправан: '%s'." + + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" ++msgstr "Сертификат је потписан од издавача који није поуздан: '%s'." + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" ++"Име наслова сертификата '%s' се не подудара са циљним именом домаћина '%s'." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +-msgstr "" ++msgstr "Удаљени сертификат је истекао." + + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" ++msgstr "Издавач сертификата није препознат: '%s'." + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" ++msgstr "Примљен лош сертификат. Наслов '%s', издавач '%s'." + + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" ++msgstr "Грешка при примању слота 'PEM Token #0': %d." + + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" ++msgstr "Не могу да разрешим име домаћина '%s'. NSS грешка %d." + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "" ++msgstr "Не могу да разрешим име домаћина '%s'." + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "" ++msgstr "Неуспешно постављање блокирајућег режима." + + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "" ++msgstr "Неуспешно умотавање TCP прикључка SSL-ом." + + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "" ++msgstr "Неуспешно омогућавање клијентског руковања са SSL прикључком." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "Неуспешно омогућавање SSL3." + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "Неуспешно омогућавање TLS-а." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "" ++msgstr "Неуспешно постављање URL-а на SSL прикључак." + + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "" ++msgstr "Не могу да се повежем на '%s'" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "" ++msgstr "Неуспешно постављање прикључка сертификата." + + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "" ++msgstr "Неуспешно постављање руковања повратног позива." + + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "" ++msgstr "Неуспешно поновно постављање руковања." + + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" ++msgstr "Неуспешно завршавање SSL руковања: NSS грешка %d." + + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "" ++msgstr "Неуспешно затварање SSL прикључка." + + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "" ++msgstr "Лоше HTTP заглавље одговора : '%s'" + + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." +-msgstr "" ++msgstr "Примање података неуспешно: NSS грешка %d." + + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." +-msgstr "" ++msgstr "Лош збирни одговор." + + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." +-msgstr "" ++msgstr "Неуспешна иницијализација NSS-а." + + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "" ++msgstr "Неуспешна иницијализација сигурносног модула." + + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "" ++msgstr "Неуспешно искључивање NSS-а." + + #: ../src/plugins/oops-utils.c:73 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "Спавање %d секунди" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" ++"Догодио се проблем са кернелом због неисправног BIOS-а. Нажалост, такви " ++"проблеми не могу бити поправљени од стране кернел програмера." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" ++"Догодио се проблем са кернелом, али ваш хардвер није подржан, стога кернел " ++"програмери не могу да поправе овај проблем." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" ++"Догодио се проблем са кернелом, али ваш кернел је укаљан (flags:%s). Кернел " ++"програмери не могу да установе дијагнозу укаљаних извештаја." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." +-msgstr "" ++msgstr "Укаљани модули: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" +-msgstr "" ++msgstr "Списак идентификатора програмских грешака" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" +-msgstr "" ++msgstr "Назначите URL bodhi сервера" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" +-msgstr "" ++msgstr "Назначите издање" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Потражите ажурирања на bodhi серверу" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" +-msgstr "" ++msgstr "Тражим ажурирања" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" +-msgstr "" ++msgstr "Нису пронађена ажурирања за овај пакет" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" +-msgstr "" ++msgstr "Локална верзија пакета је новија него доступна ажурирања" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" + " %s. Do you want to continue with reporting the bug?" + msgstr "" ++"Постоји ажурирање које би могло решити ваш проблем. Можете га инсталирати " ++"извршавањем: %s. Да ли желите наставити са пријавом програмске грешке?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" +@@ -1846,148 +2227,323 @@ msgid "" + "\n" + "Scans files for split oops message. Can print and/or delete them." + msgstr "" ++"& [-v] [-od] ДАТОТЕКА...\n" ++"\n" ++"Претражује датотеке за раздељеном oops поруком. Може је исписати и/или " ++"обрисати." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "Исписује пронађене oops-еве" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "Обриши датотеке са пронађеним oops-евима" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' показује на више од једног директоријума проблема" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Листај проблеме [у DIR-овима]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" +-msgstr "" ++msgstr "Уклони директоријум проблема DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" +-msgstr "" ++msgstr "Анализирај и пријави податке проблема у DIR-у" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" +-msgstr "" ++msgstr "Прикажи информације о DIR-у" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" +-msgstr "" ++msgstr "Прикажи број недавних крахова" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Обради више проблема" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" ++msgstr "Погледајте 'abrt-cli КОМАНДА --help' за више информација" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [опције]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Прикажи само проблеме који нису пријављени" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" +-msgstr "" ++msgstr "Прикажи детаљан извештај" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "Прикажи само проблеме млађе од наведеног момента у времену" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" +-msgstr "" ++msgstr "Прикажи само проблеме старије од наведеног момента у времену" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " + "issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" ++"Могућност аутоматског пријављивања је онемогућена. Молим да размотрите " ++"омогућавање исте извршавањем\n" ++"'abrt-auto-reporting enabled' као корисник са root привилегијама\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." +-msgstr "" ++msgstr "& info [опције] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "Текст већи од овога ће бити приказан сажето" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "Не постоји директоријум проблема '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" +-msgstr "" ++msgstr "Прикажи само број проблема без икакве поруке" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "Прикажи само проблеме млађе од наведеног момента у времену" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" ++"ABRT је открио %u проблем(а). За више информација извршите: abrt-cli " ++"list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Уклањам '%s'" ++ ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [опције] DIR..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Уклони PROBLEM_DIR након пријављивања" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Акције: уклони(rm), инфо(i), прескочи(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Акције: уклони(rm), извештај(e), инфо(i), прескочи(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Пријављујем '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "За следећи проблем притисните ЕНТЕР:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Без --since аргумента, пролази кроз све откривене проблеме." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" ++msgstr "Означава само проблеме откривене након момента у времену" ++ ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" + msgstr "" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 +@@ -1995,6 +2551,8 @@ msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" + msgstr "" ++"Пошаљи coredump на удаљени сервер за поновни траг на анализу или изврши " ++"локалну анализу ако удаљена анализа није успешна" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -2006,72 +2564,89 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" ++"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Ако " ++"корисник не жели да пошаље свој coredump нигде овај догађај ће извршити " ++"локалну анализу. Локална анализа се извршава и у случају да удаљена анализа " ++"није успешна. Предности: нема потребе за преузимањем debuginfo-а. База " ++"података debuginfo-а сервера за поновни траг је комплетнија. Сервер за " ++"поновни траг може створити боља стабла позивања. Мане: coredump који шаљете " ++"садржи све податке о срушеном програму, укључујући и ваше приватне податке, " ++"ако их има." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +-msgstr "" ++msgstr "Анализирај VM језгро" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" ++"Инсталирај кернел debuginfo пакете, створи запис кернела и oops поруку" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." + msgstr "" ++"Потребно је инсталирати кернел debuginfo пакете, што може захтевати значајан " ++"период времена, и заузимати простор на диску." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +-msgstr "" ++msgstr "Сакупи GConf подешавања" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "" ++msgstr "Сачувај подешавања из GConf директоријума програма" + + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." + msgstr "" ++"Извршава gconftool-2 --recursive-list /apps/executable и чува га као " ++"'gconf_subtree' елеменат." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +-msgstr "" ++msgstr "Сакупља датотеке за подешавање vim-а на системском нивоу" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +-msgstr "" ++msgstr "Сачувај /etc/vimrc и /etc/gvimrc" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:3 + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." + msgstr "" ++"Проверава да ли постоје vimrc и gvimrc датотеке у /etc и чува их као " ++"system_vimrc и system_gvimrc, респективно." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +-msgstr "" ++msgstr "Скупља ваше vim датотеке за подешавање" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +-msgstr "" ++msgstr "Чува .vimrc и .gvimrc из вашег личног директоријума" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" + "Checks if there are .vimrc and .gvimrc in your home directory and saves them " + "as user_vimrc and user_gvimrc, respectively." + msgstr "" ++"Проверава да ли постоје vimrc и gvimrc датотеке у вашем личном директоријуму " ++"и чува их као user_vimrc и user_gvimrc, респективно." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +-msgstr "" ++msgstr "Након извештаја" + + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" +-msgstr "" ++msgstr "Извршава се након што је пријављивање завршено" + + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" +-msgstr "" ++msgstr "Користи се за освежавање база података" +diff --git a/po/sr@latin.po b/po/sr@latin.po +index 962be2c..43f6459 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: sr@latin\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -29,108 +29,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Prijava" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -152,7 +163,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -185,30 +198,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -234,14 +259,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -253,11 +278,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -271,24 +296,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -296,60 +322,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -357,12 +373,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -383,18 +399,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -424,73 +444,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -502,68 +523,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -587,18 +608,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -639,7 +668,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -728,12 +757,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -842,14 +903,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1064,7 +1154,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1074,16 +1165,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1092,8 +1185,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1113,6 +1210,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1136,11 +1234,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1154,16 +1254,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1171,18 +1274,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1201,14 +1307,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1217,70 +1326,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1777,63 +1936,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1855,65 +2014,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1921,49 +2081,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1972,24 +2142,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sv.po b/po/sv.po +index 156d987..e3af612 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -31,16 +31,16 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-26 04:08-0400\n" ++"PO-Revision-Date: 2015-08-01 11:41-0400\n" + "Last-Translator: Göran Uddeborg \n" + "Language-Team: Swedish \n" + "Language: sv\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -50,34 +50,34 @@ msgstr "Problemrapportering" + msgid "View and report application crashes" + msgstr "Visa och rapportera programkrascher" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan inte ta över ägandet av ”%s”" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan inte öppna katalog för att skriva '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan inte stänga notifikation: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Ojdå!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Starta om" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -86,7 +86,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Problemet har " + "rapporterats automatiskt." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -95,8 +95,8 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Problemet kommer " + "rapporteras när internet kan nås." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -105,7 +105,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Kontakta utvecklaren om " + "du vill rapportera saken." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -114,7 +114,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att %s kraschade. Om du vill hjälpa till " + "att lösa problement, skicka då en rapport." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -122,7 +122,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " + "Problemet har rapporterats automatiskt." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -130,7 +130,7 @@ msgstr "" + "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " + "Problemet kommer rapporteras när internet kan nås." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -138,28 +138,28 @@ msgstr "" + "Vi är ledsna, men det verkar som att ett problem uppstod. OM du vill hjälpa " + "till att lösa problemet, skicka då en rapport." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan inte visa notifiering: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Kan inte läsa från gio-kanal: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan inte sätta kodning på gio-kanal: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Kan inte slå på ej blockerande läge för gio-kanal: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -169,6 +169,17 @@ msgstr "" + "\n" + "Miniprogram som meddelar användare när nya problem upptäcks av ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Fråga före en katalog stjäls" +@@ -190,13 +201,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Filen med minnesdumpen behövs för att skapa stackspår vilket är en åtgärd " +-"som kostar tid och utrymme. ABRT tillhandahåller en tjänst som genererar " +-"stackspåret från en minnesdump men du måste skicka minnesdumpen till denna " +-"tjänst. Med detta alternativ avaktiverat kommer ABRT skicka minnesdumpen " +-"utan att fråga." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -243,10 +251,6 @@ msgstr "" + "är aktiverat." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Fråga före minnesutskrifter skickas" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -254,15 +258,15 @@ msgstr "" + " Med denna flagga aktiverad skapar ABRT alltid felrapporter med begränsad " + "åtkomst om eventuellt känsliga data detekteras." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Begär privat rapport för känslig information" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Notifiera om ofullständiga problem" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -272,6 +276,22 @@ msgstr "" + "loggar ut. För att kunna skapa användbara problemrapporter kommer ABRT inte " + "tillåta dig att skicka dessa problem." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_Stäng" +@@ -297,7 +317,7 @@ msgstr "Om" + msgid "Quit" + msgstr "Avsluta" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -307,7 +327,7 @@ msgstr "" + "\n" + "Fråga paketdatabasen och spara paket- och komponentnamn" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -319,11 +339,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemkatalog" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Använd denna katalog som RPM-rot" + +@@ -339,24 +359,25 @@ msgstr "& [-v] -d KAT\n" + msgid "Root directory for running container commands" + msgstr "Rotkatalogen för att köra behållarkommandon" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [flaggor]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Använd NUM som klient-uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Logga till syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Lägg till programnamn till loggen" + +@@ -364,62 +385,52 @@ msgstr "Lägg till programnamn till loggen" + msgid "Unknown error" + msgstr "Okänt fel" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "”%s” är inte en giltig problemkatalog" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' är inte ett giltigt elementnamn" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Elementet '%s' kan inte modifieras" ++msgid "'%s' is not a valid problem directory" ++msgstr "”%s” är inte en giltig problemkatalog" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Inte auktoriserad" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Kan inte komma åt problemet för modifikation" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Elementet '%s' kan inte modifieras" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chownoperationen på katalogen misslyckades. Kolla systemloggarna för fler " + "detaljer." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Kan inte komma åt problemet för läsning" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' är inte ett giltigt elementnamn" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Det går inte att få storleken på '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Inget utrymme kvar" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan inte radera elementet '%s' från problemkatalogen '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -429,12 +440,12 @@ msgstr "" + "Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet " + "inte kör.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avsluta efter ANT sekunders inaktivitet" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Detta program måste köra som root." + +@@ -460,18 +471,22 @@ msgstr "Bli inte demon" + msgid "Log to syslog even with -d" + msgstr "Logga till syslog även med -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event HÄNDELSEKAT…" ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Kör HÄNDELSE på KAT" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Kommunicera direkt med användaren" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -509,88 +524,89 @@ msgstr "Antal samtidiga arbetare. Standard är " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximal cachestorlek i MiB. Standard är " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Slår av autenticering" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support-användarnamn" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support-lösenord, om det inte ges kommer en fråga efter det att " + "ställas" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL-certifikatsökvägar eller certifikattyp" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Du behöver även ange --username för --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Du kan använda antingen --username eller --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Du kan använda antingen --username eller --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Du kan använda antingen --anonymous eller --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Fel antal argument" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Okänt parametervärde: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Lösenord:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Kan inte fortsätta utan lösenord\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP-autenticerad automatrapportering" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL-klientautenticerad automatrapportering" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "anonym automatrapportering" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -609,68 +625,68 @@ msgstr "" + " SKICKA_KAT - Katalog där skickade arkiv lagras\n" + " FILNAMN - Skickat arkivs filnamn\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Inte en katalog: ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Hoppar över: ”{0}” (börjar med ett snedstreck)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Hoppar över: ”{0}” (börjar med en punkt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Hoppar över: ”{0}” (innehåller ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Hoppar över: ”{0}” (innehåller blanktecken)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Hoppar över: ”{0}” (innehåller tabulator)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Kan inte byta katalog till ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Okänd filtyp: ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Kan inte skapa en arbetskatalog i ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Kan inte flytta ”{0}” till ”{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Kan inte kopiera ”{0}” till ”{1}”" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Verifieringsfel på ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Packar upp ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Kan inte skapa katalogen ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kan inte packa upp ”{0}”" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "”{0}” behandlad" + +@@ -694,21 +710,29 @@ msgstr "Kan inte ändra ägare av ”%s”: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Misslyckades att radera en problemkatalog: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Kan inte hämta problemdata från abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Kan inte hämta problemlistan från abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Kan inte hämta problemdata från abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Kan inte testa huruvida elementet finns via abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -755,7 +779,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Stackspårstolkning misslyckades för %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Kraschtråden kan inte finnas" + +@@ -862,7 +886,7 @@ msgstr "Kan inte extrahera oops-meddelandet: ”{0}”" + msgid "Oops text extracted successfully" + msgstr "Oops-texten extraherad" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -870,6 +894,38 @@ msgstr "" + "Kärnloggen indikerar att hårdvarufel inträffat.\n" + "Detta är troligen inte ett mjukvaruproblem.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -1011,7 +1067,36 @@ msgstr "Saknad felsökningsfil: {0}" + msgid "All debuginfo files are available" + msgstr "Alla felsökningsinformationsfiler är tillgängliga" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1021,7 +1106,7 @@ msgstr "" + "svarar 'Nej' kommer en stackspårning att skapas lokalt. (Det kan komma att " + "ladda ner en stor mängd data)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1249,7 +1334,8 @@ msgstr "Skapa ny problemkatalog i KAT för varje oops som hittas" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Samma som -d DumpPlats, DumpPlats anges i abrt.conf" + +@@ -1259,16 +1345,18 @@ msgstr "Spara den extraherade information i PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Gör problemkatalogen läsbar för alla" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Begränsa skapandet av problemkataloger till 1 per sekund" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Skriv söksträngar till standard ut och avsluta" + +@@ -1277,9 +1365,13 @@ msgstr "Skriv söksträngar till standard ut och avsluta" + msgid "Failed to compile regex" + msgstr "Misslyckades att kompilera reguljäruttryck" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "Kan inte uppdatera problemet: hittade mer än en oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1298,6 +1390,7 @@ msgstr "Misslyckades att spara data för felupptäckt i abrt-databasen" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Misslyckades att initiera läsning av systemd-journal" + +@@ -1333,11 +1426,13 @@ msgstr "Skapa en ny problemkatalog i KAT för varje minnesdump" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Börja att läsa systemd-journal från MARKÖR-positionen" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Börja att läsa systemd-journal från slutet" + +@@ -1351,17 +1446,20 @@ msgstr "Samma som -t INT, INT anges i plugins/CCpp.conf" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Följ systemd-journal från den senast observerade positionen (om tillgänglig)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "De behöver ange antingen -c MARKÖR eller -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Kan inte öppna systemd-journal" + +@@ -1369,18 +1467,21 @@ msgstr "Kan inte öppna systemd-journal" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "Kan inte filtrera systemd-journal till endast systemd-coredump-data" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Kan inte söka till slutet på journalen" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Misslyckades att sätta markören för systemd-journal ”%s”" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Kan inte läsa journaldata." + +@@ -1413,28 +1514,77 @@ msgstr "" + "Den senast observerade positionen sparas i " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Läs journalfiler från alla maskiner" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Läs alla journalfiler från katalogen vid SÖKVÄG" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Kan inte initiera systemd-journal i katalogen ”%s”" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Kan inte filtrera ut endast kärndata från systemd-journal" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Misslyckades att starta läsning från markören ”%s”" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1444,43 +1594,47 @@ msgstr "" + "\n" + "Extrahera en Xorg-krasch från FIL (eller standard in)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Skriv funna kraschdata på standard ut" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "Skapa problemkatalog i KAT för varje krasch som hittas" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Kan inte spara journalläsningens position" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Kan inte spara journalläsningens position: open(”%s”)" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "Återställer inte journalläsningens position: filen ”%s” finns inte" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Kan inte återställa journalläsningens position från filen ”%s”" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Kan inte återställa journalläsningens position: sökvägen ”%s” är inte en " + "normal fil" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1488,12 +1642,12 @@ msgstr "" + "Kan inte återställa journalläsningens position: filen ”%s” överskrider " + "storleksgränsen %d B" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Kan inte återställa journalläsningens position: open(”%s”)" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1501,7 +1655,7 @@ msgstr "" + "”%s”" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Misslyckades att flytta journalen till en markör från filen ”%s”" +@@ -2035,7 +2189,7 @@ msgstr "Misslyckades att stänga ner NSS." + msgid "Sleeping for %d seconds" + msgstr "Sover i %d sekunder" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2043,7 +2197,7 @@ msgstr "" + "Ett kärnproblem inträffade på grund av trasigt BIOS. Tyvärr går sådana " + "problem inte att rätta utav kärnutvecklare." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2051,7 +2205,7 @@ msgstr "" + "Ett kärnproblem har inträffat, men din hårdvara stödjs inte, därför kan inte " + "kärnutvecklare fixa detta problem." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2060,24 +2214,24 @@ msgstr "" + "Ett problem i kärnan inträffade, men din kärna har fläckats (flaggor:%s). " + "De som underhåller kärnan kan inte diagnostisera fläckade rapporter." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Fläckande moduler: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Lista över fel-id:n" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Ange en bodhi-server-url" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Ange en utgåva" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2087,21 +2241,21 @@ msgstr "" + "\n" + "Sök efter uppdateringar på bodhi-servern" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Söker efter uppdateringar" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Inga uppdateringar av detta paket hittades" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "Den lokala versionen av paketet är nyare än de tillgängliga uppdateringarna" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2129,65 +2283,66 @@ msgstr "Visa hittade oopsmeddelanden" + msgid "Delete files with found oopses" + msgstr "Radera filer med hittade oopsmeddelanden" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "”%s” identifierar mer än en problemkatalog" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Användning: abrt-cli [--version] KOMMANDO [KAT]…" ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Lista problem [i KAT]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Ta bort problemkatalogen KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analysera och rapportera problemdata i KAT" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Skriv ut information om KAT" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Visa antalet nyliga krascher" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Bearbeta flera problem" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [flaggor]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Lista endast orapporterade problem" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Visa detaljerad rapport" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "Visa bara problem nyare än angiven tidsstämpel" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "Visa bara problem äldre än angiven tidsstämpel" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2199,51 +2354,60 @@ msgstr "" + "att köra ”abrt-auto-reporting enabled” som en användare med root-" + "rättigheter\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [flaggor] KAT…" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "Text längre än detta kommer visas förkortad" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Problemkatalogen finns inte ”%s”" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Visa bara antalet problem utan några meddelanden" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Visa bara problem nyare än angiven tidsstämpel" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n" +-"\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& rapport [flaggor] KAT…" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Tar bort ”%s”" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& rapport [flaggor] KAT…" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Åtgärder: remove(rm), info(i), skip(s):" +@@ -2252,24 +2416,179 @@ msgstr "Åtgärder: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Åtgärder: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporterar ”%s”" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "För nästa problem tryck RETUR:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Utan argumentet --since, itererar över alla upptäckta problem." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Väljer endast problem upptäckta efter tidsstämpeln" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ta.po b/po/ta.po +index a74a517..cef4f2a 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -15,7 +15,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -25,7 +25,7 @@ msgstr "" + "language/ta/)\n" + "Language: ta\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -35,102 +35,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ஐ எழுத கோப்பகத்தைத் திறக்க முடியவில்லை" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "அறிவிப்பை மூட முடியவில்லை: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "அறிக்கையிடு" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "அறிவிப்பைக் காண்பிக்க முடியவில்லை: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio சேனலில் இருந்து வாசிக்க முடியவில்லை: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio சேனலில் குறியீடாக்கத்தை அமைக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio சேனலுக்கு தடுக்காத பயன்முறையை இயக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -140,6 +140,17 @@ msgstr "" + "\n" + "ABRT புதிய சிக்கல்களைக் கண்டறியும் போது அதைப் பற்றி அறிவிக்கும் பயன்பாடு\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "கோப்பகத்தை எடுத்துக்கொள்ளும் முன்பு கேட்கவும்" +@@ -161,13 +172,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"அதிக நேரமும் இடமும் தேவைப்படுகின்ற, ஸ்டேக் ட்ரேஸை உருவாக்கும் செயலைச் செய்ய " +-"coredump கோப்பு அவசியமாகும். கோர்டம்ப்பிலிருந்து ஸ்டேக் ட்ரேஸை உருவாக்க ABRT " +-"ஒரு சேவையை வழங்குகிறது, ஆனால் நீங்கள் இந்தச் சேவைக்கு கோர்டம்ப்பைப் பதிவேற்ற " +-"வேண்டும். இந்த விருப்பம் முடக்கப்பட்டிருந்தால், ABRT கேட்காமலே கோர்டம்ப்பைப் " +-"பதிவேற்றும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -216,10 +224,6 @@ msgstr "" + "செயல்படும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "கோர்டம்ப்பைப் பதிவேற்றும் முன் கேட்கவும்" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -228,15 +232,15 @@ msgstr "" + "கண்டறியப்பட்டால், ABRT பயன்பாடு எப்போதும் கட்டுப்படுத்தப்பட்ட அணுகலுடனான வழு " + "டிக்கட்டை உருவாக்கும்." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "முக்கியமான தகவலுக்கு தனிப்பட்ட டிக்கட்டைக் கோரவும்" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "நிறைவடையாத சிக்கல்கள் குறித்து அறிவி" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -247,6 +251,22 @@ msgstr "" + "வழங்குவதற்காக ABRT பயன்பாடு இந்தச் சிக்கல்களைச் சமர்ப்பிக்க உங்களை " + "அனுமதிக்காது." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "மூடு (_C)" +@@ -272,14 +292,14 @@ msgstr "அறிமுகம்" + msgid "Quit" + msgstr "வெளியேறு" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -291,11 +311,11 @@ msgstr "" + msgid "Problem directory" + msgstr "சிக்கல் கோப்பகம்" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "அமைவாக்கக் கோப்பு" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -309,24 +329,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM ஐ கிளையன்ட் uid ஆகப் பயன்படுத்தவும்" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "syslog க்கு பதியவும்" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "நிரல் பெயர்களை பதிவில் சேர்க்கவும்" + +@@ -334,62 +355,52 @@ msgstr "நிரல் பெயர்களை பதிவில் சேர + msgid "Unknown error" + msgstr "தெரியாத பிழை" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "அங்கீகாரம் இல்லை" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "மாற்றம் செய்ய சிக்கலை அணுக முடியவில்லை" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "கோப்பகத்தை Chown செய்தல் தோல்வியடைந்தது. மேலும் விவரங்களுக்கு கணினி " + "பதிவுகளைப் பார்க்கவும்." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' இன் அளவைப் பெற முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "சிக்கல் இடம் மீதம் இல்லை" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "சிக்கல் கோப்பகம் '%s' இலிருந்து கூறு '%s' ஐ நீக்க முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -399,12 +410,12 @@ msgstr "" + "'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் " + "இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM விநாடிகளுக்கு செயலில்லாமல் இருந்த பிறகு வெளியேறவும்" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "இந்த நிரலை மூலப் பயனராகவே இயக்க வேண்டும்." + +@@ -431,18 +442,22 @@ msgstr "டெமனைஸ் செய்ய வேண்டாம்" + msgid "Log to syslog even with -d" + msgstr "-d உடனும் syslog இல் பதிவு செய்யவும்" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "DIR இல் EVENT ஐ இயக்கு" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "நேரடியாக பயனரிடம் தொடர்புகொள்ளவும்" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -482,89 +497,90 @@ msgstr "ஒத்த சமய ஒர்க்கர்களின் எண் + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB இல் அதிகபட்ச தேக்கக அளவு. முன்னிருப்பு:" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "அங்கீகரிப்பை முடக்கும்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat ஆதரவு பயனர் பெயர்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ஆதரவு கடவுச்சொல், கொடுக்கப்படாவிட்டால், அதைக் கேட்கும் இடைமுகம் " + "காட்டப்படும்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL சான்றிதழ் பாதைகள் அல்லது சான்றிதழ் வகை" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "--password க்கு --username ஐயும் வழங்க வேண்டும்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "--username அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "--username அல்லது --anonymous இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "செல்லுபடியாகாத மதிப்புருக்களின் எண்ணிக்கை" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "தெரியாத விருப்ப மதிப்பு: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "கடவுச்சொல்:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "கடவுச்சொல் இல்லாமல் தொடர முடியாது\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP அங்கீகரித்த தானியக்க அறிக்கையிடல்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL கிளையன் அங்கீகரித்த தானியக்க அறிக்கையிடல்" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "பெயரிலா தானியக்க அறிக்கையிடல்" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -585,83 +601,83 @@ msgstr "" + " FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ஒரு கோப்பகமல்ல: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (சாய்வுக் கோட்டில் தொடங்குகிறது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (புள்ளியில் தொடங்குகிறது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (.. ஐக் கொண்டுள்ளது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (இடைவெளியைக் கொண்டுள்ளது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (தத்தலைக் கொண்டுள்ளது)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "கோப்பகத்தை '{0}' க்கு மாற்றியமைக்க முடியாது" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "தெரியாத கோப்பு வகை: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' இல் பணிக் கோப்பகத்தை உருவாக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ஐ '{1}' க்கு நகர்த்த முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ஐ '{1}' இல் நகலெடுக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' இல் சரிபார்ப்புப் பிழை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ஐப் பிரித்தெடுக்கிறது" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' கோப்பகத்தை உருவாக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ஐப் பிரித்தெடுக்க முடியவில்லை" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' வெற்றிகரமாக செயலாக்கப்பட்டது" + +@@ -685,18 +701,26 @@ msgstr "'%s' ஐ chown செய்ய முடியவில்லை: %s" + msgid "Deleting problem directory failed: %s" + msgstr "சிக்கல் கோப்பகத்தை நீக்குவது தோல்வியடைந்தது: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus இலிருந்து சிக்கல் பட்டியலைப் பெற முடியவில்லை: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -746,7 +770,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s க்கு பின் தடமறிதல் பாகுபடுத்துதல் தோல்வியடைந்தது" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "செயலிழப்பு இழை காணப்படவில்லை" + +@@ -854,7 +878,7 @@ msgstr "oops செய்தியை பிரித்தெடுக்க + msgid "Oops text extracted successfully" + msgstr "Oops உரை வெற்றிகரமாக பிரித்தெடுக்கப்பட்டது" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -862,6 +886,38 @@ msgstr "" + "கெர்னல் பதிவு வன்பொருள் பிழைகள் கண்டறியப்பட்டதாகக் குறிக்கிறது.\n" + "அநேகமாக இது மென்பொருள் தொடர்பான பிரச்சனையாக இருக்காது.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -980,7 +1036,36 @@ msgstr "விடுப்பட்ட வழுநீக்கல் தகவ + msgid "All debuginfo files are available" + msgstr "வழுநீக்கல் தகவல் கோப்புகள் அனைத்தும் உள்ளன" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -990,7 +1075,7 @@ msgstr "" + "'இல்லை' என்பது உங்கள் பதிலாக இருந்தால், கணினியில் ஒரு ஸ்டேக் டிரேஸ் " + "உருவாக்கப்படும். (அது மிகப் பெரிய அளவிலான தரவைப் பதிவிறக்கலாம்)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1236,7 +1321,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation போன்றது DumpLocation ஆனது abrt.conf இல் " +@@ -1248,16 +1334,18 @@ msgstr "பிரித்தெடுத்த தகவலை PROBLEM இல + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "சிக்கல் கோப்பகத்தை அனைவரும் வாசிக்கும்படி அமை" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ஒரு வினாடிக்கு த்ராட்டில் சிக்கல் கோப்பக உருவாக்கம் 1" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "தேடல் சரங்களை stdout இல் அச்சிட்டு வெளியேறு" + +@@ -1267,11 +1355,13 @@ msgstr "தேடல் சரங்களை stdout இல் அச்சி + msgid "Failed to compile regex" + msgstr "சுருங்குறித் தொடரை கம்பைல் செய்வதில் தோல்வியடைந்தது" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops " +-"கண்டறியப்பட்டுள்ளது" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1290,6 +1380,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1313,11 +1404,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1331,16 +1424,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1348,18 +1444,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1378,14 +1477,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1394,12 +1496,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1409,60 +1557,64 @@ msgstr "" + "\n" + "FILE இல் (அல்லது தரநிலை உள்ளீட்டில்) இருந்து Xorg ஐப் பிரித்தெடு" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "கண்டறிந்த செயலிழப்பு தரவை தரநிலையான வெளியீட்டில் அச்சிடு" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "கண்டறியப்படும் ஒவ்வொரு செயலிழப்புக்கும் DIR இல் ஒரு சிக்கல் கோப்பகத்தை " + "உருவாக்கு" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -2003,7 +2155,7 @@ msgstr "NSS ஐ பணிநிறுத்த முடியவில்லை + msgid "Sleeping for %d seconds" + msgstr "%d வினாடிகளுக்கு தூங்குகிறது" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2011,7 +2163,7 @@ msgstr "" + "பழுதடைந்த BIOS ஆல் ஒரு கெர்னல் சிக்கல் ஏற்பட்டது. துரதிருஷ்டவசமாக இத்தகைய " + "சிக்கல்கள் கெர்னல் பராமரிப்பாளர்களால் தீர்க்கப்படுவதில்லை." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2019,7 +2171,7 @@ msgstr "" + "ஒரு கெர்னல் சிக்கல் ஏற்பட்டது, ஆனால் உங்கள் வன்பொருளுக்கு ஆதரவில்லை, " + "ஆகவேகெர்னல் பரிமாரிப்பாளர்களால் இந்த சிக்கலைத் தீர்க்க முடியாது." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2029,24 +2181,24 @@ msgstr "" + "(கொடிகள்:%s). கெர்னல் பராமரிப்பு தொகுதிகளால் சிதைவடைந்தவை பற்றிய அறிக்கைகளை " + "உருவாக்க முடியவில்லை." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " பாதிக்கப்பட்ட தொகுதிக்கூறுகள்: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "வழு ஐடிகளின் பட்டியல்" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "ஒரு போதி சேவையக url ஐக் குறிப்பிடவும்" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "ஒரு வெளியீட்டைக் குறிப்பிடவும்" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2056,21 +2208,21 @@ msgstr "" + "\n" + "போதி சேவையகத்தில் புதுப்பிப்புகள் உள்ளதா எனத் தேடு" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "புதுப்பிப்புகள் உள்ளதா எனத் தேடுகிறது" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "இந்தத் தொகுப்புக்கு புதுப்பிப்பு எதுவும் இல்லை" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + "கிடைக்கக்கூடிய புதுப்பிப்புகளைக் காட்டிலும், தற்போதுள்ள பதிப்பு புதியது" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2098,66 +2250,67 @@ msgstr "கண்டறியப்பட்ட oopses ஐ அச்சிடு + msgid "Delete files with found oopses" + msgstr "கண்டறியப்பட்ட oopses கொண்டுள்ள கோப்புகளை அழி" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ஒன்றுக்கு மேற்பட்ட சிக்கல் கோப்பகங்களைக் கண்டறிகிறது" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "பயன்பாடு: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "[in DIRs] சிக்கல்களையும் பட்டியலிடு" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "DIR என்ற சிக்கல் கோப்பகத்தை நீக்கவும்" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR இல் உள்ள சிக்கல் தரவை ஆராய்ந்து அறிவிக்கவும்" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR பற்றி தகவலை அச்சிடவும்" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "சமீபத்திய செயலிழப்புகளின் எண்ணிக்கையை அச்சிடு" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "பல சிக்கல்களைச் செயலாக்கவும்" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவலுக்கு பார்க்கவும்" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "அறிக்கையிடாத சிக்கல்களை மட்டும் பட்டியலிடு" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "விவரமான அறிக்கையை காட்டவும்" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் பிறகான சிக்கல்களை மட்டும் பட்டியலிடு" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் முந்தைய சிக்கல்களை மட்டும் பட்டியலிடு" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2167,55 +2320,65 @@ msgstr "" + "Autoreporting அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \n" + "'abrt-auto-reporting enabled' கட்டளையை இயக்கி அதை செயல்படுத்தவும்\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "இதை விட பெரிய உரை அப்ரிட்ஜ் செய்யப்பட்டு காண்பிக்கப்படும்" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "இப்படி ஒரு சிக்கல் கோப்பகம் இல்லை '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "எந்த செய்தியும் இன்றி சிக்கல் எண்ணிக்கையை மட்டும் அச்சிடு" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "குறிப்பிடப்பட்ட நேர முத்திரைக்கு சமீபமான சிக்கல்களை மட்டும் அச்சிடு" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u சிக்கல்களைக் கண்டறிந்துள்ளது. மேலும் தகவலுக்கு இந்தக் கட்டளையை " + "இயக்கவும்: abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ஐ அழிக்கிறது" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& அறிக்கையிடவும் [விருப்பங்கள்] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "அறிக்கையிட்ட பிறகு PROBLEM_DIR ஐ அகற்றவும்" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ஐ அழிக்கிறது" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "செயல்கள்: நீக்குதல்(rm), தகவல்(i), தவிர்த்தல்(s):" +@@ -2226,30 +2389,185 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "செயல்கள்: நீக்குதல்(rm), அறிக்கையிடுதல்(e), தகவல்(i), தவிர்த்தல்(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' ஐ அறிக்கையிடுகிறது" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "அடுத்த சிக்கலுக்கு ENTER ஐ அழுத்தவும்:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் " + "மீண்டும் மீண்டும் செயல்படுத்தப்படும்." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + "நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/te.po b/po/te.po +index 9b1eef8..a68f9bb 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -16,7 +16,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -26,7 +26,7 @@ msgstr "" + "language/te/)\n" + "Language: te\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -36,102 +36,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' వ్రాయుట కొరకు డైరెక్టరీ తెరువలేదు" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ప్రకటనను మూయలేదు: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "నివేదించు" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ప్రకటనను చూపలేదు: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio చానల్‌నుండి చదువలేదు: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio చానల్ నందు యెన్కోడింగ్ అమర్చలేదు: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio చానల్ కొరకు నాన్‌బ్లాకింగ్ రీతిని ఆన్ చేయలేదు: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -141,6 +141,17 @@ msgstr "" + "\n" + "ABRT చేత కొత్త సమస్యలు గుర్తించబడినప్పుడు వినియోగదారికి తెలుపు ఆప్లెట్\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "సంచయాన్ని దొంగిలించుటకు ముందుగా అడుగుము" +@@ -162,12 +173,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"స్టాక్ ట్రేస్ పుట్టించుటకు కోర్‌డంప్ ఫైలు తప్పనిసరి ఇది సమయం మరియు జాగా " +-"ఖర్చుచేసే కార్యక్రమం. స్టాక్ ట్రేస్ నుండి కోర్‌డంప్‌ను పుట్టించే సేవను ABRT " +-"అందిస్తుంది అయితే మీరు కోర్‌డంప్‌ను దాని సేవకు ఎక్కించాలి. ఈ ఐచ్చికం " +-"ఆచేతించినచో ABRT కోర్‌డంప్‌ను అడగకుండానే అప్‌లోడ్ చేయును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -213,10 +222,6 @@ msgstr "" + "చూపదు. షార్టెన్డ్ నివేదీకరణ చేతనమైతేనే దీని ప్రభావంవుంటుంది." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "కోర్‌డంప్‌ను అప్‌లోడ్ చేయుటకు ముందుగా అడుగుము" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -224,15 +229,15 @@ msgstr "" + "ఈ ఐచ్చికం చేతనించివున్నప్పుడు, సెన్సిటివ్ అవ్వగల డేటా ఏదైనా గుర్తించబడితే " + "ABRT ఎప్పుడూ బగ్ టికెట్‌ను పరిమిత ఏక్సెస్‌తో సృష్టించును." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "సున్నితమైన సమాచారం కొరకు వ్యక్తిగత టికెట్‌ను అభ్యర్ధించును" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "అసంపూర్ణ సమస్యలను ప్రకటించుము" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -242,6 +247,22 @@ msgstr "" + "అసంపూర్ణ సమస్యలను గుర్తించబడెను. సమస్య యొక్క విలువైన నివేదికలను అందించుటకు, " + "ABRT మిమ్ములను ఈ సమస్యలను దాఖలుచేయడానికి అనుమతించదు." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "మూసివేయి (_C)" +@@ -267,14 +288,14 @@ msgstr "గురించి" + msgid "Quit" + msgstr "నిష్క్రమించు" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -286,11 +307,11 @@ msgstr "" + msgid "Problem directory" + msgstr "సమస్య డైరెక్టరీ" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "ఆకృతీకరణ ఫైలు" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -304,24 +325,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [ఐచ్చికాలు]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "NUM క్లైంట్ uid వలె వుపయోగించు" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "సిస్‌లాగ్‌కు లాగ్" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరులను జతచేయి" + +@@ -329,62 +351,52 @@ msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరుల + msgid "Unknown error" + msgstr "తెలియని దోషం" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "'%s' మూలకం సవరించలేదు" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ధృవీకరించబడలేదు" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "సవరణ కొరకు సమస్యను యాక్సెస్ చేయలేము" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "'%s' మూలకం సవరించలేదు" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "సంచయం chown చేయుట విఫలమైంది. మరిన్ని వివరాల కొరకు వ్యవస్థ లాగ్‌లను " + "పరిశీలించండి." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' యొక్క పరిమాణం పొందలేదు" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ఏ సమస్య ఖాళీ విడువలేదు" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "మూలకం '%s'ను సమస్య డైరెక్టరీ '%s' నుండి తొలగించలేదు" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -392,12 +404,12 @@ msgid "" + "is not running.\n" + msgstr "పేరు '%s' పోయంది, వేరే సేవ యీ పేరు పొంది నడువకుండా చూడండి.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM క్షణాల క్రియాహీనత తరువాత నిష్క్రమించు" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ఈ ప్రోగ్రామ్ root గా నడువవలెను." + +@@ -423,18 +435,22 @@ msgstr "డెమొనైజ్ చేయవద్దు" + msgid "Log to syslog even with -d" + msgstr "సిస్‌లాగ్‌కు -d తో లాగ్ అవ్వుము" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "EVENT ను DIR పై నడుపుము" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "వాడుకరిని నేరుగా సంప్రదించు" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -473,87 +489,88 @@ msgstr "ఏకకాలంలో పనిచేయు వారి సంఖ్ + msgid "Maximal cache size in MiB. Default is " + msgstr "గరిష్ట క్యాచీ పరిమాణం MiB నందు. అప్రమేయం" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "ధృవీకరణను ఆఫ్ చేయును" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat తోడ్పాటు వాడుకరి పేరు" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat తోడ్పాటు సంకేతపదం, ఇవ్వకపోతే, దానికొరకు ప్రామ్ట్ జారీ అగును" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ధృవీకరణపత్రం పాత్స్ లేదా ధృవీకరణపత్రం రకం" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "మీరు --username మరియు --password తెలపాలి" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "మీరు --username లేదా --certificate ఉపయోగించవచ్చు" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "మీరు --username లేదా --anonymous ఉపయోగించవచ్చు" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "మీరు --anonymous లేదా --certificate ఉపయోగించవచ్చు" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "చెల్లని ఆర్గుమెంట్ల సంఖ్య" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "తెలియని ఐచ్చికం విలువ: '%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "సంకేతపదం:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "సంకేతపదం లేకుండా కొనసాగించలేము\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ధృవీకృత స్వయంచాలన నివేదీకరణ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL క్లైంట్ ధృవీకృత స్వయంచాలన నివేదీకరణ" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "పేరులేకుండా స్వయంచాలన నివేదీకరణ" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -573,83 +590,83 @@ msgstr "" + " FILENAME - Uploaded archive file name\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "సంచయం కాదు: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "దాటవేస్తోంది: '{0}' (స్లాష్‌తో ప్రారంభమగును)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "దాటవేస్తోంది: '{0}' (డాట్‌తో ప్రారంభమగును)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "దాటవేస్తోంది: '{0}' (.. కలిగివుంది)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "దాటవేస్తోంది: '{0}' (ఖాళీ కలిగివుంది)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "దాటవేస్తోంది: '{0}' (టాబ్ కలిగివుంది)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "సంచయంను '{0}' కు మార్చలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "తెలియని ఫైల్ రకం: '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' నందు పనిచేయుచున్న సంచయం సృష్టించలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ను '{1}' కు కదల్చలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ను '{1}' కు నకలుతీయలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' పై నిర్ధారణ దోషం" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' విడమర్చుతోంది" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' సంచయం సృష్టించలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' విడమర్చలేదు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' విజయవంతంగా ప్రోసెసైంది" + +@@ -673,18 +690,26 @@ msgstr "chown '%s' కాలేదు: %s" + msgid "Deleting problem directory failed: %s" + msgstr "సమస్యా డైరెక్టరీను తొలగించుట విఫలమైంది: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus నుండి సమస్య జాబితాను పొందలేదు: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -732,7 +757,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s కొరకు బాక్‌ట్రేస్ పార్శింగ్ విఫలమైంది" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "క్రాష్ త్రెడ్ కనబడలేదు" + +@@ -838,7 +863,7 @@ msgstr "oops సందేశం బహిర్గతపరచలేదు: '{0} + msgid "Oops text extracted successfully" + msgstr "Oops పాఠం విజయవంతంగా బహిర్గతపరచెను" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -846,6 +871,38 @@ msgstr "" + "హార్డువేర్ దోషాలు గుర్తించబడెనని కెర్నల్ లాగ్ సూచిస్తోంది.\n" + "ఇది సాఫ్టువేర్ సమస్యకాదు.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -963,7 +1020,36 @@ msgstr "డీబగ్‌యిన్ఫో ఫైల్ తప్పిపో + msgid "All debuginfo files are available" + msgstr "అన్ని డీబగ్‌యిన్ఫో ఫైళ్ళు అందుబాటులో వున్నాయి" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -973,7 +1059,7 @@ msgstr "" + "సమాధానం 'వద్దు' అయితే గనుక, స్టాక్ ట్రేస్ స్థానికంగా జనియింపబడును. (అది " + "పెద్ద మొత్తంలో దత్తాంశమును డౌనులోడు చేయవచ్చు)." + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1211,7 +1297,8 @@ msgstr "కనుగొనబడిన ప్రతి oopsకు కొత్ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation వలె, DumpLocation అనునది abrt.conf నందు తెలుపబడెను" + +@@ -1221,16 +1308,18 @@ msgstr "వెలికితీసిన సమాచారం PROBLEM నం + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "సమస్యాత్మక డైరెక్టరీను అందరూ చదువదగినదిగా చేయి" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "డైరెక్టరీ సృష్టించుటలో సమస్యను ఒక్కో క్షణానికి 1 కి బిగించు." + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద్రించి నిష్క్రమించు" + +@@ -1240,9 +1329,13 @@ msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద + msgid "Failed to compile regex" + msgstr "regex కంపైల్ చేయుటకు విఫలమైంది" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "సమస్యను నవీకరించలేము: ఒకటి కన్నా ఎక్కువ oops కనబడెను" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1261,6 +1354,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1284,11 +1378,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1302,16 +1398,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1319,18 +1418,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1349,14 +1451,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1365,12 +1470,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1380,58 +1531,62 @@ msgstr "" + "\n" + "Xorg క్రాష్ ఫైలు నుండి (లేదా ప్రామాణిక యిన్పుట్) నుండి వెలికితీయి" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "కనుగొనిన క్రాష్ దత్తాంశం ప్రామాణిక అవుట్పుట్‌పై ముద్రించు" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "కనుగొనిన ప్రతి క్రాష్‌నకు DIR నందు సమస్య డైరెక్టరీ సృష్టించుము" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1966,7 +2121,7 @@ msgstr "NSS మూసివేతకు విఫలమైంది." + msgid "Sleeping for %d seconds" + msgstr "%d క్షణాలు స్లీపింగ్" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1974,7 +2129,7 @@ msgstr "" + "పాడైన BIOS కారణంగా కెర్నల్ సమస్య తలెత్తెను. దురదృష్టవశాత్తు, అటువంటి సమస్యలు " + "కెర్నల్ నిర్వాహకుల చే పరిష్కరించబడవు." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1982,7 +2137,7 @@ msgstr "" + "కెర్నల్ సమస్య తలెత్తెను, అయితే మీ హార్డువేర్ తోడ్పాటులేదు, కనుక కెర్నల్ " + "నిర్వాహకులు ఈ సమస్యను పరిష్కరించలేరు." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1991,24 +2146,24 @@ msgstr "" + "కెర్నల్ సమస్య యెదురైంది, అయితే మీ కెర్నల్ కల్మషమైంది (flags:%s). కల్మషమైన " + "నివేదికలను కెర్నల్ నిర్వాహకులు విశ్లేషించలేక పోయినారు." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "టైన్టెట్ మాడ్యూళ్ళు: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "బగ్ ఐడిల జాబితా" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "బోదీ సేవిక url తెలుపుము" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "విడుదల తెలుపుము" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2018,20 +2173,20 @@ msgstr "" + "\n" + "బోదీ సేవికపై నవీకరణల కొరకు వెతుకుము" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "నవీకరణల కొరకు వెతుకుచున్నది" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "ఈ ప్యాకేజీ కొరకు యే నవీకరణలు కనుగొనబడలేదు" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "అందుబాటులోని నవీకరణల కన్నా స్థానికంగా వున్న ప్యాకేజీ వర్షన్ కొత్తది" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2059,66 +2214,67 @@ msgstr "కనుగొన్న oopses ముద్రించు" + msgid "Delete files with found oopses" + msgstr "కనుగొన్న oopses తో ఫైళ్ళు తొలగించు" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ఒకటి కన్నా ఎక్కువ సమస్య డైరెక్టరీలు గుర్తించెను" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "వా‍డుక: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "సమస్యల జాబితా [DIRల నందు]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "సమస్య డైరెక్టరీ DIR తీసివేయి" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "సమస్య డాటాను DIR నందు విశ్లేషించు మరియు నివేదించు" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR గురించి సమాచారం ముద్రించు" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ఇటీవలి క్రాష్‌ల లెక్కను ముద్రించు" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "పలు సమస్యలను ప్రోసెస్‌చేయి" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND --help' చూడండి" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "నివేదించని సమస్యలు మాత్రమే జాబితాచేయి" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "విశదీకృత నివేదిక చూపుము" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా యిటీవలి సమస్యలు మాత్రమే జాబితాచేయి" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా పాత సమస్యలు మాత్రమే జాబితాచేయి" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2128,55 +2284,65 @@ msgstr "" + "స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. root అనుమతులగల వాడుకరితో\n" + "'abrt-auto-reporting enabled' జారీచేసి దానిని చేతనం చేయుము.\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "దీనికన్నా పెద్దదైన పాఠం సంక్షిప్తంగా చూపబడును" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "అటువంటి సమస్యా డైరెక్టరీ '%s' లేదు" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "ఏ సందేశం లేకుండా సమస్య లెక్కను మాత్రమే ముద్రించు" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా కొత్తవైన సమస్యలను మాత్రమే ముద్రించు" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT %u సమస్య(లు) గుర్తించెను. మరింత సమాచారం కోసం యిది నడుపండి: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' తొలగిస్తోంది" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "నివేదించిన తరువాత PROBLEM_DIR తీసివేయి" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' తొలగిస్తోంది" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "చర్యలు: remove(rm), info(i), skip(s):" +@@ -2187,28 +2353,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "చర్యలు: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' నివేదిస్తోంది" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "తరువాతి సమస్య కొరకు ENTER వత్తండి:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "టైమ్‌స్టాంప్ తరువాత గుర్తించిన సమస్యలను మాత్రమే ఎంపికచేయును" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/tg.po b/po/tg.po +index aa4cbf0..28494e3 100644 +--- a/po/tg.po ++++ b/po/tg.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/tg/)\n" + "Language: tg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -27,108 +27,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Гузориш" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -150,7 +161,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -183,30 +196,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -232,14 +257,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -251,11 +276,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Файли танзимотӣ" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -269,24 +294,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [имконот]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Номҳои барномаҳоро ба журнал илова кунед" + +@@ -294,60 +320,50 @@ msgstr "Номҳои барномаҳоро ба журнал илова кун + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -355,12 +371,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -381,18 +397,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -422,73 +442,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -500,68 +521,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -585,18 +606,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -637,7 +666,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -726,12 +755,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -840,14 +901,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1062,7 +1152,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1072,16 +1163,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1090,8 +1183,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1111,6 +1208,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1134,11 +1232,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1152,16 +1252,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1169,18 +1272,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1199,14 +1305,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1215,70 +1324,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1775,63 +1934,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1853,65 +2012,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1919,49 +2079,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1970,24 +2140,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/th.po b/po/th.po +index 1eac660..077c9ba 100644 +--- a/po/th.po ++++ b/po/th.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/th/)\n" + "Language: th\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,102 +28,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "ไม่สามารถเป็นเจ้าของ '%s'" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "ไม่สามารถเปิดไดเรกทอรีสำหรับการเขียน '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "ไม่สามารถปิดการแจ้งเตือน: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "รายงาน" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "ไม่สามารถแสดงการแจ้งเตือน: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "ไม่สามารถอ่านจาก gio channel: '%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "ไม่สามารถตั้งการเข้ารหัสบน gio channel: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "ไม่สามารถเปิด nonblocking mode ให้ gio channel: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -133,6 +133,17 @@ msgstr "" + "\n" + "Applet ซึ่งเตือนผู้ใช้เมื่อพบปัญหาใหม่ถูกตรวจพบโดย ABRT\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "ถามก่อนขโมยข้อมูลในไดเรกทอรี" +@@ -154,12 +165,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"แฟ้ม coredump เป็นสิ่งที่จำเป็นสำหรับการสร้าง stack trace " +-"ซึ่งเป็นเวลาและการดำเนินการการใช้พื้นที่ ABRT จะใหบริการโดยการสร้าง stack " +-"trace จาก coredump แต่คุณต้องอัปโหลด coredump บนบริการนี้ก่อน " +-"ด้วยทางเลือกนี้ การปิดใช้งาน ABRT จะอัปโหลด coredump โดยไม่ถามก่อน" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -204,10 +213,6 @@ msgstr "" + "มีผลก็ต่อเมื่อการรายงานสั้นถูกเปิดใช้งาน" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "ถามก่อนอัปโหลด coredump" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -216,15 +221,15 @@ msgstr "" + "ที่เปิดใช้งานแล้วจะสร้างตั๋วปัญหาด้วยการเข้าถึงที่จำกัดเสมด " + "หากพบข้อมูลสำคัญที่เป็นไปได้" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "ขอตั๋วส่วนตัวสำหรับข้อมูลสำคัญ" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "เตือนปัญหาที่ยังไม่สมบูรณ์" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -233,6 +238,22 @@ msgstr "" + "ปัญหาที่ไม่สมบูรณ์จะถูกพบขณะปิดเครื่องหรือออกจากระบบ " + "ในการจัดทำรายงานปัญหาที่มีค่า ABRT จะไม่อนุญาตให้คุณส่งรายงานปัญหาเหล่านี้" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "_ปิด" +@@ -258,14 +279,14 @@ msgstr "เกี่ยวกับ" + msgid "Quit" + msgstr "ออก" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -277,11 +298,11 @@ msgstr "" + msgid "Problem directory" + msgstr "ไดเรกทอรีปัญหา" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "แฟ้มค่ากำหนด" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -295,24 +316,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "ใช้ NUM เป็น client uid" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "บันทึกไปที่ปูมระบบ" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "เพิ่มชื่อโปรแกรมที่ต้องการบันทึก" + +@@ -320,61 +342,51 @@ msgstr "เพิ่มชื่อโปรแกรมที่ต้องก + msgid "Unknown error" + msgstr "ข้อผิดพลาดที่ไม่รู้จัก" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "element '%s' แก้ไม่ได้" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ไม่มีตัวตน" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "ไม่สามารถเข้าถึงปัญหาเพื่อแก้ไข" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "element '%s' แก้ไม่ได้" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "การ Chowning directory ล้มเหลว กรุณาตรวจสอบปูมระบบสำหรับข้อมูลเพิ่มเติม" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "ไม่สามารถรับขนาด '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "ไม่มีพื้นที่ว่างเหลือสำหรับปัญหา" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ไม่สามารถลบ element '%s' จากไดเรกทอรีปัญหา '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -383,12 +395,12 @@ msgid "" + msgstr "" + "ชื่อ '%s' หายไปแล้ว กรุณาตรวจสอบ หากบริการอื่นที่เป็นเจ้าของชื่อไม่ทำงาน\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "ออกหลังจากไม่ใช้งาน NUM วินาที" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "โปรแกรมนี้ต้องเรียกใช้ในฐานะผู้ดูแลระบบ" + +@@ -414,18 +426,22 @@ msgstr "อย่าทำงานแบบภูติ" + msgid "Log to syslog even with -d" + msgstr "บันทึกไปที่ปูมระบบแม้แต่ -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "เรียกใช้ EVENT บน DIR" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "สื่อสารกับผู้ใช้โดยตรง" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -463,73 +479,74 @@ msgstr "จำนวนคนงานที่ทำงานพร้อมก + msgid "Maximal cache size in MiB. Default is " + msgstr "จำนวนสูงสุดของจำนวนเมกะไบต์ของแคช ค่าเริ่มต้นคือ" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "จำนวนอาร์กิวเมนต์ไม่ถูกต้อง" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ไม่รู้ค่าของตัวเลือก: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -541,68 +558,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -626,18 +643,26 @@ msgstr "ไม่สามารถทำการ chown '%s': '%s'" + msgid "Deleting problem directory failed: %s" + msgstr "การลบไดเรกทอรีปัญหาล้มเหลว: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "ไม่สามารถรับรายการปัญหาจาก abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -684,7 +709,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "การวิเคราะห์ Backtrace ล้มเหลวสำหรับ %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "ไม่พบ Crash thread" + +@@ -786,13 +811,45 @@ msgstr "ไม่สามารถแยกข้อความ oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "แยกข้อความ Oops สำเร็จ" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "ปูมของเคอร์เนลบ่งชี้ว่าพบปัญหาฮาร์ดแวร์\n" + "นี่อาจจะไม่ใช่ปัญหาซอฟต์แวร์\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -908,7 +965,36 @@ msgstr "แฟ้ม debuginfo หายไป: {0}" + msgid "All debuginfo files are available" + msgstr "แฟ้ม debuginfo ทั้งหมดมีให้ใช้งาน" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -917,7 +1003,7 @@ msgstr "" + "ตกลงจะอัปโหลด core dump หรือไม่? (อาจมีข้อมูลสำคัญ) หากคุณตอบ 'ไม่' stack " + "trace จะถูกสร้างอยู่ในเครื่อง (อาจจะต้องดาวน์โหลดข้อมูลขนาดใหญ่หลวง)" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1144,7 +1230,8 @@ msgstr "สร้างไดเรกทอรีปัญหาใหม่ใ + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "เหมือนกับ -d DumpLocation DumpLocation ถูกระบุใน abrt.conf" + +@@ -1154,16 +1241,18 @@ msgstr "บันทึกข้อมูลที่แยกแล้วใน + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "ทำให้อ่านโลกของไดเรกทอรีปัญหาได้" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit" + +@@ -1172,9 +1261,13 @@ msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "ไม่สามารถปรับปรุงปัญหาได้: พบ oops มากกว่าหนึ่ง" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1193,6 +1286,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1216,11 +1310,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1234,16 +1330,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1251,18 +1350,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1281,14 +1383,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1297,12 +1402,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1312,58 +1463,62 @@ msgstr "" + "\n" + "แยก Xorg crash จาก FILE (หรือการป้อนมาตรฐาน)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Print พบ crash data บนการป้อนมาตรฐาน" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "สร้างไดเรกทอรีปัญหาใน DIR สำหรับทุก crash ที่พบ" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1860,7 +2015,7 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "หลับเป็นเวลา %d วินาที" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -1868,7 +2023,7 @@ msgstr "" + "เกิดปัญหากับเคอร์เนลเพราะ BIOS เสียหาย น่าเสียดายจัง " + "ปัญหาบางประการไม่สามารถซ่อมได้โดยผู้เชี่ยวชาญด้านเคอร์เนล" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -1876,7 +2031,7 @@ msgstr "" + "เกิดปัญหากับเคอร์เนล แต่ฮาร์ดแวร์ของคุณไม่ถูกรองรับ ดังนั้น " + "ผู้เชี่ยวชาญด้านเคอร์เนลจะแก้ปัญหานี้ไม่ได้" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -1885,44 +2040,44 @@ msgstr "" + "เกิดปัญหากับเคอร์เนล แต่เคอร์เนลของคุณเสีย (flags:%s) ดังนั้น " + "ผู้เชี่ยวชาญด้านเคอร์เนลจะวิเคราะห์การรายงานส่วนที่เสียหายไม่ได้" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "โมดูลที่เสีย: %s" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1944,65 +2099,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2010,49 +2166,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2061,24 +2227,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/tr.po b/po/tr.po +index 4c9676e..5557193 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -24,7 +24,7 @@ msgstr "" + "language/tr/)\n" + "Language: tr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -34,41 +34,41 @@ msgstr "Sorun Raporlama" + msgid "View and report application crashes" + msgstr "Uygulama çökmelerini görüntüle ve raporla" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' sahipliği alınamıyor" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s''i yazmak için dizin açılamıyor" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Bildirim kapatılamadı: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Tüh!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Rapor" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Yeniden Başlat" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun otomatik olarak raporlandı." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -77,8 +77,8 @@ msgstr "" + "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun İnternet bağlantısı olduğunda " + "raporlanacak." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -87,7 +87,7 @@ msgstr "" + "Üzgünüz, %s çökmüş gibi gözüküyor. Eğer bu durumu raporlamak istiyorsanız " + "lütfen geliştirici ile iletişime geçin." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -96,7 +96,7 @@ msgstr "" + "Üzgünüz, %s çökmüş gibi gözüküyor. Sorunun çözümüne yardımcı olmak " + "istiyorsanız lütfen bir rapor gönderin." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -104,7 +104,7 @@ msgstr "" + "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun otomatik " + "olarak raporlandı." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -112,7 +112,7 @@ msgstr "" + "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun, " + "İnternet bağlantısı olduğunda raporlanacak." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -120,34 +120,45 @@ msgstr "" + "Üzgünüz, bir sorun olmuş gibi gözüküyor. Eğer sorunun çözümüne yardımcı " + "olmak isterseniz lütfen bir rapor gönderin." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Bildirim gösterilemiyor: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -169,7 +180,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -202,30 +215,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -251,14 +276,14 @@ msgstr "Hakkında" + msgid "Quit" + msgstr "Çıkış" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -270,11 +295,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Dİzin problemi" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Yapılandırma dosyası" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -288,24 +313,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [seçenekler]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Sistem günlüğüne kaydet" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Program adlarını günlüğe ekle" + +@@ -313,60 +339,50 @@ msgstr "Program adlarını günlüğe ekle" + msgid "Unknown error" + msgstr "Bilinmeyen hata" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -374,12 +390,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -400,18 +416,22 @@ msgstr "Daemonize etme" + msgid "Log to syslog even with -d" + msgstr "Syslogları -d parametresi ile kullanın" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -441,73 +461,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -519,68 +540,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -604,18 +625,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -656,7 +685,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "%s için geri izleme ayrıştırması başarısız oldu" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -745,12 +774,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -859,14 +920,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1081,7 +1171,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1091,16 +1182,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1109,8 +1202,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1130,6 +1227,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1153,11 +1251,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1171,16 +1271,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1188,18 +1291,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1218,14 +1324,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1234,70 +1343,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1475,7 +1634,7 @@ msgstr "Geri izleme işi başladı." + #, c-format + msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Görev Id: %s\n" ++msgstr "Görev Id: %d\n" + "\n" + "Görev Şifresi: %s\n" + +@@ -1808,63 +1967,63 @@ msgstr "NSS in kapatılması başarısız" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1886,65 +2045,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Detaylı raporu göster" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1952,49 +2112,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2003,24 +2173,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/uk.po b/po/uk.po +index c025538..b00aa7b 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -24,7 +24,7 @@ msgstr "" + "Language: uk\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -34,34 +34,34 @@ msgstr "Звітування щодо проблем" + msgid "View and report application crashes" + msgstr "Перегляд і звітування щодо аварійних завершень програм" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не вдалося визначити права доступу до «%s»" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Не вдалося відкрити каталог для запису, «%s»" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не вдалося закрити сповіщення: %s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "Оце тобі!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Повідомити" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "Перезапустити" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " +@@ -70,7 +70,7 @@ msgstr "" + "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Звіт " + "щодо проблеми створено у автоматичному режимі." + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " +@@ -80,8 +80,8 @@ msgstr "" + "щодо проблеми буде створено у автоматичному режимі, щойно стане доступним " + "інтернет-з’єднання." + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " +@@ -90,7 +90,7 @@ msgstr "" + "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Будь " + "ласка, зв’яжіться із розробником, якщо ви хочете створити звіт щодо вади." + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " +@@ -100,7 +100,7 @@ msgstr "" + "хочете допомогти у розв’язанні цієї проблеми, будь ласка, надішліть звіт " + "щодо вади." + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." +@@ -108,7 +108,7 @@ msgstr "" + "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми створено " + "у автоматичному режимі." + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." +@@ -116,7 +116,7 @@ msgstr "" + "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми буде " + "створено, щойно буде отримано доступ до інтернет-з’єднання." + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." +@@ -124,28 +124,28 @@ msgstr "" + "Вибачте, здається, у компоненті сталася помилка. Якщо ви хочете допомогти у " + "розв’язанні цієї проблеми, будь ласка, надішліть звіт щодо вади." + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не вдалося показати сповіщення: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не вдалося виконати читання з каналу gio: «%s»" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не вдалося встановити кодування на каналі gio: %s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не вдалося увімкнути режим без блокування для каналу gio: %s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -155,6 +155,17 @@ msgstr "" + "\n" + "Аплет для сповіщення користувача про виявлені ABRT проблеми\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "Питати перед перехопленням каталогу" +@@ -176,13 +187,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"Файл дампу ядра (coredump) потрібен для створення даних трасування стека, " +-"тривалої і ресурсомісткої дії. У ABRT передбачено службу створення " +-"трасування стека на основі дампу ядра, але для роботи з нею слід вивантажити " +-"дамп ядра на сервер служби. Якщо не буде позначено цей пункт, ABRT " +-"вивантажуватиме дамп ядра без додаткових підтверджень." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,10 +236,6 @@ msgstr "" + "звітованих проблем. Працюватиме, лише якщо увімкнено скорочене звітування." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "Питати перед вивантаженням дампу ядра" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." +@@ -240,15 +244,15 @@ msgstr "" + "вади з обмеженим доступом, якщо існуватиме можливість потрапляння до звіту " + "конфіденційних даних." + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "Обмежувати доступ до звітів з конфіденційними даними" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "Сповіщати про неповні дані щодо проблеми" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " +@@ -258,6 +262,22 @@ msgstr "" + "виходу користувача з системи. З метою забезпечення змістовності звітів щодо " + "вад ABRT не дозволить вам надіслати повідомлення щодо таких проблем." + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "З_акрити" +@@ -283,7 +303,7 @@ msgstr "Відомості" + msgid "Quit" + msgstr "Вийти" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -293,7 +313,7 @@ msgstr "" + "\n" + "Отримати дані з бази даних пакунків і зберегти назву пакунка і компонента" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -305,11 +325,11 @@ msgstr "" + msgid "Problem directory" + msgstr "Проблемний каталог" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "Файл налаштувань" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "Використовувати цей каталог як кореневий для RPM" + +@@ -325,24 +345,25 @@ msgstr "& [-v] -d КАТАЛОГ\n" + msgid "Root directory for running container commands" + msgstr "Кореневий каталог для запуску команд контейнера" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [параметри]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "Використовувати вказане число як uid клієнта" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "Записувати до журналу syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "Додати назви програм до журналу" + +@@ -350,62 +371,52 @@ msgstr "Додати назви програм до журналу" + msgid "Unknown error" + msgstr "Невідома помилка" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "«%s» не є коректним каталогом проблеми" ++msgid "'%s' is not a valid element name" ++msgstr "«%s» не є коректною назвою елемента" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "Не вдалося змінити елемент «%s»" ++msgid "'%s' is not a valid problem directory" ++msgstr "«%s» не є коректним каталогом проблеми" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Не уповноважено" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "Не вдалося отримати доступ до проблеми для внесення змін" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "Не вдалося змінити елемент «%s»" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Спроба змінити власника каталогу зазнала невдачі. Докладніші дані можна " + "знайти у журналах системи." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "Не вдалося отримати доступ до проблеми для читання" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "«%s» не є коректною назвою елемента" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Не вдалося визначити розмір «%s»" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "Не залишилося вільного місця для записів щодо проблем" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Не вдалося вилучити елемент «%s» з каталогу проблеми «%s»" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -415,12 +426,12 @@ msgstr "" + "Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу " + "з цією назвою.\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "Завершувати роботу після вказаної кількості секунд бездіяльності" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Цю програму слід запускати від імені адміністратора (root)." + +@@ -447,18 +458,22 @@ msgstr "Не запускати фонової служби" + msgid "Log to syslog even with -d" + msgstr "Записувати до журналу syslog навіть з параметром -d" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event ПОДІЯ КАТАЛОГ..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "Виконати ДІЮ над даними каталогу КАТАЛОГ" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "Обмінюватися даними безпосередньо з користувачем" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -496,88 +511,89 @@ msgstr "Кількість паралельних потоків обробки. + msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальний розмір кешу у МіБ. Типовим є" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "Вимикає розпізнавання" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Ім’я користувача у системі Red Hat Support" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Пароль у системі Red Hat Support. Якщо не вказано, програма надішле запит " + "щодо його введення." + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Шляхи до сертифікатів SSL uReport або тип сертифікатів" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "Вам також слід вказати --username, якщо використовується --password" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "Ви можете скористатися --username або --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "Ви можете скористатися --username або --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "Ви можете скористатися --anonymous або --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "Некоректна кількість параметрів" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Невідоме значення параметра: «%s»\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "Пароль:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "Неможливо продовжувати без пароля\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "Автозвітування з розпізнаванням HTTP" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "Автозвітування з розпізнаванням клієнта SSL" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "анонімне автозвітування" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -597,68 +613,68 @@ msgstr "" + " КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n" + " НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Не є каталогом: «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Пропускаємо: «{0}» (починається з похилої риски)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Пропускаємо: «{0}» (починається з крапки)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Пропускаємо: «{0}» (містить ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Пропускаємо: «{0}» (містить пробіл)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Пропускаємо: «{0}» (містить символ табуляції)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Не вдалося змінити каталог на «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Невідомий тип файла: «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Не вдалося створити робочий каталог у «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Не вдалося пересунути «{0}» до «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Не вдалося скопіювати «{0}» до «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Помилка під час перевірки «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Розпаковуємо «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Не вдалося створити каталог «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Не вдалося розпакувати «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "«{0}» успішно оброблено" + +@@ -682,21 +698,29 @@ msgstr "Не вдалося змінити власника «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Спроба вилучення каталогу проблеми зазнала невдачі: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не вдалося отримати список проблем з abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "Не вдалося перевірити, чи існує елемент, за допомогою abrt-dbus: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -743,7 +767,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Не вдалося обробити дані зворотного трасування для %s" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "Не знайдено аварійного потоку обробки даних" + +@@ -852,7 +876,7 @@ msgstr "Не вдалося видобути повідомлення щодо + msgid "Oops text extracted successfully" + msgstr "Текст повідомлення щодо помилки успішно видобуто" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -861,6 +885,38 @@ msgstr "" + "обладнанням.\n" + "Ймовірно, цю проблему не пов’язано з програмним забезпеченням.\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -1006,7 +1062,36 @@ msgstr "Не вистачає файла діагностичних даних: + msgid "All debuginfo files are available" + msgstr "Доступні всі файли діагностичних даних" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " +@@ -1017,7 +1102,7 @@ msgstr "" + "призвести до значного навантаження не мережу і використання значного об’єму " + "пам’яті на диску.)" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1257,7 +1342,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Зберегти як -d DumpLocation, DumpLocation вказано у abrt.conf" + +@@ -1267,16 +1353,18 @@ msgstr "Зберегти отримані дані у каталозі ПРОБ + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "Зробити каталог даних проблеми доступним для всіх користувачів" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Встановлення інтервалу створення каталогу проблеми у 1 секунду" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "Вивести рядки пошуку до стандартного виведення і завершити роботу" + +@@ -1285,11 +1373,13 @@ msgstr "Вивести рядки пошуку до стандартного в + msgid "Failed to compile regex" + msgstr "Не вдалося скомпілювати формальний вираз" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" +-"Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про " +-"помилки." + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1310,6 +1400,7 @@ msgstr "Не вдалося зберегти дані виявленої про + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "Не вдалося ініціалізувати спостереження systemd-journal" + +@@ -1345,11 +1436,13 @@ msgstr "Створювати новий каталог проблеми для + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "Почати читання systemd-journal з позиції КУРСОР" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "Почати читання systemd-journal з кінця" + +@@ -1365,17 +1458,20 @@ msgstr "Те саме, що і -t INT, INT визначається у plugins/C + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + "Стежити за systemd-journal з останньої позиції спостереження (якщо така є)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "Слід вказати або -c КУРСОР або -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "Не вдалося відкрити systemd-journal" + +@@ -1384,18 +1480,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + "Не вдалося відфільтрувати у systemd-journal лише дані systemd-coredump" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "Не вдалося пересунути курсор до кінця журналу" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "Не вдалося встановити позицію курсора systemd-journal «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "Не вдалося прочитати дані журналу." + +@@ -1426,28 +1525,77 @@ msgstr "" + "Остання позиція спостереження зберігається у " + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "Прочитати файли журналу з усіх машин" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" +-msgstr "" ++msgstr "Прочитати усі файли журналу з каталогу у PATH" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" +-msgstr "" ++msgstr "Не вдалося ініціалізувати systemd-journal у каталозі «%s»" + + #: ../src/plugins/abrt-dump-journal-oops.c:288 + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "Не вдалося відфільтрувати у systemd-journal лише дані ядра" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "Не вдалося розпочати спостереження з позиції курсора «%s»" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1458,45 +1606,49 @@ msgstr "" + "Видобути дані аварії Xorg з файла ФАЙЛ (або стандартного джерела вхідних " + "даних)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "Вивести знайдені дані щодо аварії до стандартного виводу" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Створювати каталог проблеми для кожного знайденого повідомлення про аварійне " + "завершення роботи" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "Не вдалося зберегти позицію спостереження журналу" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "Не вдалося зберегти позицію спостереження журналу: open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "Не відновлюємо позицію спостереження журналу: файла «%s» не існує" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "Не вдалося відновити позицію спостереження з файла «%s»" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + "Не вдалося відновити позицію спостереження журналу: шлях «%s» не є адресою " + "звичайного файла" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" +@@ -1504,12 +1656,12 @@ msgstr "" + "Не вдалося відновити позицію спостереження журналу: файл «%s» перевищує за " + "розміром обмеження у %d байтів" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "Не вдалося відновити позицію спостереження журналу: open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" +@@ -1517,7 +1669,7 @@ msgstr "" + "увесь файл «%s»" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "Не вдалося пересунути журнал до розташування курсора з файла «%s»" +@@ -2069,7 +2221,7 @@ msgstr "Не вдалося завершити роботу NSS." + msgid "Sleeping for %d seconds" + msgstr "Очікуємо %d секунд" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +@@ -2077,7 +2229,7 @@ msgstr "" + "Проблеми з ядром виникли через помилки у BIOS. На жаль, супровідники ядра " + "системи не зможуть усунути такі проблеми." + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +@@ -2085,7 +2237,7 @@ msgstr "" + "Виникли проблеми з ядром, підтримки обладнання у системі не передбачено, " + "тому супровідники ядра не зможуть усунути цю проблему." + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " +@@ -2095,24 +2247,24 @@ msgstr "" + "(прапорці:%s). Супровідники коду ядра не зможуть проаналізувати звіти щодо " + "ядра з небажаними модулями." + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr " Модулі сумнівної якості: %s." + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Список ідентифікаторів вад" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "Вкажіть адресу сервера bodhi" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "Вкажіть випуск" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -2122,20 +2274,20 @@ msgstr "" + "\n" + "Виконати пошук оновлень на сервері bodhi" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "Пошук оновлень" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "Для цього пакунка оновлень не знайдено" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "Локальна версія пакунка є новішою за доступні оновлення" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -2164,68 +2316,69 @@ msgstr "Вивести знайдені повідомлення про поми + msgid "Delete files with found oopses" + msgstr "Вилучити файли зі знайденими даними щодо помилок ядра" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» визначає декілька каталогів проблем" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Користування: abrt-cli [--version] КОМАНДА [КАТАЛОГ]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Показати список проблем [у вказаних каталогах]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Вилучити каталог даних проблеми КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Проаналізувати і створити звіт за даними з вказаного каталогу" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Показати дані щодо каталогу КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Вивести кількість нещодавніх аварійних завершень роботи" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Обробка декількох проблем" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" +-msgstr "" ++msgstr "& list [параметри]" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "Показати список лише проблем, щодо яких не складено звітів" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Показати докладний звіт" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Вивести список лише тих проблем, які сталися після вказаної часової позначки" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Вивести список лише тих проблем, які сталися до вказаної часової позначки" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2237,53 +2390,63 @@ msgstr "" + "«abrt-auto-reporting enabled», відданої від імені користувача з правами " + "доступу root\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [параметри] КАТАЛОГ..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + "Текст з розмірами, що перевищують вказані, буде обрізано під час показу" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Каталогу проблеми «%s» не існує" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" +-msgstr "" ++msgstr "& status" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "Вивести лише кількість проблеми без жодних повідомлень" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Вивести дані щодо проблем, які сталися після вказаної часової позначки" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT виявлено записи проблем (%u). Докладніші дані може бути отримано за " + "допомогою такої команди: abrt-cli list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "& report [параметри] КАТАЛОГ..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" +-msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Вилучаємо «%s»" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "& report [параметри] КАТАЛОГ..." ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Дії: вилучити(rm), інформація(i), пропустити(s):" +@@ -2292,25 +2455,180 @@ msgstr "Дії: вилучити(rm), інформація(i), пропусти + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Дії: вилучити(rm), звітувати(e), інформація(i), пропустити(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Звітуємо щодо «%s»" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Для переходу до наступної проблеми натисніть ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Без аргументу --since, циклічний перехід між усіма виявленими проблемами." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Вибирає лише проблеми, виявлені після вказаної часової позначки" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ur.po b/po/ur.po +index 5ff9b8d..9eae788 100644 +--- a/po/ur.po ++++ b/po/ur.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ur/)\n" + "Language: ur\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,60 +321,50 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -356,12 +372,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -382,18 +398,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -423,73 +443,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -501,68 +522,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -586,18 +607,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -638,7 +667,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -727,12 +756,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -841,14 +902,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1063,7 +1153,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1073,16 +1164,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1091,8 +1184,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1112,6 +1209,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1135,11 +1233,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1153,16 +1253,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1170,18 +1273,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1200,14 +1306,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1216,70 +1325,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1776,63 +1935,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1854,65 +2013,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1920,49 +2080,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,24 +2141,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/vi.po b/po/vi.po +index 1eba27c..a4a6fac 100644 +--- a/po/vi.po ++++ b/po/vi.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/vi/)\n" + "Language: vi\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -28,108 +28,119 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "Báo cáo" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "" +@@ -151,7 +162,9 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -184,30 +197,42 @@ msgid "" + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "" +@@ -233,14 +258,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -252,11 +277,11 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -270,24 +295,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "" + +@@ -295,62 +321,52 @@ msgstr "" + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" ++msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" ++msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Đổi quyền chủ nhân thư mục không thành. Kiểm tra bản ghi hệ thống để biết " + "thêm chi tiết." + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Không thể có được kích thước của '%s'" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -358,12 +374,12 @@ msgid "" + "is not running.\n" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -384,18 +400,22 @@ msgstr "" + msgid "Log to syslog even with -d" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -425,73 +445,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -503,68 +524,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -588,18 +609,26 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -640,7 +669,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "" + +@@ -729,12 +758,44 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -843,14 +904,43 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1065,7 +1155,8 @@ msgstr "" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +@@ -1075,16 +1166,18 @@ msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +@@ -1093,8 +1186,12 @@ msgstr "" + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 +@@ -1114,6 +1211,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1137,11 +1235,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1155,16 +1255,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1172,18 +1275,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1202,14 +1308,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1218,70 +1327,120 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1778,63 +1937,63 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1856,65 +2015,66 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "Hiển thị báo cáo chi tiết" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1922,49 +2082,59 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:79 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:89 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1973,24 +2143,179 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zh_CN.po b/po/zh_CN.po +index 9a528f6..0fad725 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -27,7 +27,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -37,7 +37,7 @@ msgstr "" + "abrt/language/zh_CN/)\n" + "Language: zh-CN\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -47,102 +47,102 @@ msgstr "" + msgid "View and report application crashes" + msgstr "" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "无法获取 '%s' 的所有权" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "无法打开目录以写入 '%s'" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "无法关闭通知:%s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "报告" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "无法显示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "无法读取 gio 频道:'%s'" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "无法在 gio 频道中设定编码:%s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "无法为 gio 频道设定非阻断模式:%s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -151,6 +151,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "ABRT 探测到问题后,小程序会通知用户\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "占用目录前询问" +@@ -172,10 +183,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"核心转储对于执行费时费空间的栈回溯是一个必需的操作。ABRT 提供从核心转储生成栈回溯的远程服务但是您必须上传核心转储到该服务器。当禁用此选项后 " +-"ABRT 将自动上传核心转储而不再询问。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -210,30 +221,42 @@ msgid "" + msgstr "当启用该选项后 ABRT 不再提示汇报问题。仅在缩略报告启用的情况下生效。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "在上传核心转储前询问" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr "当启用这个选项后一旦检测到敏感数据 ABRT 将创建访问受限的错误报告。" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "为敏感信息请求隐私条目保护" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "通知不完整的问题" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "不完整的问题通常在电脑关机或用户登出时产生。为了提供有效的错误报告,ABRT 将不允许您提交此类问题。" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "关闭(_C)" +@@ -259,14 +282,14 @@ msgstr "关于" + msgid "Quit" + msgstr "退出" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -278,11 +301,11 @@ msgstr "" + msgid "Problem directory" + msgstr "问题目录" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "配置文件" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "" + +@@ -296,24 +319,25 @@ msgstr "" + msgid "Root directory for running container commands" + msgstr "" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作为客户端 UID" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "记录至 syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "在日志中添加程序名" + +@@ -321,60 +345,50 @@ msgstr "在日志中添加程序名" + msgid "Unknown error" + msgstr "未知错误" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "'%s' 不是有效的问题目录" ++msgid "'%s' is not a valid element name" ++msgstr "'%s' 不是一个有效的元素名" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "无法修改 '%s' 元素" ++msgid "'%s' is not a valid problem directory" ++msgstr "'%s' 不是有效的问题目录" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授权" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "无法访问该问题进行修改" +- +-#: ../src/dbus/abrt-dbus.c:470 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "变更目录属主失败。请检查系统日志以了解更多。" +- +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:630 ++#: ../src/dbus/abrt-dbus.c:317 + #, c-format +-msgid "'%s' is not a valid element name" +-msgstr "'%s' 不是一个有效的元素名" ++msgid "'%s' element can't be modified" ++msgstr "无法修改 '%s' 元素" + +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:536 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "变更目录属主失败。请检查系统日志以了解更多。" ++ ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "无法获取 '%s' 的大小" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "没有留出问题空间" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "无法从问题目录 '%s' 中删除元素 '%s'" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -382,12 +396,12 @@ msgid "" + "is not running.\n" + msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "闲置 NUM 秒后退出" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程序必须以 root 权限运行。" + +@@ -410,18 +424,22 @@ msgstr "不要在后台运行" + msgid "Log to syslog even with -d" + msgstr "即使加入 -d 选项也记录至 syslog" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR......" ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "在 DIR 中运行 EVENT " + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "直接联系用户" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -459,87 +477,88 @@ msgstr "并行工作者数量。 默认为" + msgid "Maximal cache size in MiB. Default is " + msgstr "以 MiB 计最大缓存尺寸。默认为" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "关闭认证" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat 支持用户名" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat 支持密码,如果不输入密码则会有提示。" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 证书路径或者证书类型" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "您还需要为 --password 指定 --username" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或者 --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或者 --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或者 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "无效参数数值" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "未知选项值:'%s'\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "密码:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "需要密码才可继续\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 认证的自动报告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 客户端认证的自动报告" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "匿名自动报告" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -559,83 +578,83 @@ msgstr "" + " FILENAME - 已上传归档文件吗\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "不是一个目录:'{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "跳过:'{0}'(以斜杠开始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "跳过:'{0}'(以点开始)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "跳过:'{0}'(包含..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "跳过:'{0}'(包含空格)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "跳过:'{0}'(包含 tab)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "无法该为目录 '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "未知文件类型:'{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "无法在 '{0}' 在这创建工作目录" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "无法从 '{0}' 迁移到 '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "无法从 '{0}' 迁复制 '{1}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' 中的验证错误" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "正在解压缩 '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "无法创建 '{0}' 目录" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "无法解压缩 '{0}'" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "成功处理 '{0}'" + +@@ -659,18 +678,26 @@ msgstr "无法变更 '%s' 的属主:%s" + msgid "Deleting problem directory failed: %s" + msgstr "删除问题目录失败:%s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "无法从 abrt-dbus 中获取问题数据:%s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题列表:%s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "无法从 abrt-dbus 中获取问题数据:%s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" + msgstr "" +@@ -715,7 +742,7 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr " %s 回溯解析失败" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "崩溃线程" + +@@ -817,13 +844,45 @@ msgstr "无法提取异常信息: '{0}'" + msgid "Oops text extracted successfully" + msgstr "成功提取异常文字信息" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "内核日志表明已探测到硬件错误。\n" + "这很可能不是普通的软件问题。\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -936,14 +995,43 @@ msgstr "缺少 debuginfo 文件:{0}" + msgid "All debuginfo files are available" + msgstr "所有调试信息文件均可用。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "可以上传核心转储了吗(可能包含敏感数据)?如果您的回答为“否”,则会在本地生成一个栈跟踪(可能会下载大量数据)。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1173,7 +1261,8 @@ msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "与 -d DumpLocation 相同,是在 abrt.conf 中指定 DumpLocation。" + +@@ -1183,16 +1272,18 @@ msgstr "保存提取信息到PROBLEM" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "使问题目录可读" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "每 1 秒创建一个控流问题目录" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "输出搜索字符串至标准输出并退出" + +@@ -1202,9 +1293,13 @@ msgstr "输出搜索字符串至标准输出并退出" + msgid "Failed to compile regex" + msgstr "编译正则表达式失败" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "无法更新问题:发现超过一个异常" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1223,6 +1318,7 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "" + +@@ -1246,11 +1342,13 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "" + +@@ -1264,16 +1362,19 @@ msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "" + +@@ -1281,18 +1382,21 @@ msgstr "" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "" + +@@ -1311,14 +1415,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1327,12 +1434,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1341,58 +1494,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "从文件 FILE (或标准输入)提取 Xorg 崩溃信息" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "在标准输出上输出找到的崩溃数据" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "" +@@ -1902,43 +2059,43 @@ msgstr "关闭 NSS 失败。" + msgid "Sleeping for %d seconds" + msgstr "休眠 %d 秒" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "由于 BIOS 出错出现内核问题。遗憾的是内核维护者尚未解决这个问题。" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "出现内核问题,但您的硬件不支持,因此内核维护者无法修复这个问题。" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "发生了内核问题,但您的内核已被污染(标志:%s)。内核维护器无法诊断被污染的报告。" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "受污染的模块:%s。" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "Bug 错误 ID 列表" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "指定一个 Bodhi 服务器地址" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "指定一个发行版本号" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1948,20 +2105,20 @@ msgstr "" + "\n" + "在 Bodhi 服务器上搜索更新" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "正在搜索更新" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "未找到该软件包的可用更新" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "该软件包的本地版本比可用更新的版本要高" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1985,66 +2142,67 @@ msgstr "打印已找到的内核错误" + msgid "Delete files with found oopses" + msgstr "删除已找到的内核错误文件" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' 标识出多于一个问题目录" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "列出所有问题,可指定[目录]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "删除问题目录 DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "分析并报告 DIR 中的问题数据" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "输出有关 DIR 的信息" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "显示最近的崩溃计数" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "处理多个问题" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "详情请查看 'abrt-cli COMMAND --help'" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "只列出未报告的问题" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "显示详细报告" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "仅列出比指定时间更晚的问题" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "仅列出比指定时间戳更早的问题" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2054,53 +2212,63 @@ msgstr "" + "已禁用自动报告功能。请考虑启用它,方法是\n" + "作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "大于此处的文字在显示时会被削减" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "没有问题目录 '%s'" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "仅显示问题计数。" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "仅显示比指定时间更晚的问题。" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "正在删除 '%s'" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "报告后删除 PROBLEM_DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "正在删除 '%s'" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "动作:remove(rm), info(i), skip(s):" +@@ -2111,27 +2279,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "动作:remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "正在报告 '%s'" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "下一个问题请按 ENTER:" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "没有 --since 参数,则重复所有探测到的问题。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "只选择时间戳之后探测到的问题" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zh_TW.po b/po/zh_TW.po +index f3c4ca5..8c51262 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -8,21 +8,22 @@ + # Jiří Moskovčák , 2011 + # Terry Chuang , 2011-2013 + # Chester Cheng , 2015. #zanata ++# Ding-Yi Chen , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-04-08 13:09+0200\n" ++"POT-Creation-Date: 2016-02-11 12:54+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-03-21 07:48-0400\n" +-"Last-Translator: Cheng-Chia Tseng \n" ++"PO-Revision-Date: 2016-02-01 06:25-0500\n" ++"Last-Translator: Ding-Yi Chen \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_TW/)\n" + "Language: zh-TW\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.8.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Problem Reporting" +@@ -32,102 +33,102 @@ msgstr "問題回報" + msgid "View and report application crashes" + msgstr "檢視與回報應用程式崩潰" + +-#: ../src/applet/applet.c:157 ++#: ../src/applet/applet.c:260 ../src/cli/report.c:51 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "無法掌握「%s」的擁有權" + +-#: ../src/applet/applet.c:165 ++#: ../src/applet/applet.c:268 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "無法開啟目錄以寫入「%s」" + +-#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 ++#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 + #, c-format + msgid "Can't close notification: %s" + msgstr "無法關閉通知:%s" + +-#: ../src/applet/applet.c:496 ++#: ../src/applet/applet.c:598 + msgid "Oops!" + msgstr "噢喔!" + +-#: ../src/applet/applet.c:514 ++#: ../src/applet/applet.c:616 + msgid "Report" + msgstr "回報" + +-#: ../src/applet/applet.c:523 ++#: ../src/applet/applet.c:625 + msgid "Restart" + msgstr "重新啟動" + +-#: ../src/applet/applet.c:588 ++#: ../src/applet/applet.c:694 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. The problem has been automatically " + "reported." + msgstr "我們很抱歉,%s 似乎當掉了。此問題已經自動回報。" + +-#: ../src/applet/applet.c:593 ++#: ../src/applet/applet.c:699 + #, c-format + msgid "" + "We’re sorry, it looks like %s crashed. The problem will be reported when the " + "internet is available." + msgstr "我們很抱歉,%s 似乎當掉了。此問題會在網際網路可用時回報。" + +-#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 +-#: ../src/applet/applet.c:641 ++#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 ++#: ../src/applet/applet.c:747 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. Please contact the developer if you " + "want to report the issue." + msgstr "我們很抱歉,%s 似乎當掉了。如果您想要回報該議題,請聯絡開發者。" + +-#: ../src/applet/applet.c:607 ++#: ../src/applet/applet.c:713 + #, c-format + msgid "" + "We're sorry, it looks like %s crashed. If you'd like to help resolve the " + "issue, please send a report." + msgstr "我們很抱歉,%s 似乎當掉了。若您想要協助解決這個議題,請傳送回報。" + +-#: ../src/applet/applet.c:626 ++#: ../src/applet/applet.c:732 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "has been automatically reported." + msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題已經自動回報。" + +-#: ../src/applet/applet.c:630 ++#: ../src/applet/applet.c:736 + msgid "" + "We're sorry, it looks like a problem occurred in a component. The problem " + "will be reported when the internet is available." + msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題會在網際網路可用時回報。" + +-#: ../src/applet/applet.c:635 ++#: ../src/applet/applet.c:741 + msgid "" + "We're sorry, it looks like a problem occurred. If you'd like to help resolve " + "the issue, please send a report." + msgstr "我們很抱歉,似乎遭遇某個問題。若您想要協助解決這個議題,請傳送回報。" + +-#: ../src/applet/applet.c:680 ++#: ../src/applet/applet.c:786 + #, c-format + msgid "Can't show notification: %s" + msgstr "無法顯示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "無法從 gio 通道讀取:「%s」" + +-#: ../src/applet/applet.c:790 ++#: ../src/applet/applet.c:896 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "無法設定 gio 通道上的編碼:%s" + +-#: ../src/applet/applet.c:794 ++#: ../src/applet/applet.c:900 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "無法為 gio 通道啟動不阻擋模式:%s" + +-#: ../src/applet/applet.c:1090 ++#: ../src/applet/applet.c:1186 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -136,6 +137,17 @@ msgstr "& [-v] [DIR]...\n" + "\n" + "新問題被 ABRT 偵測到時通知使用者的面板程式\n" + ++#: ../src/configuration-gui/abrt-config-widget.c:483 ++msgid "" ++"The configuration option above has been moved to GSettings and the switch is " ++"linked to the value of the setting 'report-technical-problems' from the " ++"schema 'org.gnome.desktop.privacy'." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.c:501 ++msgid "The configuration option above can be configured in" ++msgstr "" ++ + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "在佔用目錄前詢問" +@@ -157,10 +169,10 @@ msgid "" + "The coredump file is necessary for generating stack trace which is time and " + "space consuming operation. ABRT provides a service which generates the stack " + "trace from the coredump but you have to upload the coredump to this service. " +-"With this option disabled ABRT will upload the coredump without asking." ++"With option 'Always' ABRT will always upload the coredump without asking. " ++"With option 'Never' the stack trace will be always generated locally. With " ++"option 'Ask' ABRT will always ask the user." + msgstr "" +-"需要有核心傾印檔案才能生成堆疊追蹤資訊,而這個動作既費時又費空間。ABRT " +-"提供以核心傾印生成堆疊追蹤資訊的服務,但您必須將核心傾印檔上傳到此服務中。停用此選項後,ABRT 不須詢問就會上傳核心傾印檔案。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -196,30 +208,42 @@ msgid "" + msgstr " 啟用此選項後,ABRT 永遠不會顯示問題回報通知。僅在啟用簡短回報時生效。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 +-msgid "Ask before uploading coredump" +-msgstr "在上傳核心傾印前詢問意願" +- +-#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are detected." + msgstr " 若啟用此選項,當 ABRT 偵測到敏感資訊時總會以限制存取方式建立臭蟲回報。" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "Request private ticket for sensitive information" + msgstr "內含敏感訊息故申請隱私請票" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Notify incomplete problems" + msgstr "通知不完整的問題" + +-#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "資料不完整的問題通常在電腦關機動作之時,或是使用者正在登出時被偵測到。為了提供有價值的問題回報,ABRT 不會允許您提交此類問題報告。" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "Always" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:15 ++msgid "Never" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:16 ++msgid "Ask" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:17 ++msgid "Upload coredump for backtrace generation" ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:79 + msgid "_Close" + msgstr "關閉(_C)" +@@ -245,7 +269,7 @@ msgstr "關於" + msgid "Quit" + msgstr "退出" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:393 + msgid "" + "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" +@@ -254,7 +278,7 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + "\n" + "查詢軟體包資料庫,並儲存軟體包與組件名稱" + +-#: ../src/daemon/abrt-action-save-package-data.c:403 ++#: ../src/daemon/abrt-action-save-package-data.c:406 + #: ../src/daemon/abrt-action-save-container-data.c:210 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:141 +@@ -266,11 +290,11 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" + msgid "Problem directory" + msgstr "問題目錄" + +-#: ../src/daemon/abrt-action-save-package-data.c:404 ++#: ../src/daemon/abrt-action-save-package-data.c:407 + msgid "Configuration file" + msgstr "組態檔" + +-#: ../src/daemon/abrt-action-save-package-data.c:405 ++#: ../src/daemon/abrt-action-save-package-data.c:408 + msgid "Use this directory as RPM root" + msgstr "使用此目錄作為 RPM 根基" + +@@ -286,24 +310,25 @@ msgstr "& [-v] -d DIR\n" + msgid "Root directory for running container commands" + msgstr "執行容器指令的根基目錄" + +-#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 ++#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 + msgid "& [options]" + msgstr "& [選項]" + +-#: ../src/daemon/abrt-server.c:796 ++#: ../src/daemon/abrt-server.c:807 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作為客戶端 UID" + +-#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 + #: ../src/plugins/abrt-dump-journal-core.c:477 + #: ../src/plugins/abrt-dump-journal-oops.c:219 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/plugins/abrt-dump-journal-xorg.c:188 ++#: ../src/plugins/abrt-dump-xorg.c:52 + msgid "Log to syslog" + msgstr "紀錄至 syslog" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 ++#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 + msgid "Add program names to log" + msgstr "加入程式名稱至紀錄檔" + +@@ -311,60 +336,50 @@ msgstr "加入程式名稱至紀錄檔" + msgid "Unknown error" + msgstr "未知錯誤" + +-#: ../src/dbus/abrt-dbus.c:197 ++#: ../src/dbus/abrt-dbus.c:167 + #, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "「%s」不是有效的問題目錄" ++msgid "'%s' is not a valid element name" ++msgstr "「%s」不是有效的元素名稱" + +-#: ../src/dbus/abrt-dbus.c:232 ++#: ../src/dbus/abrt-dbus.c:219 + #, c-format +-msgid "'%s' element can't be modified" +-msgstr "無法修改「%s」元素" ++msgid "'%s' is not a valid problem directory" ++msgstr "「%s」不是有效的問題目錄" + +-#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 +-#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 +-#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 ++#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 ++#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授權" + +-#: ../src/dbus/abrt-dbus.c:265 +-msgid "Can't access the problem for modification" +-msgstr "無法存取問題以修改" ++#: ../src/dbus/abrt-dbus.c:285 ++msgid "Can't open the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:317 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "無法修改「%s」元素" + +-#: ../src/dbus/abrt-dbus.c:470 ++#: ../src/dbus/abrt-dbus.c:536 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "目錄擁有者變更失敗。請檢查紀錄檔瞭解更多細節。" + +-#: ../src/dbus/abrt-dbus.c:581 +-msgid "Can't access the problem for reading" +-msgstr "無法存取問題以閱讀" +- +-#: ../src/dbus/abrt-dbus.c:630 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "「%s」不是有效的元素名稱" +- +-#: ../src/dbus/abrt-dbus.c:651 ++#: ../src/dbus/abrt-dbus.c:665 + #, c-format + msgid "Can't get size of '%s'" + msgstr "無法取得「%s」的大小" + +-#: ../src/dbus/abrt-dbus.c:666 ++#: ../src/dbus/abrt-dbus.c:680 + msgid "No problem space left" + msgstr "無剩餘問題空間" + +-#: ../src/dbus/abrt-dbus.c:698 ++#: ../src/dbus/abrt-dbus.c:715 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" + +-#: ../src/dbus/abrt-dbus.c:725 +-msgid "Can't access the problem" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 + #: ../src/daemon/abrtd.c:426 + #, c-format + msgid "" +@@ -372,12 +387,12 @@ msgid "" + "is not running.\n" + msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" + +-#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:459 + msgid "Exit after NUM seconds of inactivity" + msgstr "在停止使用 NUM 秒後離開" + +-#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程式必須以 root 身份執行。" + +@@ -400,18 +415,22 @@ msgstr "不要在幕後運行" + msgid "Log to syslog even with -d" + msgstr "即使加上 -d 參數也紀錄至 syslog" + +-#: ../src/daemon/abrt-handle-event.c:406 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "& [-v -i] -e|--event EVENT DIR..." ++#: ../src/daemon/abrt-handle-event.c:394 ++msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." ++msgstr "" + +-#: ../src/daemon/abrt-handle-event.c:414 ++#: ../src/daemon/abrt-handle-event.c:403 + msgid "Run EVENT on DIR" + msgstr "於 DIR 執行 EVENT" + +-#: ../src/daemon/abrt-handle-event.c:415 ++#: ../src/daemon/abrt-handle-event.c:404 + msgid "Communicate directly to the user" + msgstr "直接與使用者溝通" + ++#: ../src/daemon/abrt-handle-event.c:405 ++msgid "Increment the nice value by INCREMENT" ++msgstr "" ++ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +@@ -449,87 +468,88 @@ msgstr "同時工作序數量。預設為 " + msgid "Maximal cache size in MiB. Default is " + msgstr "最大快取大小,單位為 MiB。預設為 " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:198 ++#: ../src/daemon/abrt-auto-reporting.c:206 + msgid "& [ " + msgstr "& [ " + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:233 + msgid "Turns the authentication off" + msgstr "關閉身份認證" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:234 + msgid "Red Hat Support user name" + msgstr "Red Hat Support 使用者名稱" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support 密碼;如果未提供密碼,將會發出提示" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 憑證路徑或憑證類型" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:252 + msgid "You also need to specify --username for --password" + msgstr "使用 --password 時必須指定 --username" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:258 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或 --certificate" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:264 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或 --anonymous" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:270 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "Invalid number of arguments" + msgstr "無效的引數數目" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:296 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "未知的選項值:「%s」\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:336 + msgid "Password:" + msgstr "密碼:" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:339 + msgid "Cannot continue without password\n" + msgstr "沒有密碼無法繼續\n" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:380 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 身份認證自動回報" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 用戶端身份憑證自動回報" + + # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "anonymous auto reporting" + msgstr "匿名自動回報" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -549,83 +569,83 @@ msgstr "" + " FILENAME - 上傳過的封存檔名稱\n" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "不是目錄:「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "略過:「{0}」(以 / 起頭)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "略過:「{0}」(以 . 起頭)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "略過:「{0}」(含有 ..)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "略過:「{0}」(含有空白)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "略過:「{0}」(含有跳格符)" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "無法切換目錄至「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "未知檔案類型:「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "無法在「{0}」中建立工作目錄" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "無法將「{0}」移動至「{1}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "無法將「{0}」複製至「{1}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "驗證「{0}」上的錯誤" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "正在解開「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "無法建立「{0}」目錄" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "無法解開「{0}」" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "「{0}」處理成功" + +@@ -649,21 +669,29 @@ msgstr "無法 chown 「%s」:%s" + msgid "Deleting problem directory failed: %s" + msgstr "刪除問題目錄失敗:%s" + +-#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 +-#: ../src/lib/problem_api_dbus.c:286 ++#: ../src/lib/problem_api_dbus.c:131 + #, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "無法從 abrt-dbus 取得問題資料:%s" ++msgid "D-Bus GetInfo method call failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:166 ++msgid "Can't get problem data from abrt-dbus" ++msgstr "" + +-#: ../src/lib/problem_api_dbus.c:169 ++#: ../src/lib/problem_api_dbus.c:193 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題清單:%s" + +-#: ../src/lib/problem_api_dbus.c:250 ++#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "無法從 abrt-dbus 取得問題資料:%s" ++ ++#: ../src/lib/problem_api_dbus.c:274 + #, c-format + msgid "Can't test whether the element exists over abrt-dbus: %s" +-msgstr "" ++msgstr "無法測試元素是否存在 abrt-dbus 上:%s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -704,7 +732,7 @@ msgstr "& [選項] -d DIR\n" + msgid "Backtrace parsing failed for %s" + msgstr "%s 的追蹤解析失敗" + +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:150 + msgid "Crash thread not found" + msgstr "沒有找到崩潰執行序" + +@@ -808,13 +836,45 @@ msgstr "無法抽出 oops 訊息:「{0}」" + msgid "Oops text extracted successfully" + msgstr "Oops 內文已成功抽出" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "內核記錄指出有偵測到硬體錯誤。\n" + "這很可能不是軟體問題。\n" + ++#: ../src/plugins/abrt-action-find-bodhi-update:88 ++msgid "cannot open problem directory '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:102 ++msgid "Problem directory error: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:117 ++msgid "Using product '{0}' from /etc/os-release." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:119 ++msgid "Using product {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:121 ++msgid "Using product version {0}." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:133 ++msgid "Duplicate bugzilla bug '#{0}' was found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:135 ++msgid "There is no bugzilla bug with 'abrt_hash:{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-find-bodhi-update:140 ++msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -949,14 +1009,43 @@ msgstr "遺失 debuginfo 檔:{0}" + msgid "All debuginfo files are available" + msgstr "所有的 debuginfo 檔案皆可用" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "確定要上傳核心傾印?(它可能包含敏感資料)。若您的答案為「否」,將會在本地建立堆疊追蹤。(這可能需要下載大量資料)。" + +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +@@ -1186,7 +1275,8 @@ msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" + #: ../src/plugins/abrt-dump-oops.c:103 + #: ../src/plugins/abrt-dump-journal-core.c:479 + #: ../src/plugins/abrt-dump-journal-oops.c:225 +-#: ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-journal-xorg.c:191 ++#: ../src/plugins/abrt-dump-xorg.c:55 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "與 -d DumpLocation 相同,DumpLocation 於 abrt.conf 內指定" + +@@ -1196,16 +1286,18 @@ msgstr "將抽出的資訊存入 PROBLEM 中" + + #: ../src/plugins/abrt-dump-oops.c:105 + #: ../src/plugins/abrt-dump-journal-oops.c:226 +-#: ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-journal-xorg.c:192 ++#: ../src/plugins/abrt-dump-xorg.c:56 + msgid "Make the problem directory world readable" + msgstr "讓問題目錄全世界都可以讀取" + + #: ../src/plugins/abrt-dump-oops.c:106 + #: ../src/plugins/abrt-dump-journal-oops.c:227 ++#: ../src/plugins/abrt-dump-journal-xorg.c:193 + msgid "Throttle problem directory creation to 1 per second" + msgstr "節制問題目錄的建立速度為每秒 1 個" + +-#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 + msgid "Print search string(s) to stdout and exit" + msgstr "將搜尋字串列印在 stdout 上並離開" + +@@ -1215,9 +1307,13 @@ msgstr "將搜尋字串列印在 stdout 上並離開" + msgid "Failed to compile regex" + msgstr "無法編譯 regex" + +-#: ../src/plugins/abrt-dump-oops.c:186 +-msgid "Can't update the problem: more than one oops found" +-msgstr "無法更新問題:找到超過一份 oops" ++#: ../src/plugins/abrt-dump-oops.c:177 ++msgid "Can't update the problem: no oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:183 ++msgid "More oopses found: process only the first one" ++msgstr "" + + #: ../src/plugins/abrt-dump-journal-core.c:341 + #: ../src/plugins/abrt-dump-journal-core.c:377 +@@ -1236,6 +1332,7 @@ msgstr "無法在 abrt 資料庫中儲存偵測問題資料" + + #: ../src/plugins/abrt-dump-journal-core.c:427 + #: ../src/plugins/abrt-dump-journal-oops.c:165 ++#: ../src/plugins/abrt-dump-journal-xorg.c:121 + msgid "Failed to initialize systemd-journal watch" + msgstr "無法初始化 systemd-journal watch" + +@@ -1259,11 +1356,13 @@ msgstr "在 DIR 目錄中為每個核心傾印建立新的問題目錄" + + #: ../src/plugins/abrt-dump-journal-core.c:480 + #: ../src/plugins/abrt-dump-journal-oops.c:228 ++#: ../src/plugins/abrt-dump-journal-xorg.c:194 + msgid "Start reading systemd-journal from the CURSOR position" + msgstr "開始從 CURSOR 位置讀取 systemd-journal" + + #: ../src/plugins/abrt-dump-journal-core.c:481 + #: ../src/plugins/abrt-dump-journal-oops.c:229 ++#: ../src/plugins/abrt-dump-journal-xorg.c:195 + msgid "Start reading systemd-journal from the end" + msgstr "開始從尾端讀取 systemd-journal" + +@@ -1277,16 +1376,19 @@ msgstr "與 -t INT 相同,INT 則在 plugins/CCpp.conf 中指定" + + #: ../src/plugins/abrt-dump-journal-core.c:484 + #: ../src/plugins/abrt-dump-journal-oops.c:230 ++#: ../src/plugins/abrt-dump-journal-xorg.c:196 + msgid "Follow systemd-journal from the last seen position (if available)" + msgstr "從上次查看的位置開始跟隨 systemd-journal (如果有的話)" + + #: ../src/plugins/abrt-dump-journal-core.c:495 + #: ../src/plugins/abrt-dump-journal-oops.c:246 ++#: ../src/plugins/abrt-dump-journal-xorg.c:213 + msgid "You need to specify either -c CURSOR or -e" + msgstr "您需要指定 -c CURSOR 或 -e" + + #: ../src/plugins/abrt-dump-journal-core.c:541 + #: ../src/plugins/abrt-dump-journal-oops.c:284 ++#: ../src/plugins/abrt-dump-journal-xorg.c:278 + msgid "Cannot open systemd-journal" + msgstr "無法開啟 systemd-journal" + +@@ -1294,18 +1396,21 @@ msgstr "無法開啟 systemd-journal" + msgid "Cannot filter systemd-journal to systemd-coredump data only" + msgstr "無法過濾 systemd-journal 僅取用 systemd-coredump 資料" + +-#: ../src/plugins/abrt-dump-journal-core.c:547 +-#: ../src/plugins/abrt-dump-journal-oops.c:291 ++#: ../src/plugins/abrt-dump-journal-core.c:549 ++#: ../src/plugins/abrt-dump-journal-oops.c:293 ++#: ../src/plugins/abrt-dump-journal-xorg.c:291 + msgid "Cannot seek to the end of journal" + msgstr "無法查找到日誌尾端" + +-#: ../src/plugins/abrt-dump-journal-core.c:550 +-#: ../src/plugins/abrt-dump-journal-oops.c:307 ++#: ../src/plugins/abrt-dump-journal-core.c:552 ++#: ../src/plugins/abrt-dump-journal-oops.c:309 ++#: ../src/plugins/abrt-dump-journal-xorg.c:307 + #, c-format + msgid "Failed to set systemd-journal cursor '%s'" + msgstr "無法設定 systed-journal 游標「%s」" + + #: ../src/plugins/abrt-dump-journal-oops.c:40 ++#: ../src/plugins/abrt-dump-journal-xorg.c:52 + msgid "Cannot read journal data." + msgstr "無法讀取日誌資料。" + +@@ -1324,14 +1429,17 @@ msgid "" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:231 ++#: ../src/plugins/abrt-dump-journal-xorg.c:197 + msgid "Read journal files from all machines" + msgstr "從所有機器讀取日誌檔" + + #: ../src/plugins/abrt-dump-journal-oops.c:232 ++#: ../src/plugins/abrt-dump-journal-xorg.c:198 + msgid "Read all journal files from directory at PATH" + msgstr "" + + #: ../src/plugins/abrt-dump-journal-oops.c:279 ++#: ../src/plugins/abrt-dump-journal-xorg.c:273 + #, c-format + msgid "Cannot initialize systemd-journal in directory '%s'" + msgstr "" +@@ -1340,12 +1448,58 @@ msgstr "" + msgid "Cannot filter systemd-journal to kernel data only" + msgstr "無法過濾 systemd-journal 僅取用內核資料" + +-#: ../src/plugins/abrt-dump-journal-oops.c:298 ++#: ../src/plugins/abrt-dump-journal-oops.c:300 ++#: ../src/plugins/abrt-dump-journal-xorg.c:298 + #, c-format + msgid "Failed to start watch from cursor '%s'" + msgstr "無法從游標「%s」啟動監視" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-journal-xorg.c:61 ++msgid "Failed to parse Backtrace from journal" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:143 ++#, c-format ++msgid "" ++"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" ++"\n" ++"Extract Xorg crash from systemd-journal\n" ++"\n" ++"-c and -e options conflicts because both specifies the first read message.\n" ++"\n" ++"-e is useful only for -f because the following of journal starts by reading \n" ++"the entire journal if the last seen possition is not available.\n" ++"\n" ++"The last seen position is saved in %s\n" ++"\n" ++"Journal filter is required parameter and must be specified either by " ++"parameter\n" ++"-j or in %s conf file.\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:189 ++msgid "Print found crashes on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:190 ++msgid "Create new problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:199 ++msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:265 ++msgid "" ++"Journal filter must be specified either by parameter -j or stored in /etc/" ++"abrt/plugins/xorg.conf file" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-journal-xorg.c:282 ++msgid "Cannot filter systemd-journal to Xorg data only" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:35 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1354,58 +1508,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "從 FILE (或標準輸出) 抽出 Xorg 當機資訊" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:53 + msgid "Print found crash data on standard output" + msgstr "將找到的崩潰資料列印在標準輸出上" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:54 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 內為每個找到的當機資料建立問題目錄" + ++#: ../src/plugins/abrt-dump-xorg.c:108 ++msgid "Failed to parse Backtrace from log file" ++msgstr "" ++ + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:267 ++#: ../src/plugins/abrt-journal.c:274 + msgid "Cannot save journal watch's position" + msgstr "無法儲存日誌監視的位置" + +-#: ../src/plugins/abrt-journal.c:277 ++#: ../src/plugins/abrt-journal.c:284 + #, c-format + msgid "Cannot save journal watch's position: open('%s')" + msgstr "無法儲存日誌監視的位置:open('%s')" + + #. Only notice because this is expected +-#: ../src/plugins/abrt-journal.c:295 ++#: ../src/plugins/abrt-journal.c:302 + #, c-format + msgid "Not restoring journal watch's position: file '%s' does not exist" + msgstr "不還原日誌監視的位置:不存在「%s」檔案" + +-#: ../src/plugins/abrt-journal.c:297 ++#: ../src/plugins/abrt-journal.c:304 + #, c-format + msgid "Cannot restore journal watch's position form file '%s'" + msgstr "無法從檔案「%s」還原日誌監視的位置" + +-#: ../src/plugins/abrt-journal.c:304 ++#: ../src/plugins/abrt-journal.c:311 + #, c-format + msgid "Cannot restore journal watch's position: path '%s' is not regular file" + msgstr "無法還原日誌監視的位置:「%s」路徑並非通常檔案" + +-#: ../src/plugins/abrt-journal.c:310 ++#: ../src/plugins/abrt-journal.c:317 + #, c-format + msgid "" + "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" + msgstr "無法還原日誌監視的位置:「%s」檔案超出 %dB 大小限制" + +-#: ../src/plugins/abrt-journal.c:318 ++#: ../src/plugins/abrt-journal.c:325 + #, c-format + msgid "Cannot restore journal watch's position: open('%s')" + msgstr "無法還原日誌監視的位置:open('%s')" + +-#: ../src/plugins/abrt-journal.c:327 ++#: ../src/plugins/abrt-journal.c:334 + #, c-format + msgid "Cannot restore journal watch's position: cannot read entire file '%s'" + msgstr "無法還原日誌監視的位置:無法讀取整份「%s」檔案" + + #. abrt_journal_set_cursor() prints error message in verbose mode +-#: ../src/plugins/abrt-journal.c:339 ++#: ../src/plugins/abrt-journal.c:346 + #, c-format + msgid "Failed to move the journal to a cursor from file '%s'" + msgstr "無法將日誌從檔案「%s」移到游標處" +@@ -1916,43 +2074,43 @@ msgstr "無法關閉 NSS。" + msgid "Sleeping for %d seconds" + msgstr "正睡眠 %d 秒" + +-#: ../src/plugins/oops-utils.c:207 ++#: ../src/plugins/oops-utils.c:200 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "由於 BIOS 損壞而遭遇內核問題。很遺憾必須要告訴您,這樣的問題並無法由內核維護者修正。" + +-#: ../src/plugins/oops-utils.c:212 ++#: ../src/plugins/oops-utils.c:205 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "遭遇一項內核問題,但實際上並不受支援您的硬體,因此內核維護者無法修正此問題。" + +-#: ../src/plugins/oops-utils.c:227 ++#: ../src/plugins/oops-utils.c:220 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "遭遇一項內核問題,但您的內核已經損壞 (旗標:%s)。內核維護者無法診斷損壞的回報有什麼問題。" + +-#: ../src/plugins/oops-utils.c:235 ++#: ../src/plugins/oops-utils.c:228 + #, c-format + msgid " Tainted modules: %s." + msgstr "損壞的模組:%s。" + +-#: ../src/plugins/bodhi.c:375 ++#: ../src/plugins/bodhi.c:468 + msgid "List of bug ids" + msgstr "臭蟲 ID 清單" + +-#: ../src/plugins/bodhi.c:376 ++#: ../src/plugins/bodhi.c:469 + msgid "Specify a bodhi server url" + msgstr "指定 bodhi 伺服器 URL" + +-#: ../src/plugins/bodhi.c:377 ++#: ../src/plugins/bodhi.c:470 + msgid "Specify a release" + msgstr "指定發行版" + +-#: ../src/plugins/bodhi.c:382 ++#: ../src/plugins/bodhi.c:475 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" +@@ -1962,20 +2120,20 @@ msgstr "" + "\n" + "在 bodhi 伺服器上搜尋是否有可用更新" + +-#: ../src/plugins/bodhi.c:434 ++#: ../src/plugins/bodhi.c:542 + msgid "Searching for updates" + msgstr "搜尋是否有更新" + +-#: ../src/plugins/bodhi.c:440 ++#: ../src/plugins/bodhi.c:548 + msgid "No updates for this package found" + msgstr "找不到此軟體包的更新" + + #. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 ++#: ../src/plugins/bodhi.c:577 + msgid "Local version of the package is newer than available updates" + msgstr "本地端的軟體包版本比可用更新的版本還新" + +-#: ../src/plugins/bodhi.c:486 ++#: ../src/plugins/bodhi.c:594 + #, c-format + msgid "" + "An update exists which might fix your problem. You can install it by running:" +@@ -1999,66 +2157,67 @@ msgstr "列印找到的 oops" + msgid "Delete files with found oopses" + msgstr "刪除找到的 oops 其檔案" + +-#: ../src/cli/abrt-cli-core.c:89 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "「%s」辨識出一個以上的問題目錄" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "列出 [DIRs 中] 的問題" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "從問題目錄 DIR 移除檔案" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "在 DIR 內分析並回報問題資料" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "列印有關 DIR 的資訊" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "列印最近程式崩潰的數目" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "處理多項問題" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:162 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" + +-#: ../src/cli/list.c:125 ++#: ../src/cli/list.c:127 + msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:134 ++#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 ++#: ../src/cli-ng/abrtcli/cli.py:264 + msgid "List only not-reported problems" + msgstr "僅列出尚未回報的問題" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:136 ../src/cli/list.c:181 ++#: ../src/cli/list.c:138 ../src/cli/list.c:191 + msgid "Show detailed report" + msgstr "顯示詳細的回報" + +-#: ../src/cli/list.c:137 ++#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 + msgid "List only the problems more recent than specified timestamp" + msgstr "僅列出比指定的時間戳記更近期的問題" + +-#: ../src/cli/list.c:138 ++#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 + msgid "List only the problems older than specified timestamp" + msgstr "僅列出比指定的時間戳記更之前的問題" + +-#: ../src/cli/list.c:162 ++#: ../src/cli/list.c:166 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2067,53 +2226,63 @@ msgid "" + msgstr "已停用自動回報功能。請考慮以取得 root 特權的使用者執行\n" + "「abrt-auto-reporting enabled」指令啟用此功能\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:183 + msgid "& info [options] DIR..." + msgstr "& info [選項] DIR..." + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:192 + msgid "Text larger than this will be shown abridged" + msgstr "大於此的文字會刪減顯示" + +-#: ../src/cli/list.c:202 ++#: ../src/cli/list.c:212 + #, c-format + msgid "No such problem directory '%s'" + msgstr "沒有這個問題目錄「%s」" + +-#: ../src/cli/status.c:62 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:70 ++#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 + msgid "Print only the problem count without any message" + msgstr "僅列印問題數目而不帶任何訊息" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 + msgid "Print only the problems more recent than specified timestamp" + msgstr "僅列印比指定的時間戳記更近期的問題" + +-#: ../src/cli/status.c:87 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT 已偵測到 %u 項問題。若要取得更多資訊,請執行:abrt-cli list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:42 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:63 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "正在刪除「%s」" ++ ++# translation auto-copied from project abrt, version rhel7, document abrt ++#: ../src/cli/report.c:79 + msgid "& report [options] DIR..." + msgstr "& report [選項] DIR..." + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:89 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "在回報後移除 PROBLEM_DIR" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "正在刪除「%s」" +- +-# translation auto-copied from project abrt, version rhel7, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" +@@ -2124,27 +2293,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "可用動作:移除 remove(rm)、回報 report(e)、資訊 info(i)、略過 skip(s):" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "正在回報「%s」" + + # translation auto-copied from project abrt, version rhel7, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "下個問題請按 ENTER 鍵。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代。" + + # translation auto-copied from project abrt, version rhel7, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "僅選取時間戳記之後的問題" + ++#: ../src/cli-ng/abrtcli/cli.py:33 ++msgid "Problem has no backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:35 ++msgid "Start retracing process?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:40 ++msgid "Show backtrace of a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:50 ++msgid "This" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:52 ++msgid "Last" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:54 ++msgid "{} problem is not of a C/C++ type. Can't install debuginfo" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 ++msgid "" ++"Permission denied: '{}'\n" ++"If this is a system problem try running this command as root" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:71 ++msgid "Install required debuginfo for given problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:106 ++msgid "Run GDB against a problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 ++msgid "Output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 ++msgid "Built-in output format" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 ++msgid "No problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:147 ++msgid "List problems" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:167 ++msgid "Print information about problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:173 ++msgid "Prompt before removal" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:174 ++msgid "Do not prompt before removal" ++msgstr "" ++ ++#. force prompt for last problem to avoid accidents ++#: ../src/cli-ng/abrtcli/cli.py:182 ++msgid "Are you sure you want to delete this problem?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:186 ++msgid "Removed" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:188 ++msgid "Remove problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:199 ++msgid "Report problem" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:204 ++msgid "Perform local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:206 ++msgid "Perform remote retracing using retrace server" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:208 ++msgid "Force retracing even if backtrace already exists" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:223 ++msgid "Problem already has a backtrace" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:224 ++msgid "Run abrt retrace with -f/--force to retrace again" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:225 ++msgid "Show backtrace?" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:229 ++msgid "No retracing possible for this problem type" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:233 ++msgid "" ++"Upload core dump and perform remote retracing? (It may contain sensitive " ++"data). If your answer is 'No', a stack trace will be generated locally. " ++"Local retracing requires downloading potentially large amount of debuginfo " ++"data" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:248 ++msgid "Remote retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:251 ++msgid "Local retracing" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:255 ++msgid "Generate backtrace from coredump" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:280 ++msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:283 ++msgid "Print count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/cli.py:292 ++msgid "Authenticate and show all problems on this machine" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:96 ++msgid "No problem(s) matched" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/match.py:116 ++msgid "Ambiguous match specified resulting in multiple problems:" ++msgstr "" ++ ++#: ../src/cli-ng/abrtcli/utils.py:78 ++msgid "Not reportable" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +-- +2.5.0 + diff --git a/0004-translations-add-missing-new-line.patch b/0004-translations-add-missing-new-line.patch new file mode 100644 index 0000000..659f3ad --- /dev/null +++ b/0004-translations-add-missing-new-line.patch @@ -0,0 +1,26 @@ +From 0a918dd4d1aee2a90de212f932c01081c73791cd Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 11 Feb 2016 15:26:27 +0100 +Subject: [PATCH] translations: add missing new line + +Signed-off-by: Jakub Filak +--- + po/km.po | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/po/km.po b/po/km.po +index 84bb1b1..ab7a684 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -137,7 +137,7 @@ msgid "" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" +-"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" ++"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.c:483 + msgid "" +-- +2.5.0 + diff --git a/0005-Fix-minor-typo-possition-position.patch b/0005-Fix-minor-typo-possition-position.patch new file mode 100644 index 0000000..2a51ab2 --- /dev/null +++ b/0005-Fix-minor-typo-possition-position.patch @@ -0,0 +1,25 @@ +From 7dca143dd91229e0dad78bcdead6748ecf27cbd3 Mon Sep 17 00:00:00 2001 +From: Yuri Chornoivan +Date: Fri, 12 Feb 2016 22:51:18 +0200 +Subject: [PATCH] Fix minor typo: possition -> position + +--- + src/plugins/abrt-dump-journal-xorg.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-dump-journal-xorg.c b/src/plugins/abrt-dump-journal-xorg.c +index 87dfe13..1ede56f 100644 +--- a/src/plugins/abrt-dump-journal-xorg.c ++++ b/src/plugins/abrt-dump-journal-xorg.c +@@ -147,7 +147,7 @@ int main(int argc, char *argv[]) + "-c and -e options conflicts because both specifies the first read message.\n" + "\n" + "-e is useful only for -f because the following of journal starts by reading \n" +- "the entire journal if the last seen possition is not available.\n" ++ "the entire journal if the last seen position is not available.\n" + "\n" + "The last seen position is saved in %s\n" + "\n" +-- +2.5.0 + diff --git a/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch b/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch new file mode 100644 index 0000000..833cd94 --- /dev/null +++ b/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch @@ -0,0 +1,33 @@ +From a136d0c7b8aa72e7cf60e1255504191f1e9ac800 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 16 Feb 2016 10:53:06 +0100 +Subject: [PATCH] a-a-save-package-data: blacklist + /usr/lib(64)/firefox/plugin-container + +/usr/lib(64)/firefox/plugin-container is a sandbox/launcher for Firefox +plug-ins. When it crases Firefox loads it again so we don't want those crashes +reported. + +Related to: rhbz#1308840 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-action-save-package-data.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf +index 58f5061..f3a808f 100644 +--- a/src/daemon/abrt-action-save-package-data.conf ++++ b/src/daemon/abrt-action-save-package-data.conf +@@ -15,7 +15,7 @@ ProcessUnpackaged = yes + + # Blacklisted executable paths (shell patterns) + # +-BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer ++BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer, /usr/lib*/firefox/plugin-container + + # interpreters names + Interpreters = python2, python2.7, python, python3, python3.3, python3.4, python3.5, perl, perl5.16.2 +-- +2.5.0 + diff --git a/0008-CCpp-turn-off-compat-cores.patch b/0008-CCpp-turn-off-compat-cores.patch new file mode 100644 index 0000000..f311c0b --- /dev/null +++ b/0008-CCpp-turn-off-compat-cores.patch @@ -0,0 +1,51 @@ +From 10a3ff45b150fe426624080abf903242af3ac201 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +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 +--- + 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/abrt.spec b/abrt.spec index eead2eb..e0a1056 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.8.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -60,6 +60,13 @@ Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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 # '%%autosetup -S git' -> git BuildRequires: git @@ -1087,6 +1094,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Feb 23 2016 Matej Habrnal 2.8.0-3 +- translation updates +- blacklist Firefox's plugin-container +- turn off compat cores +- Resolves: #1308840 + * Wed Feb 10 2016 Matej Habrnal 2.8.0-2 - drop %e from the core_pattern From a22abdb1f3ac47479fc539a0dc520b2fa812dce7 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Mon, 7 Mar 2016 15:33:46 +0100 Subject: [PATCH 151/318] python3 addon: workaround a bug in traceback Signed-off-by: Matej Habrnal --- ...-addon-workaround-a-bug-in-traceback.patch | 34 +++++++++++++++++++ abrt.spec | 6 +++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 0009-python3-addon-workaround-a-bug-in-traceback.patch diff --git a/0009-python3-addon-workaround-a-bug-in-traceback.patch b/0009-python3-addon-workaround-a-bug-in-traceback.patch new file mode 100644 index 0000000..e0290c6 --- /dev/null +++ b/0009-python3-addon-workaround-a-bug-in-traceback.patch @@ -0,0 +1,34 @@ +From cc20fe4e6223c6d7092ba6c4b1bb2cf902e795b3 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +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 +--- + 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/abrt.spec b/abrt.spec index e0a1056..df70a39 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.8.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -67,6 +67,7 @@ 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 # '%%autosetup -S git' -> git BuildRequires: git @@ -1094,6 +1095,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Mar 7 2016 Matej Habrnal 2.8.0-4 +- python3 addon: workaround a bug in traceback + * Tue Feb 23 2016 Matej Habrnal 2.8.0-3 - translation updates - blacklist Firefox's plugin-container From cd3efeaff4bdc21a49cf8049df8cb146a8b2bf5b Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Mon, 11 Apr 2016 09:50:01 +0200 Subject: [PATCH 152/318] Fix broken pipe error in a-a-install-debuginfo Signed-off-by: Matej Habrnal --- ...ebuginfo-make-tmpdir-variable-global.patch | 85 ++++++ ...stall-debuginfo-fix-BrokenPipe-error.patch | 49 +++ 0014-Add-basic-documentation.patch | 282 ++++++++++++++++++ 0021-Save-Vendor-and-GPG-Fingerprint.patch | 232 ++++++++++++++ abrt.spec | 35 ++- disable-OpenGPGCheck-in-Fedora-Rawhide.patch | 4 +- 6 files changed, 680 insertions(+), 7 deletions(-) create mode 100644 0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch create mode 100644 0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch create mode 100644 0014-Add-basic-documentation.patch create mode 100644 0021-Save-Vendor-and-GPG-Fingerprint.patch diff --git a/0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch b/0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch new file mode 100644 index 0000000..9d55553 --- /dev/null +++ b/0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch @@ -0,0 +1,85 @@ +From a836ddd2277b05e1d7404cf6480a3ed8cc4807a4 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 8 Mar 2016 16:42:31 +0100 +Subject: [PATCH] a-a-install-debuginfo: make tmpdir variable global + +Function clean_up() has one required parameter tmpdir. +Without this commit clean_up() function raises an exception because it was +called without the parameter. + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-action-install-debuginfo.in | 16 ++++++++-------- + 1 file changed, 8 insertions(+), 8 deletions(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index f70ebcd..7818ffd 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -20,7 +20,8 @@ import problem + RETURN_OK = 0 + # serious problem, should be logged somewhere + RETURN_FAILURE = 2 +- ++# path to tmp directory has to be global because of clean_up() ++TMPDIR = None + + GETTEXT_PROGNAME = "abrt" + import locale +@@ -43,11 +44,11 @@ def init_gettext(): + gettext.textdomain(GETTEXT_PROGNAME) + + def sigterm_handler(signum, frame): +- clean_up() ++ clean_up(TMPDIR) + exit(RETURN_OK) + + def sigint_handler(signum, frame): +- clean_up() ++ clean_up(TMPDIR) + print("\n{0}".format(_("Exiting on user command"))) + sys.stdout.flush() + # ??! without "sys.", I am getting segv! +@@ -63,7 +64,6 @@ if __name__ == "__main__": + fbuild_ids = "build_ids" + cachedirs = [] + size_mb = 4096 +- tmpdir = None + keeprpms = False + noninteractive = False + b_ids = [] +@@ -135,7 +135,7 @@ if __name__ == "__main__": + except: + pass + elif opt == "--tmpdir": +- tmpdir = arg ++ TMPDIR = arg + elif opt == "--keeprpms": + keeprpms = True + # --exact takes precendece over --ids +@@ -159,11 +159,11 @@ if __name__ == "__main__": + + if not cachedirs: + cachedirs = ["/var/cache/abrt-di"] +- if not tmpdir: ++ if not TMPDIR: + # security people prefer temp subdirs in app's private dir, like /var/run/abrt + # and we switched to /tmp but Fedora feature tmp-on-tmpfs appeared, hence we must + # not use /tmp for potential big data anymore +- tmpdir = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) ++ TMPDIR = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) + + + if missing == None: +@@ -235,7 +235,7 @@ if __name__ == "__main__": + sys.exit(RETURN_FAILURE) + + # TODO: should we pass keep_rpms=keeprpms to DebugInfoDownload here?? +- downloader = download_class(cache=cachedirs[0], tmp=tmpdir, ++ downloader = download_class(cache=cachedirs[0], tmp=TMPDIR, + noninteractive=noninteractive, + repo_pattern=repo_pattern) + try: +-- +2.5.5 + diff --git a/0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch b/0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch new file mode 100644 index 0000000..07169a3 --- /dev/null +++ b/0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch @@ -0,0 +1,49 @@ +From 2c48b73b5d449df26053d5d95f98f2ef01610d46 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 8 Mar 2016 16:45:36 +0100 +Subject: [PATCH] a-a-install-debuginfo: fix BrokenPipe error + +While debug info is downloading and stop button is pressed the BrokenPipe +error appears. + +If the stop button is pressed, gui wizard sends SIGTERM to all +processes with the same group ID so abrt-action-install-debuginfo got SIGTERM +as well. It has its own SIGTERM handler which calls clean_up() function and it +takes a while before the tool is terminated. +abrt-action-install-debuginfo tries to write some messages to the closed socket +during the clean_up process and it raises a BrokenPipe exception. We must +ensure that no message will be printed after SIGTERM is recieved. + +Related to: #1255259 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-action-install-debuginfo.in | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index 7818ffd..e4a7dfd 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -44,7 +44,7 @@ def init_gettext(): + gettext.textdomain(GETTEXT_PROGNAME) + + def sigterm_handler(signum, frame): +- clean_up(TMPDIR) ++ clean_up(TMPDIR, silent=True) + exit(RETURN_OK) + + def sigint_handler(signum, frame): +@@ -241,6 +241,9 @@ if __name__ == "__main__": + try: + result = downloader.download(missing, download_exact_files=exact_fls) + except Exception as ex: ++ if ex.errno == errno.EPIPE: ++ clean_up(TMPDIR, silent=True) ++ exit(RETURN_FAILURE) + error_msg_and_die("Can't download debuginfos: %s", ex) + + if exact_fls: +-- +2.5.5 + diff --git a/0014-Add-basic-documentation.patch b/0014-Add-basic-documentation.patch new file mode 100644 index 0000000..74da14f --- /dev/null +++ b/0014-Add-basic-documentation.patch @@ -0,0 +1,282 @@ +From 0020bf80cda35ee0ce0ecf91023f3abcc1c4d26d Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Sat, 20 Feb 2016 08:27:32 +0100 +Subject: [PATCH] Add basic documentation + +Signed-off-by: Jakub Filak +--- + CONTRIBUTING.md | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + INSTALL | 7 ----- + INSTALL.md | 56 ++++++++++++++++++++++++++++++++++ + Makefile.am | 2 ++ + README | 11 ------- + README.md | 48 +++++++++++++++++++++++++++++ + 6 files changed, 200 insertions(+), 18 deletions(-) + create mode 100644 CONTRIBUTING.md + delete mode 100644 INSTALL + create mode 100644 INSTALL.md + delete mode 100644 README + create mode 100644 README.md + +diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md +new file mode 100644 +index 0000000..4b27138 +--- /dev/null ++++ b/CONTRIBUTING.md +@@ -0,0 +1,94 @@ ++# Contributing to ABRT ++ ++Adopted from http://www.contribution-guide.org/ ++ ++BSD, Copyright (c) 2015 Jeff Forcier ++ ++## Submitting bugs ++ ++### Due diligence ++ ++Before submitting a bug, please do the following: ++ ++* Perform **basic troubleshooting** steps: ++ ++ * **Make sure you're on the latest version.** If you're not on the most ++ recent version, your problem may have been solved already! Upgrading is ++ always the best first step. ++ * **Try older versions.** If you're already *on* the latest release, try ++ rolling back a few minor versions (e.g. if on 1.7, try 1.5 or 1.6) and ++ see if the problem goes away. This will help the devs narrow down when ++ the problem first arose in the commit log. ++ * **Try switching up dependency versions.** If the software in question has ++ dependencies (other libraries, etc) try upgrading/downgrading those as ++ well. ++ ++* **Search the project's bug/issue tracker** to make sure it's not a known issue. ++* If you don't find a pre-existing issue, consider **checking with the mailing ++ list and/or IRC channel** in case the problem is non-bug-related. ++* Consult [README.md](README.md) for links to bugtracker, mailinglist or IRC. ++ ++### What to put in your bug report ++ ++Make sure your report gets the attention it deserves: bug reports with missing ++information may be ignored or punted back to you, delaying a fix. The below ++constitutes a bare minimum; more info is almost always better: ++ ++* **What version of the core programming language interpreter/compiler are you ++ using?** For example, if it's a Python project, are you using Python 2.7.3? ++ Python 3.3.1? PyPy 2.0? ++* **What operating system are you on?** Make sure to include release and distribution. ++* **Which version or versions of the software are you using?** Ideally, you ++ followed the advice above and have ruled out (or verified that the problem ++ exists in) a few different versions. ++* **How can the developers recreate the bug on their end?** If possible, ++ include a copy of your code, the command you used to invoke it, and the full ++ output of your run (if applicable.) ++ ++ * A common tactic is to pare down your code until a simple (but still ++ bug-causing) "base case" remains. Not only can this help you identify ++ problems which aren't real bugs, but it means the developer can get to ++ fixing the bug faster. ++ ++ ++## Contributing changes ++ ++It would be the best if you could discuss your plans with us on #abrt or on our ++mailinig list crash-catcher@lists.fedorahosted.org before you spent too much ++energy and time. ++ ++Before contributing, please, make yourself familiar with git. You can [try git ++online](https://try.github.io/). Things would be easier for all of us if you do ++your changes on a branch. Use a single commit for every logical reviewable ++change, without unrelated modifications (that will help us if need to revert a ++particular commit). Please avoid adding commits fixing your previous ++commits, do amend or rebase instead. ++ ++Every commit must have either comprehensive commit message saying what is being ++changed and why or a link (an issue number on Github) to a bug report where ++this information is available. It is also useful to include notes about ++negative decisions - i.e. why you decided to not do particular things. Please ++bare in mind that other developers might not understand what the original ++problem was. ++ ++### Full example ++ ++Here's an example workflow for a project `abrt` hosted on Github ++Your username is `yourname` and you're submitting a basic bugfix or feature. ++ ++* Hit 'fork' on Github, creating e.g. `yourname/abrt`. ++* `git clone git@github.com:yourname/abrt` ++* `cd abrt` ++* `git checkout -b foo_the_bars` to create new local branch named foo_the_bars ++* Hack, hack, hack ++* Run `make check` ++* `git status` ++* `git add` ++* `git commit -s -m "Foo the bars"` ++* `git push -u origin HEAD` to create foo_the_bars branch in your fork ++* Visit your fork at Github and click handy "Pull request" button. ++* In the description field, write down issue number (if submitting code fixing ++ an existing issue) or describe the issue + your fix (if submitting a wholly ++ new bugfix). ++* Hit 'submit'! And please be patient - the maintainers will get to you when ++ they can. +diff --git a/INSTALL b/INSTALL +deleted file mode 100644 +index 799a4a6..0000000 +--- a/INSTALL ++++ /dev/null +@@ -1,7 +0,0 @@ +-How to install +-============== +- +-1. autogen.sh +-2. ./configure +-3. make +-4. make install +diff --git a/INSTALL.md b/INSTALL.md +new file mode 100644 +index 0000000..96d42c4 +--- /dev/null ++++ b/INSTALL.md +@@ -0,0 +1,56 @@ ++# How to install ++ ++### Development dependencies ++ ++Build dependencies can be listed by: ++ ++ $ ./autogen.sh sysdeps ++ ++or installed by: ++ ++ $ ./autogen.sh sysdeps --install ++ ++The dependency installer gets the data from [the rpm spec file](abrt.spec.in) ++ ++### Building from sources ++ ++When you have all dependencies installed run the following commands: ++ ++ $ ./autogen.sh --prefix=/usr \ ++ --sysconfdir=/etc \ ++ --localstatedir=/var \ ++ --sharedstatedir=/var/lib ++ ++ $ make ++ ++or if you want to debug ABRT run: ++ ++ $ CFLAGS="-g -g3 -ggdb -ggdb3 -O0" ./autogen.sh --prefix=/usr \ ++ --sysconfdir=/etc \ ++ --localstatedir=/var \ ++ --sharedstatedir=/var/lib \ ++ --enable-debug ++ ++ $ make ++ ++### Checking ++ ++ABRT uses [Autotest](http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Using-Autotest.html) ++to validate source codes. Run the test by: ++ ++ $ make check ++ ++If you want to search for memory issues, build ABRT with debug options and then ++run: ++ ++ $ make maintainer-check ++ ++### Installing ++ ++If you need an rpm package, run: ++ ++ $ make rpm ++ ++otherwise run: ++ ++ $ make install +diff --git a/Makefile.am b/Makefile.am +index 01b8a97..e528c93 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -36,6 +36,8 @@ EXTRA_DIST = doc/coding-style abrt.spec.in abrt.pc.in \ + abrt-version asciidoc.conf init-scripts/* $(TESTSUITE_FILES) \ + augeas/test_abrt.aug + ++dist_doc_DATA = README.md ++ + pkgconfigdir = $(libdir)/pkgconfig + pkgconfig_DATA = abrt.pc + +diff --git a/README b/README +deleted file mode 100644 +index 26cbbcb..0000000 +--- a/README ++++ /dev/null +@@ -1,11 +0,0 @@ +-These sources are in early stages. They are changing every day :-)... +-Anyway, patches are welcome. +- +-** Using Valgrind +- +-When running ABRT under memcheck, GLib's environment variables should +-be set to turn off glib's memory optimization, so valgrind is not +-confused: +- +-G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --tool=memcheck \ +- --leak-check=full abrtd -dvvv +diff --git a/README.md b/README.md +new file mode 100644 +index 0000000..e58a499 +--- /dev/null ++++ b/README.md +@@ -0,0 +1,48 @@ ++# ABRT ++ ++**A set of tools to help users detect and report application crashes.** ++ ++### About ++ ++Its main purpose is to ease the process of reporting an issue and finding a ++solution. ++ ++The solution in this context might be a bugzilla ticket, knowledge base article ++or a suggestion to update a package to a version containing a fix. ++ ++### Documentation ++ ++Every ABRT program and configuration file has a man page describing it. It is ++also possible to [read the ABRT documentation](http://abrt.readthedocs.org/) ++online. For contributors and developers, there are also [wiki ++pages](https://github.com/abrt/abrt/wiki) describing some topics to deeper ++technical details. ++ ++### Development ++ ++ * IRC Channel: #abrt on FreeNode ++ * [Mailing List](https://lists.fedorahosted.org/admin/lists/crash-catcher.lists.fedorahosted.org/) ++ * [Bug Reports and RFEs](https://github.com/abrt/abrt/issues) ++ * [Contributing to ABRT](CONTRIBUTING.md) ++ * [Install and run ABRT](INSTALL.md) ++ ++ ++### Running ++ ++ABRT consist of several services and many small utilities. While The utilities ++can be successfully run from the source directories after build, the services ++often uses the utilities to do actions and expect the utilities installed in ++the system directories. Hence to run the services, it is recommended to install ++ABRT first and run them as system services. The instructions how to build ++and install ABRT can be found in [INSTALL.md](INSTALL.md) ++ ++### Technologies ++ ++* [libreport](https://github.com/abrt/libreport) - problem data format, reporting ++* [satyr](https://github.com/abrt/satyr) - backtrace processing, micro-reports ++* [Python3](https://www.python.org/) ++* [GLib2](https://developer.gnome.org/glib/) ++* [Gtk3](https://developer.gnome.org/gtk3) ++* [D-Bus](https://www.freedesktop.org/wiki/Software/dbus/) ++* [SELinux](https://github.com/SELinuxProject/selinux/wiki) ++* [systemd](https://www.freedesktop.org/wiki/Software/systemd/) +-- +2.5.5 + diff --git a/0021-Save-Vendor-and-GPG-Fingerprint.patch b/0021-Save-Vendor-and-GPG-Fingerprint.patch new file mode 100644 index 0000000..4f9f382 --- /dev/null +++ b/0021-Save-Vendor-and-GPG-Fingerprint.patch @@ -0,0 +1,232 @@ +From 451e57fc509f401bb586e7db88256923d47c38f7 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 9 Feb 2016 16:53:21 +0100 +Subject: [PATCH] Save Vendor and GPG Fingerprint + +Red Hat keys can be found at: + https://access.redhat.com/security/team/key + +Related: #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 df70a39..b4d9745 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,19 +43,17 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.6.4 +%define libreport_ver 2.7.0 %define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.8.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz -# don't remove this patch, packages in rawhide are not signed! -Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch # 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 @@ -68,6 +66,27 @@ 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 # '%%autosetup -S git' -> git BuildRequires: git @@ -737,7 +756,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %files -f %{name}.lang %defattr(-,root,root,-) -%doc README COPYING +%doc README.md COPYING %if %{with systemd} %{_unitdir}/abrtd.service %{_tmpfilesdir}/abrt.conf @@ -1095,6 +1114,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Apr 08 2016 Matej Habrnal 2.8.0-5 +- spec: README -> README.md +- Add basic documentation +- a-a-install-debuginfo: fix BrokenPipe error +- a-a-install-debuginfo: make tmpdir variable global + * Mon Mar 7 2016 Matej Habrnal 2.8.0-4 - python3 addon: workaround a bug in traceback diff --git a/disable-OpenGPGCheck-in-Fedora-Rawhide.patch b/disable-OpenGPGCheck-in-Fedora-Rawhide.patch index 11d8c3e..f88c86d 100644 --- a/disable-OpenGPGCheck-in-Fedora-Rawhide.patch +++ b/disable-OpenGPGCheck-in-Fedora-Rawhide.patch @@ -13,8 +13,8 @@ index 3d35bb6..e3f724a 100644 --- a/src/daemon/abrt-action-save-package-data.conf +++ b/src/daemon/abrt-action-save-package-data.conf @@ -3,7 +3,7 @@ - # the list of public keys used to check the signature is - # in the file gpg_keys + # Product Signing (GPG) Keys: + # https://access.redhat.com/security/team/key # -OpenGPGCheck = yes +OpenGPGCheck = no From 168feccb111132b261836f3547a5cc5b6e987007 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 25 May 2016 09:48:30 +0200 Subject: [PATCH 153/318] New upstream release 2.8.1 Signed-off-by: Matej Habrnal --- .gitignore | 1 + 0001-ccpp-drop-e-from-the-core_pattern.patch | 99 - 0003-Translation-updates.patch | 92383 ---------------- 0004-translations-add-missing-new-line.patch | 26 - 0005-Fix-minor-typo-possition-position.patch | 25 - ...-data-blacklist-usr-lib-64-firefox-p.patch | 33 - 0008-CCpp-turn-off-compat-cores.patch | 51 - ...-addon-workaround-a-bug-in-traceback.patch | 34 - ...ebuginfo-make-tmpdir-variable-global.patch | 85 - ...stall-debuginfo-fix-BrokenPipe-error.patch | 49 - 0014-Add-basic-documentation.patch | 282 - 0021-Save-Vendor-and-GPG-Fingerprint.patch | 232 - abrt.spec | 52 +- sources | 2 +- 14 files changed, 22 insertions(+), 93332 deletions(-) delete mode 100644 0001-ccpp-drop-e-from-the-core_pattern.patch delete mode 100644 0003-Translation-updates.patch delete mode 100644 0004-translations-add-missing-new-line.patch delete mode 100644 0005-Fix-minor-typo-possition-position.patch delete mode 100644 0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch delete mode 100644 0008-CCpp-turn-off-compat-cores.patch delete mode 100644 0009-python3-addon-workaround-a-bug-in-traceback.patch delete mode 100644 0012-a-a-install-debuginfo-make-tmpdir-variable-global.patch delete mode 100644 0013-a-a-install-debuginfo-fix-BrokenPipe-error.patch delete mode 100644 0014-Add-basic-documentation.patch delete mode 100644 0021-Save-Vendor-and-GPG-Fingerprint.patch 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 -Date: Tue, 9 Feb 2016 17:55:29 +0100 -Subject: [PATCH] ccpp: drop %e from the core_pattern - -The argument is no longer need and it must be placed either at the end -of the command or enclosed with '' as it can contain white space. - -Threads can have an arbitrary name: - man 3 pthread_setname_np - -Signed-off-by: Jakub Filak ---- - src/hooks/abrt-hook-ccpp.c | 16 ++++++++-------- - src/hooks/abrt-install-ccpp-hook.in | 12 +----------- - 2 files changed, 9 insertions(+), 19 deletions(-) - -diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c -index 8f1b813..dfe9526 100644 ---- a/src/hooks/abrt-hook-ccpp.c -+++ b/src/hooks/abrt-hook-ccpp.c -@@ -143,9 +143,9 @@ static struct dump_dir *dd; - * %u - uid - * %g - gid - * %t - UNIX time of dump -- * %e - executable filename -- * %i - crash thread tid - * %P - global pid -+ * %I - crash thread tid -+ * %e - executable filename (can contain white spaces) - * %% - output one "%" - */ - /* Hook must be installed with exactly the same sequence of %c specifiers. -@@ -661,9 +661,9 @@ int main(int argc, char** argv) - - if (argc < 8) - { -- /* percent specifier: %s %c %p %u %g %t %e %P %i*/ -- /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] [9]*/ -- error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME GLOBAL_PID [TID]", argv[0]); -+ /* percent specifier: %s %c %p %u %g %t %P %T */ -+ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] */ -+ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME GLOBAL_PID GLOBAL_TID", argv[0]); - } - - /* Not needed on 2.6.30. -@@ -704,8 +704,8 @@ int main(int argc, char** argv) - /* set to max possible >0 value */ - ulimit_c = ~((off_t)1 << (sizeof(off_t)*8-1)); - } -- const char *global_pid_str = argv[8]; -- pid_t pid = xatoi_positive(argv[8]); -+ const char *global_pid_str = argv[7]; -+ pid_t pid = xatoi_positive(argv[7]); - - user_pwd = get_cwd(pid); /* may be NULL on error */ - log_notice("user_pwd:'%s'", user_pwd); -@@ -867,7 +867,7 @@ int main(int argc, char** argv) - signal_no, signame, "dumping core"); - - pid_t tid = -1; -- const char *tid_str = argv[9]; -+ const char *tid_str = argv[8]; - if (tid_str) - { - tid = xatoi_positive(tid_str); -diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in -index 707c57d..660c209 100755 ---- a/src/hooks/abrt-install-ccpp-hook.in -+++ b/src/hooks/abrt-install-ccpp-hook.in -@@ -11,9 +11,7 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" - SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" - HOOK_BIN="@libexecdir@/abrt-hook-ccpp" - # Must match percent_specifiers[] order in abrt-hook-ccpp.c: --PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" --# Same, but with bogus "executable name" parameter --PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" -+PATTERN="|$HOOK_BIN %s %c %p %u %g %t %P %I" - - # core_pipe_limit specifies how many dump_helpers can run at the same time - # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing -@@ -39,14 +37,6 @@ start() { - cur=`cat "$PATTERN_FILE"` - cur_first=`printf "%s" "$cur" | sed 's/ .*//'` - -- # Is there a %e (executable name) in old pattern anywhere? -- if test x"${cur#*%e}" = x"${cur}"; then -- # No. Can use PATTERN with less risk of overflow -- # on expansion (executable names can be LONG). -- # Overflow would cause kernel to abort coredump. BAD. -- PATTERN="$PATTERN1" -- fi -- - $verbose && printf "cur:'%s'\n" "$cur" - # Is it already installed? - if test x"$cur_first" != x"|$HOOK_BIN"; then # no --- -2.5.0 - diff --git a/0003-Translation-updates.patch b/0003-Translation-updates.patch deleted file mode 100644 index 8ae6b32..0000000 --- a/0003-Translation-updates.patch +++ /dev/null @@ -1,92383 +0,0 @@ -From 7967724138d015dd71d9e788b59d0b3f03bb2513 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 11 Feb 2016 14:51:00 +0100 -Subject: [PATCH] Translation updates - -Signed-off-by: Jakub Filak ---- - po/ar.po | 690 ++++++++++++++++++------- - po/as.po | 711 ++++++++++++++++++------- - po/ast.po | 685 ++++++++++++++++++------- - po/bg.po | 693 ++++++++++++++++++------- - po/bn.po | 687 ++++++++++++++++++------- - po/bn_IN.po | 713 +++++++++++++++++++------- - po/bs.po | 685 ++++++++++++++++++------- - po/ca.po | 1028 ++++++++++++++++++++++++------------- - po/cs.po | 842 +++++++++++++++++++++--------- - po/da.po | 685 ++++++++++++++++++------- - po/de.po | 746 +++++++++++++++++++-------- - po/el.po | 685 ++++++++++++++++++------- - po/en_GB.po | 699 ++++++++++++++++++------- - po/es.po | 845 +++++++++++++++++++++--------- - po/et.po | 693 ++++++++++++++++++------- - po/eu.po | 687 ++++++++++++++++++------- - po/fa.po | 685 ++++++++++++++++++------- - po/fi.po | 754 +++++++++++++++++++-------- - po/fr.po | 939 ++++++++++++++++++++++++---------- - po/gl.po | 697 ++++++++++++++++++------- - po/gu.po | 711 ++++++++++++++++++------- - po/he.po | 685 ++++++++++++++++++------- - po/hi.po | 713 +++++++++++++++++++------- - po/hu.po | 736 ++++++++++++++++++-------- - po/ia.po | 685 ++++++++++++++++++------- - po/id.po | 685 ++++++++++++++++++------- - po/it.po | 714 +++++++++++++++++++------- - po/ja.po | 761 +++++++++++++++++++-------- - po/ka.po | 685 ++++++++++++++++++------- - po/km.po | 1275 ++++++++++++++++++++++++++++++--------------- - po/kn.po | 711 ++++++++++++++++++------- - po/ko.po | 825 ++++++++++++++++++++--------- - po/lt.po | 701 ++++++++++++++++++------- - po/lv.po | 687 ++++++++++++++++++------- - po/ml.po | 727 ++++++++++++++++++-------- - po/mr.po | 711 ++++++++++++++++++------- - po/nb.po | 685 ++++++++++++++++++------- - po/nds.po | 685 ++++++++++++++++++------- - po/nl.po | 722 ++++++++++++++++++-------- - po/or.po | 714 +++++++++++++++++++------- - po/pa.po | 707 ++++++++++++++++++------- - po/pl.po | 934 ++++++++++++++++++++++----------- - po/pt.po | 858 ++++++++++++++++++++++--------- - po/pt_BR.po | 712 +++++++++++++++++++------- - po/ru.po | 785 +++++++++++++++++++--------- - po/sk.po | 805 ++++++++++++++++++++--------- - po/sq.po | 1236 +++++++++++++++++++++++++++++--------------- - po/sr.po | 1565 ++++++++++++++++++++++++++++++++++++++------------------ - po/sr@latin.po | 685 ++++++++++++++++++------- - po/sv.po | 723 ++++++++++++++++++-------- - po/ta.po | 712 +++++++++++++++++++------- - po/te.po | 711 ++++++++++++++++++------- - po/tg.po | 685 ++++++++++++++++++------- - po/th.po | 703 ++++++++++++++++++------- - po/tr.po | 687 ++++++++++++++++++------- - po/uk.po | 720 ++++++++++++++++++-------- - po/ur.po | 685 ++++++++++++++++++------- - po/vi.po | 687 ++++++++++++++++++------- - po/zh_CN.po | 709 ++++++++++++++++++------- - po/zh_TW.po | 716 +++++++++++++++++++------- - 60 files changed, 32905 insertions(+), 12787 deletions(-) - -diff --git a/po/ar.po b/po/ar.po -index 43f1c97..650d734 100644 ---- a/po/ar.po -+++ b/po/ar.po -@@ -4,22 +4,23 @@ - # - # Translators: - # Jiří Moskovčák , 2011 -+# Khalid Moharrum , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2015-11-03 07:57-0500\n" -+"Last-Translator: Khalid Moharrum \n" - "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ar/)\n" - "Language: ar\n" - "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " - "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "تقرير" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -296,60 +323,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +400,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1074,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1092,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1113,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1136,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1154,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1171,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1201,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1217,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1777,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1855,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1921,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1972,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/as.po b/po/as.po -index 2f44fc6..ce31175 100644 ---- a/po/as.po -+++ b/po/as.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -22,7 +22,7 @@ msgstr "" - "language/as/)\n" - "Language: as\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,102 +32,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "সংবাদ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "অধিসূচনা দেখুৱাব নোৱাৰি: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio চেনেলৰ পৰা পঢ়িব নোৱাৰি: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio চেনেলত এনক'ডিং সংহতি কৰিব নোৱাৰি: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অৱস্থা আৰম্ভ কৰিব নোৱাৰি: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +137,17 @@ msgstr "" - "\n" - "এপ্লেট যি ABRT দ্বাৰা নতুন সমস্যাসমূহ চিনাক্ত কৰোতে অধিসূচিত কৰে\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ডাইৰেকটৰি চুৰ কৰাৰ আগত সোধিব" -@@ -158,12 +169,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"স্টেক ট্ৰেইচ সৃজন কৰিবলে কেন্দ্ৰডাম্প ফাইলৰ প্ৰয়োজন যি সময় আৰু স্থান লোৱা " --"কাৰ্য্য। ABRT এ সেৱা প্ৰদান কৰে যি স্টেক ট্ৰেইচক কেন্দ্ৰডাম্পৰ পৰা সৃজন কৰে " --"কিন্তু আপুনি কেন্দ্ৰডাম্পক এই সেৱালৈ আপল'ড কৰিব লাগিব। এই বিকল্পৰ সৈতে " --"অসামৰ্থবান থাকিলে ABRT এ নোসোধাকৈ কেন্দ্ৰ ডাম্পক আপল'ড কৰিব।" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -208,10 +217,6 @@ msgstr "" - "নেদেখুৱায়। প্ৰভাৱশালী হয় কেৱল যেতিয়া সমু সংবাদন সামৰ্থবান থাকে।" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "কেন্দ্ৰডাম্প আপল'ড কৰাৰ আগত সোধিব" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -219,15 +224,15 @@ msgstr "" - "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ সদায় নিষিদ্ধ অভিগমৰ সৈতে বাগ টিকেট সৃষ্টি " - "কৰে যদি সম্ভৱত সংবেদনশীল তথ্য চিনাক্ত কৰা হয়।" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "সংবেদনশীল তথ্যৰ বাবে ব্যক্তিগত টিকেট অনুৰোধ কৰক" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "অসম্পূৰ্ণ সমস্যাবোৰ অধিসূচীত কৰক" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -237,6 +242,22 @@ msgstr "" - "আউট হৈ থকা সময়ত চিনাক্ত কৰা হয়। অমূল্য সমস্যা সংবাদসমূহ প্ৰদান কৰিবলে, ABRT " - "এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব।" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "বন্ধ কৰক (_C)" -@@ -262,14 +283,14 @@ msgstr "বিষয়ে" - msgid "Quit" - msgstr "প্ৰস্থান কৰক" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -281,11 +302,11 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যা ডাইৰেকটৰি" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "সংৰূপ নথিপত্ৰ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -299,24 +320,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM k ক্লাএন্ট uid হিচাপে ব্যৱহাৰ কৰক" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog -লে লগ কৰক" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ কৰক" - -@@ -324,62 +346,52 @@ msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ - msgid "Unknown error" - msgstr "অজ্ঞাত ত্ৰুটি" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "প্ৰমাণীত নহয়" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "পৰিবৰ্তনৰ বাবে সমস্যাক অভিগম কৰিব নোৱাৰি" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' উপাদান পৰিবৰ্তন কৰিব নোৱাৰি" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "ডাইৰেকটৰি Chowning কৰোতে ব্যৰ্থ হল। অধিক বিৱৰণসমূহৰ বাবে চিস্টেম লগসমূহ " - "নীৰিক্ষণ কৰক।" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ৰ আকাৰ প্ৰাপ্ত কৰিব পৰা নগল" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "কোনো সমস্যা স্থান অৱশিষ্ট নাই" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "সমস্যা ডাইৰেকটৰি '%s' ৰ পৰা উপাদান '%s' মচিব নোৱাৰি" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -388,12 +400,12 @@ msgid "" - msgstr "" - "নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "নিষ্ক্ৰিয়তাৰ NUM ছেকেণ্ডসমূহ পিছত প্ৰস্থান কৰিব" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "এই প্ৰগ্ৰামক ৰুট হিচাপে চলাব লাগিব।" - -@@ -419,18 +431,22 @@ msgstr "ডিমোনাইজ নকৰিব" - msgid "Log to syslog even with -d" - msgstr "-d -ৰ হৈতেও syslog -লে লগ কৰক" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR ত EVENT চলাওক" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ব্যৱহাৰকাৰীৰ সৈতে প্ৰত্যক্ষভাৱে যোগাযোগ কৰক" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -468,74 +484,75 @@ msgstr "সঙ্গামী কৰ্মীসকলৰ সংখ্যা। - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB ত সৰ্বাধিক ক্যাশ আকাৰ। অবিকল্পিত হল" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "তৰ্কৰ অবৈধ সংখ্যা" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -555,83 +572,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "এটা ডাইৰেকটৰি নহয়: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "বাদ দিয়া হৈছে: '{0}' (স্লেশৰ সৈতে আৰম্ভ হয়)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "বাদ দিয়া হৈছে: '{0}' (ডটৰ সৈতে আৰম্ভ হয়)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "বাদ দিয়া হৈছে: '{0}' (অন্তৰ্ভুক্ত কৰে ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "বাদ দিয়া হৈছে: '{0}' (স্পেইচ অন্তৰ্ভুক্ত কৰে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "বাদ দিয়া হৈছে: '{0}' (টেব অন্তৰ্ভুক্ত কৰে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ডাইৰেকটৰিক '{0}' লৈ পৰিবৰ্তন কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "অজ্ঞাত ফাইল ধৰণ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' ত কাৰ্য্যকৰী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ক '{1}' লৈ স্থানান্তৰ কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ক '{1}' লৈ কপি কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' ত সত্যাপন ত্ৰুটি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' আনপেক কৰা হৈছে" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ক আনপেক কৰিব নোৱাৰি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' ক সফলভাৱে প্ৰক্ৰিয়াকৰণ কৰা হল" - -@@ -655,18 +672,26 @@ msgstr "'%s' chown কৰিব নোৱাৰি: %s" - msgid "Deleting problem directory failed: %s" - msgstr "সমস্যা ডাইৰেকটৰি মচি পেলোৱা ব্যৰ্থ হল: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ৰ পৰা সমস্যা তালিকা প্ৰাপ্ত কৰিব নোৱাৰি: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -713,7 +738,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s -ৰ বাবে বেকট্ৰেইচ বিশ্লেষণ ব্যৰ্থ হল" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "স্খলন থ্ৰেড পোৱা নগল" - -@@ -818,7 +843,7 @@ msgstr "oops বাৰ্তা নিষ্কাষণ কৰিব নোৱ - msgid "Oops text extracted successfully" - msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ কৰা হল" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -826,6 +851,38 @@ msgstr "" - "কাৰনেল লগত হাৰ্ডৱেৰ ত্ৰুটিসমূহ চিনাক্ত কৰা হৈছিল।\n" - "ই সম্ভবত এটা চফ্টৱেৰ সমস্যা নহয়।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -944,7 +1001,36 @@ msgstr "সন্ধানহিন debuginfo নথিপত্ৰ: {0}" - msgid "All debuginfo files are available" - msgstr "সকলো debuginfo ফাইল উপলব্ধ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -954,7 +1040,7 @@ msgstr "" - "পাৰে)। যদি আপোনাৰ উত্তৰ 'নহয়' হয়, এটা স্টেক ট্ৰেইচ স্থানীয়ভাৱে সৃজন কৰা হব। " - "(ই তথ্যৰ এটা বৃহত পৰিমাণ ডাউনল'ড কৰিব পাৰে)।" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1190,7 +1276,8 @@ msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation নিচিনা একে, DumpLocation ক abrt.conf ত ধাৰ্য্য কৰা হয়। " -@@ -1201,16 +1288,18 @@ msgstr "PROBLEM ত নিষ্কাষিত তথ্য সংৰক্ষ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "সমস্যা ডাইৰেকটৰি বিশ্ব পঢ়িব পৰা কৰক" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "সমস্যা ডাইৰেকটৰিৰ সৃষ্টিকৰণক ১ প্ৰতি ছেকেণ্ডলৈ থ্ৰটল কৰক" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প্ৰিন্ট কৰি প্ৰস্থান কৰক" - -@@ -1220,9 +1309,13 @@ msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প - msgid "Failed to compile regex" - msgstr "regex কমপাইল কৰিবলে ব্যৰ্থ" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "সমস্যাক আপডেইট কৰিব নোৱাৰি: এটাতকৈ অধিক oops পোৱা গল" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1241,6 +1334,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1264,11 +1358,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1282,16 +1378,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1299,18 +1398,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1329,14 +1431,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1345,12 +1450,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1360,58 +1511,62 @@ msgstr "" - "\n" - "FILE ৰ পৰা Xorg ক্ৰেশ নিষ্কাষণ কৰক (অথবা প্ৰামাণিক ইনপুট)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "প্ৰামাণিক আউটপুটত পোৱা স্খলন তথ্য প্ৰিন্ট কৰক" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "প্ৰতিটো প্ৰাপ্ত স্খলনৰ বাবে DIR ত সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1945,7 +2100,7 @@ msgstr "NSS বন্ধ কৰিবলে ব্যৰ্থ।" - msgid "Sleeping for %d seconds" - msgstr "%d ছেকেণ্ডৰ বাবে নিদ্ৰাত" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1953,7 +2108,7 @@ msgstr "" - "ভগ্ন BIOS ৰ বাবে এটা কাৰনেল সমস্যা দেখা দিলে। দূৰ্ভাগ্যজনকভাৱে, এই ধৰণৰ\n" - "সমস্যা কাৰনেল ব্যৱস্থাপকৰ দ্বাৰা ঠিক কৰিব নোৱাৰি।" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1961,7 +2116,7 @@ msgstr "" - "এটা কাৰনেল সমস্যা দেখা দিছে, কিন্তু আপোনাৰ হাৰ্ডৱেৰ অসমৰ্থিত, সেয়েহে কাৰনেল " - "ব্যৱস্থাপকসকলে এই সমস্যা ঠিক কৰিব নোৱাৰে।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1970,24 +2125,24 @@ msgstr "" - "এটা কাৰনেল সমস্যা দেখা দিলে, কিন্তু আপোনাৰ কাৰনেল আবিলিত (flags:%s)। কাৰনেল " - "ব্যৱস্থাপকসমূহ আবিলিত সংবাদসমূহ বিশ্লেষণ কৰিবলে অক্ষম।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " লেতেৰা মডিউলসমূহ: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "বাগ আইডিসমূহৰ তালিকা" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "এটা bodhi চাৰ্ভাৰ url ধাৰ্য্য কৰক" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "এটা উন্মোচন ধাৰ্য্য কৰক" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1997,20 +2152,20 @@ msgstr "" - "\n" - "bodhi চাৰ্ভাৰত আপডেইটসমূহ সন্ধান কৰক" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "আপডেইসমূহ সন্ধান কৰা হৈছে" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "এই পেকেইজৰ বাবে কোনো আপডেইট পোৱা নগল" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "পেকেইজৰ স্থানীয় সংস্কৰণ উপলব্ধ আপডেইটসমূহতকে নতুন" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2038,66 +2193,67 @@ msgstr "প্ৰিন্ট প্ৰাপ্ত oopses" - msgid "Delete files with found oopses" - msgstr "প্ৰাপ্ত oopses ৰ সৈতে ফাইলসমূহ মচি পেলাওক" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' এ এটাতকৈ অধিক সমস্যা ডাইৰেকটৰি চিনাক্ত কৰে" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ব্যৱহাৰ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "সমস্যাসমূহ দেখুৱাওক [in DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "সমস্যা ডাইৰেকটৰি DIR আতৰাওক" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR ত সমস্যা তথ্য বিশ্লেষণ কৰি সংবাদন কৰক" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ৰ বিষয়ে তথ্য প্ৰিন্ট কৰক" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ৰিন্ট কৰক" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "একাধিক সমস্যাসমূহ প্ৰক্ৰিয়া কৰক" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "কেৱল সংবাদন-নকৰা সমস্যাবোৰ তালিকাভুক্ত কৰক" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "বিৱৰিত সংবাদ দেখুৱাওক" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকৈ শেহতীয়া সমস্যাসমূহ তালিকাভুক্ত কৰক" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পতকৈ পুৰনি সমস্যাসমূহ তালিকাভুক্ত কৰক" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2108,55 +2264,65 @@ msgstr "" - "ব্যৱহাৰকাৰী ৰূপে\n" - "'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ইয়াতকৈ ডাঙৰ লিখনীক এব্ৰিজ দেখুৱা হব" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "এই ধৰণৰ কোনো সমস্যা ডাইৰেকটৰি '%s' নাই" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "কেৱল সমস্যা গণনাক কোনো বাৰ্তা নহোৱাকৈ প্ৰিন্ট কৰক" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকে অধিক শেহতীয়া সমস্যাসমূহ প্ৰিন্ট কৰক" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT এ %u সমস্যা(সমূহ) চিনাক্ত কৰিছে। অধিক তথ্যৰ বাবে চলাওক: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' মচি পেলোৱা হৈছে" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "আৰু [options] DIR সংবাদন কৰক..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "সংবাদন কৰাৰ পিছত PROBLEM_DIR আতৰাওক" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' মচি পেলোৱা হৈছে" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "কাৰ্য্যসমূহ: remove(rm), info(i), skip(s):" -@@ -2167,27 +2333,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "কাৰ্য্যসমূহ: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' সংবাদন কৰা" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "পৰৱৰ্তী সমস্যাৰ বাবে ENTER টিপক:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since তৰ্ক নাথাকিলে, সকলো চিনাক্ত কৰা সমস্যাবোৰ পুনৰাবৃত্তি হয়।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "কেৱল টাইমস্টাম্পৰ পিছত চিনাক্ত কৰা সমস্যাবোৰ নিৰ্বাচন কৰে" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ast.po b/po/ast.po -index fa46b52..1b75f51 100644 ---- a/po/ast.po -+++ b/po/ast.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/ast/)\n" - "Language: ast\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informe" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bg.po b/po/bg.po -index 80dfd29..5205c5c 100644 ---- a/po/bg.po -+++ b/po/bg.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/bg/)\n" - "Language: bg\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,102 +28,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Не мога да взема собствеността на '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Съобщи" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -133,6 +133,17 @@ msgstr "" - "\n" - "Аплет, известяващ потребителя, когато нов проблем бъде открит от ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -154,7 +165,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -187,30 +200,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -236,14 +261,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -255,11 +280,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Директория с проблема" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Конфигурационен файл" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -273,24 +298,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [опции]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Запис в системния журнал" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Добавяй имената на програмите в записа" - -@@ -298,60 +324,50 @@ msgstr "Добавяй имената на програмите в записа" - msgid "Unknown error" - msgstr "Непозната грешка" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' не е валидна директория с проблем" -+msgid "'%s' is not a valid element name" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' не е валидна директория с проблем" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Неупълномощен" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -361,12 +377,12 @@ msgstr "" - "Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, " - "собственик на името.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Изход след NUM секунди бездействие" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Тази програма трябва да бъде стартирана като root." - -@@ -387,18 +403,22 @@ msgstr "Да не преминава в режим демон" - msgid "Log to syslog even with -d" - msgstr "Записвай в системния журнал дори и при -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Стартирай EVENT върху DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -428,73 +448,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -506,68 +527,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -591,18 +612,26 @@ msgstr "Не мога да chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Изтриването на директория с проблем се провали: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Не мога да получа списъка проблеми от abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -647,7 +676,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Разбора на обратното проследяване за %s се провали" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -741,12 +770,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -860,14 +921,43 @@ msgstr "Липсващ debuginfo файл: {0}" - msgid "All debuginfo files are available" - msgstr "Всички debuginfo файлове са на разположение" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1090,7 +1180,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Също като -d DumpLocation, DumpLocation е зададено в abrt.conf" - -@@ -1100,16 +1191,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Направи директорията с проблема достъпна за четене от всички" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Отпечатва търсените низове на стандартния изход и излиза" - -@@ -1118,8 +1211,12 @@ msgstr "Отпечатва търсените низове на стандарт - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1139,6 +1236,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1162,11 +1260,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1180,16 +1280,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1197,18 +1300,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1227,14 +1333,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1243,12 +1352,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1258,58 +1413,62 @@ msgstr "" - "\n" - "Извлечи Xorg срива от FILE (или стандартния вход)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Отпечатай намерените данни за срив на стандартния изход" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1838,19 +1997,19 @@ msgstr "Провал при изключване на NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1859,24 +2018,24 @@ msgstr "" - "Възникна проблем в ядрото, но ядрото Ви е опорочено (флагове:%s). " - "Поддържащите ядрото не могат да диагностицират проблеми в такива ядра." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Списък id-та на бъгове" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Задайте url на bodhi сървър" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Задайте издание" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1886,20 +2045,20 @@ msgstr "" - "\n" - "Търси за обновления в bodhi сървър" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Търсене на обновления" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Няма намерени обновления за този пакет" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Версията на локалния пакет е по-нова от наличните обновления" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1921,65 +2080,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Употреба: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Премахни директорията с проблем DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Анализирай и рапортувай данните за проблем в DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Отпечатай информация за DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Покажи детайлен рапорт" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1987,49 +2147,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2038,24 +2208,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bn.po b/po/bn.po -index 7584e3c..d50e4aa 100644 ---- a/po/bn.po -+++ b/po/bn.po -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -25,7 +25,7 @@ msgstr "" - "language/bn/)\n" - "Language: bn\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -35,102 +35,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "রিপোর্ট" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -141,6 +141,17 @@ msgstr "" - "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " - "অ্যাপ্লেট\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -162,7 +173,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -195,30 +208,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -244,14 +269,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -263,11 +288,11 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যাযুক্ত ডিরেক্টরি" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "কনফিগারেশন ফাইল" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -281,24 +306,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" - -@@ -306,60 +332,50 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -367,12 +383,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -393,18 +409,22 @@ msgstr "ডেমন তৈরি করা হবে না" - msgid "Log to syslog even with -d" - msgstr "-d সহযোগেও syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -434,73 +454,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -512,68 +533,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -597,18 +618,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -653,7 +682,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -748,12 +777,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -868,14 +929,43 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" - msgid "All debuginfo files are available" - msgstr "সকল debuginfo ফাইল উপলব্ধ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1095,7 +1185,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " -@@ -1107,16 +1198,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1125,8 +1218,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1146,6 +1243,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1169,11 +1267,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1187,16 +1287,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1204,18 +1307,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1234,14 +1340,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1250,70 +1359,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1840,19 +1999,19 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1861,44 +2020,44 @@ msgstr "" - "কার্নেলে সমস্যা দেখা দিয়েছে, কিন্তু আপনার কার্নেল চিহ্নযুক্ত (flags:%s) " - "হয়েছে। কার্নেল রক্ষণাবেক্ষণকারী চিহ্নযুক্ত রিপোর্টের সমাধান করতে অক্ষম।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1920,65 +2079,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1986,49 +2146,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2037,24 +2207,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bn_IN.po b/po/bn_IN.po -index c42d4ba..5f6d6df 100644 ---- a/po/bn_IN.po -+++ b/po/bn_IN.po -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -26,7 +26,7 @@ msgstr "" - "abrt/language/bn_IN/)\n" - "Language: bn-IN\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -36,102 +36,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "সূচনাবার্তা বন্ধ করতে ব্যর্থ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "রিপোর্ট" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -142,6 +142,17 @@ msgstr "" - "ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " - "অ্যাপ্লেট\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -162,18 +173,15 @@ msgstr "সংক্ষিপ্ত রিপোর্টিং" - msgid "Silent shortened reporting" - msgstr "নীরব সংক্ষিপ্ত রিপোর্টিং" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"স্ট্যাক ট্রেস প্রস্তুত করতে কোর-ডাম্প ফাইল প্রয়োজনীয় যা সময় এবং স্থান " --"সাপেক্ষ এক কাজ। ABRT একটি পরিষেবা প্রদান করে, যা কোর-ডাম্প থেকে স্ট্যাক " --"ট্রেস প্রস্তুত করে কিন্তু অাপনাকে পরিষেবায় কোর-ডাম্প অাপলোড করতে হবে। এই " --"বিকল্প নিষ্ক্রিয় অবস্থায়, ABRT জিঞ্জাসা না করেই কোর-ডাম্প অাপলোড করবে।" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -221,29 +229,24 @@ msgstr "" - " এই বিকল্প সক্রিয় অবস্থায়, ABRT কখনও রিপোর্ট করা সমস্যাগুলির বিজ্ঞপ্তিগুলি " - "দেখাবে না। সংক্ষিপ্ত রিপোর্টিং সক্রিয় থাকলে তবেই কার্যকর হয়।" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "কোর-ডাম্প অাপলোড করার অাগে জিজ্ঞাসা করুন" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "সংবেদনশীল তথ্যের জন্য ব্যক্তিগত টিকিটের অনুরোধ জানান" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "অসম্পূর্ণ সমস্যাগুলি জানান" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -253,6 +256,22 @@ msgstr "" - "করা হয়েছে। মূল্যবান সমস্যার রিপোর্ট প্রদান করতে, ABRT অাপনাকে এই সমস্যাগুলি " - "জমা দেওয়ার অনুমতি দেবে না।" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -279,14 +298,14 @@ msgstr "সম্বন্ধে" - msgid "Quit" - msgstr "প্রস্থান করুন" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -298,11 +317,11 @@ msgstr "" - msgid "Problem directory" - msgstr "সমস্যাযুক্ত ডিরেক্টরি" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "কনফিগারেশন ফাইল" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -316,24 +335,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" - -@@ -341,61 +361,51 @@ msgstr "লগের মধ্যে প্রোগ্রামের নাম - msgid "Unknown error" - msgstr "অজানা ত্রুটি" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' উপাদান সংশোধন করা যায় না" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "অনুমোদিত নয়" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "সংশোধনের জন্য সমস্যা অ্যাক্সেস করা যায় না" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' উপাদান সংশোধন করা যায় না" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' এর মাপ পাওয়া যায় না" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "কোনো সমস্যা স্পেস পড়ে নেই" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -405,12 +415,12 @@ msgstr "" - "'%s' নামটি হারিয়ে গেছে, অনুগ্রহ করে পরীক্ষা করুন এই নাম ধারণকারী অন্য কোনো " - "পরিসেবা চলছে কি না।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "এই প্রোগ্রামটি শুধুমাত্র root পরিচয়ে সঞ্চালন করা আবশ্যক" - -@@ -436,18 +446,22 @@ msgstr "ডেমন তৈরি করা হবে না" - msgid "Log to syslog even with -d" - msgstr "-d সহযোগেও syslog-এ লগ করা হবে" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ব্যবহারকারীর সাথে সরাসরি যোগাযোগ করুন" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -487,90 +501,91 @@ msgstr "একসাথে উদ্ভূত ওয়ার্কারের - msgid "Maximal cache size in MiB. Default is " - msgstr "সর্বাধিক ক্যাশে মাপ MiB এ। ডিফল্ট হল" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "প্রমাণীকরণ বন্ধ করে" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support ব্যবহারকারীর নাম" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support পাসওয়ার্ড, দেওয়া না থাকলে, তা দিতে বলা হবে" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL শংসাপত্রের পাথ বা শংসাপত্রের ধরন" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "অাপনাকে --password -এর জন্য --username ও নির্দিষ্ট করতে হবে" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - "অাপনি --username বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - "অাপনি --username বা --anonymous -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - "অাপনি --anonymous বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "অজানা বিকল্প মান: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "পাসওয়ার্ড:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "পাসওয়ার্ড না দিয়ে এগিয়ে যেতে পারবেন না\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL ক্লায়েন্ট প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Saibal Ray --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "বেনামে স্বয়ংক্রিয় ভাবে জানানো" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -590,83 +605,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "একটি ডিরেক্টরি নয়: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্ল্যাশ দিয়ে শুরু)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ডট দিয়ে শুরু)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (বিশিষ্ট ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্পেস রয়েছে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ট্যাব রয়েছে)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ডিরেক্টরি '{0}'-এ পরিবর্তন করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "অজানা ফাইল ধরন: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' -এ ওয়ার্কিং ডিরেক্টরি তৈরি করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}', '{1}' -এ সরানো সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}', '{1}'-এ অনুলিপি করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}'-এ যাচাইকরণ ত্রুটি" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' অান-প্যাক করা হচ্ছে" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ডিরেক্টরি তৈরি করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' অান-প্যাক করা সম্ভব নয়" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' সফল ভাবে প্রক্রিয়া করা হয়েছে" - -@@ -690,18 +705,26 @@ msgstr "'%s'-কে chown করতে ব্যর্থ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "সমস্যাপূর্ণ ডিরেক্টি মুছে ফেলতে ব্যর্থ: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -747,7 +770,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ক্র্যাশ থ্রেড খুঁজে পাওয়া যায়নি" - -@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" - msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -862,6 +885,38 @@ msgstr "" - "কার্নেল লগ সূচিত করছে যে হার্ডওয়্যার ত্রুটি সনাক্ত করা হয়েছে।\n" - "এটি খুব সম্ভবত কোনো সফ্টওয়্যার সমস্যা নয়।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -979,7 +1034,36 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" - msgid "All debuginfo files are available" - msgstr "সকল debuginfo ফাইল উপলব্ধ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -989,7 +1073,7 @@ msgstr "" - "বলা হলে স্থানীয় অবস্থানে স্ট্যাক ট্রেস প্রস্তুত করা হবে। (এর ফলে অনেক পরিমাণ " - "তথ্য ডাউনলোড করা হবে)।" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1228,7 +1312,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " -@@ -1240,16 +1325,18 @@ msgstr "বের করে নিয়ে অাসা তথ্য PROBLEM এ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, সেকেন্ড প্রতি 1" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "অনুসন্ধানের পংক্তিগুলি stdout-এ প্রদর্শন করে প্রস্থান করা হবে" - -@@ -1259,9 +1346,13 @@ msgstr "অনুসন্ধানের পংক্তিগুলি stdout- - msgid "Failed to compile regex" - msgstr "regex একত্রিত করতে ব্যর্থ হয়েছে" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1280,6 +1371,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1303,11 +1395,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1321,16 +1415,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1338,18 +1435,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1368,14 +1468,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1384,12 +1487,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1399,58 +1548,62 @@ msgstr "" - "\n" - "Extract Xorg crash from FILE (or standard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "বিপর্যয় সম্বন্ধে প্রাপ্ত তথ্য স্ট্যান্ডার্ড আউটপুটে প্রিন্ট করা হবে" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "খুঁজে পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ সমস্যা ডিরেক্টরি তৈরি করুন" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1987,7 +2140,7 @@ msgstr "NSS বন্ধ করতে ব্যর্থ।" - msgid "Sleeping for %d seconds" - msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1995,7 +2148,7 @@ msgstr "" - "ভাঙা BIOS এর কারণে একটি কার্নেল সমস্যা দেখা দিয়েছে। দুর্ভাগ্যবশতঃ, এই ধরনের " - "সমস্যা কার্নেল রক্ষণাবেক্ষণকারীদের দ্বারা সারানো সম্ভব নয়।" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2003,7 +2156,7 @@ msgstr "" - "একটি কার্নেল সমস্যা দেখা দিয়েছে, কিন্তু অাপনার হার্ডওয়্যার অসমর্থিত, তাই " - "কার্নেল রক্ষণাবেক্ষণকারীরা তা সারাতে অপরাগ।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2013,24 +2166,24 @@ msgstr "" - "টেইন্ট হয়েছে (flags:%s)। Kernel-র পরিচালকরা টেইন্ট হওয়া kernel-র রিপোর্ট " - "থেকে সমস্যার কারণ নির্ণয় করতে সক্ষম হবেন না।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " টেন্টেড মডিউল: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "বাগ ID-র তালিকা" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "একটি bodhi সার্ভার url নির্ধারণ করুন" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "একটি রিলিজ সংখ্যা নির্ধারণ করুন" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2040,22 +2193,22 @@ msgstr "" - "\n" - "Search for updates on bodhi server" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "আপডেট অনুসন্ধান করা হচ্ছে" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "এই প্যাকেজের কোনো আপডেট পাওয়া যায়নি" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "উপলব্ধ প্যাকেজের সংস্করণের তুলনায় নতুন প্যাকেজ স্থানীয় মেশিনে উপস্থিত " - "রয়েছে" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2082,70 +2235,71 @@ msgstr "পাওয়া oopses মুদ্রণ করুন" - msgid "Delete files with found oopses" - msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগুলি মুছুন" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "সমস্যাগুলি তালিকাভুক্ত করুন [DIRs-এ]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "একাধিক সমস্যাগুলি প্রক্রিয়া করুন" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "শুধুমাত্র না জানানো সমস্যা তালিকাভুক্ত করুন" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র " - "তালিকাভুক্ত করুন" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2156,56 +2310,66 @@ msgstr "" - "বিশেষাধিকার থাকা ব্যবহারকারী সমেত\n" - "'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "এর থেকে বড় পাঠ্য সংক্ষিপ্ত করে দেখানো হবে" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "কোনো '%s' সমস্যা ডিরেক্টরি নেই" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "কোনো বার্তা ছাড়া শুধুমাত্র সমস্যা গণনা মুদ্রণ করুন" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ " - "করুন" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u সমস্য সনাক্ত করেছে। অারো তথ্যের জন্য চালনা করুন: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' মোছা হচ্ছে" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& রিপোর্ট [বিকল্প] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "রিপোর্ট করার পরে PROBLEM_DIR সরান" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' মোছা হচ্ছে" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "অ্যাকশন: remove(rm), info(i), skip(s):" -@@ -2216,28 +2380,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "অ্যাকশন: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' রিপোর্ট করা হচ্ছে" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "পরবর্তী সমস্যার জন্য ENTER টিপুন:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "শুধুমাত্র টাইম-স্ট্যাম্পের পরে সনাক্ত করা সমস্যাগুলি নির্বাচন করে" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/bs.po b/po/bs.po -index ebef881..6974aea 100644 ---- a/po/bs.po -+++ b/po/bs.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "Language: bs\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Izvještaj" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -153,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -186,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -235,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -254,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfiguracijska datoteka" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -272,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Zapiši u syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Dodaj nazive programa u zapis" - -@@ -297,60 +323,50 @@ msgstr "Dodaj nazive programa u zapis" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "Nemoj deamonizirati" - msgid "Log to syslog even with -d" - msgstr "Zapiši u syslog čak i sa -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Prolazak kroz funkcijski trag nije uspjelo za %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1787,63 +1946,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1865,65 +2024,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1931,49 +2091,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1982,24 +2152,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ca.po b/po/ca.po -index 8a4dadb..7b320e5 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -8,20 +8,21 @@ - # Josep Torné , 2014 - # Robert Antoni Buj Gelonch , 2014. #zanata - # Robert Antoni Buj Gelonch , 2015. #zanata -+# Robert Antoni Buj Gelonch , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-28 03:29-0400\n" -+"PO-Revision-Date: 2016-01-25 06:37-0500\n" - "Last-Translator: Robert Antoni Buj Gelonch \n" - "Language-Team: Catalan \n" - "Language: ca\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,34 +32,34 @@ msgstr "Presentació d'informes del problema" - msgid "View and report application crashes" - msgstr "Visualitzeu i informeu de les fallides en les aplicacions" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "No es pot ser el propietari de '%s'" -+msgstr "No es pot ser el propietari de «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "No es pot obrir el directori per a l'escriptura '%s'" -+msgstr "No es pot obrir el directori per a l'escriptura «%s»" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "No es pot tancar la notificació: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informa" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Reinicia" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -67,7 +68,7 @@ msgstr "" - "Ho sentim, sembla que %s ha tingut pana. El problema ha estat informat " - "automàticament." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -76,26 +77,26 @@ msgstr "" - "Ho sentim, sembla que %s ha tingut pana. El problema serà informat que hi " - "hagi disponible una connexió a Internet." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - "Ho sentim, sembla que %s ha tingut pana. Si us plau, poseu-vos en contacte " --"amb el desenvolupador si voleu informar-li d'aquesta incidència." -+"amb el desenvolupador si voleu informar-lo d'aquesta incidència." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" --"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a què es solucioni, " --"si us plau envieu un informe." -+"Ho sentim, sembla que %s ha tingut pana. Si voleu ajudar a solucionar-ho, si " -+"us plau, envieu un informe." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -103,7 +104,7 @@ msgstr "" - "Ho sentim, sembla que hi va haver un problema amb un component. El problema " - "ha estat informat automàticament." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -111,36 +112,36 @@ msgstr "" - "Ho sentim, sembla que hi va haver un problema amb un component. El problema " - "serà informat que hi hagi disponible una connexió a Internet." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - "Ho sentim, sembla que hi va haver un problema amb un component. Si voleu " --"ajudar a què es solucioni, si us plau envieu un informe." -+"ajudar a solucionar-ho, si us plau, envieu un informe." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "No es pot mostrar la notificació: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "No es pot llegir des del canal gio: '%s'" -+msgstr "No es pot llegir des del canal gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "No es pot establir la codificació en el canal gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "No es pot engegar el mode no-bloquejant per al canal gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -151,6 +152,17 @@ msgstr "" - "Miniaplicació que notifica a l'usuari d'un nou problema detectat per " - "l'ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Pregunta abans de robar un directori" -@@ -172,13 +184,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"El fitxer del bolcat de memòria és necessari per generar la traça de la " --"pila, que és una operació que consumeix temps i espai. L'ABRT proporciona un " --"servei que genera la traça de la pila des del bolcat de memòria, però heu de " --"pujar el bolcat de memòria a aquest servei. Amb aquesta opció inhabilitada " --"l'ABRT pujarà el bolcat de memòria sense preguntar." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -200,10 +209,10 @@ msgid "" - "uReports are sent automatically immediately after problem detection." - msgstr "" - "L'uReport és la descripció breu i completament anònima d'un problema. L'ABRT " --"utilitza els uReport per a la ràpida detecció de duplicats a nivell global. " --"En la configuració per defecte l'uReport és enviat al començament del procés " --"de presentació d'informes. Amb aquesta opció habilitada els uReports són " --"enviats automàticament tot just després de la detecció del problema." -+"utilitza els uReport per a la ràpida detecció global de duplicats. En la " -+"configuració per defecte l'uReport és enviat al començament del procés " -+"informador. Amb aquesta opció habilitada els uReports són enviats " -+"automàticament tot just després de la detecció del problema." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" -@@ -226,10 +235,6 @@ msgstr "" - "d'informes reduïts." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Pregunta abans de pujar un bolcat de memòria" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -237,24 +242,40 @@ msgstr "" - "Amb aquesta opció habilitada l'ABRT sempre crea el tiquet de l'error amb " - "accés restringit si es detecten possibles dades sensibles." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "Sol·licita un tiquet privat per a informació sensible" -+msgstr "Sol·licita un tiquet privat per a la informació sensible" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifica problemes incomplets" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" --"El problemes incomplets es detecten mentre l'ordinador s'està aturant o " -+"Els problemes incomplets es detecten mentre l'ordinador s'està aturant o " - "s'està tancant la sessió d'un usuari. A fi de proporcionar informes de " - "problemes valuosos, l'ABRT no us permetrà enviar aquests problemes." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Tanca" -@@ -280,7 +301,7 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Surt" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -291,7 +312,7 @@ msgstr "" - "Consulta a la base de dades dels paquets i desa el nom del paquet i del " - "component" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -303,11 +324,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Directori del problema" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Fitxer de configuració" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Utilitza aquest directori com a l'arrel dels RPM" - -@@ -323,24 +344,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "El directori arrel per a l'execució de les ordres del contenidor" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcions]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" --msgstr "Utilitza el NUM com a uid de client" -+msgstr "Utilitza el NÚM com a uid de client" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Enregistra a syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Afegeix els noms dels programes al registre" - -@@ -348,77 +370,67 @@ msgstr "Afegeix els noms dels programes al registre" - msgid "Unknown error" - msgstr "Error desconegut" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' no es un directori del problema vàlid" -+msgid "'%s' is not a valid element name" -+msgstr "«%s» no és un nom d'element vàlid" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "L'element '%s' no es pot modificar " -+msgid "'%s' is not a valid problem directory" -+msgstr "«%s» no és un directori del problema vàlid" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "No autoritzat" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "No es pot accedir al problema per a la notificació" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "L'element «%s» no es pot modificar " - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Error en canviar el propietari del directori. Reviseu els registres del " - "sistema per a més detalls." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "No es pot accedir a la lectura del problema" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' no és un nom d'element vàlid" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "No es pot obtenir la mida de '%s'" -+msgstr "No es pot obtenir la mida de «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "No queda espai per al problema" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "No es pot eliminar l'element '%s' del directori del problema '%s'" -+msgstr "No es pot eliminar l'element «%s» del directori del problema «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"S'ha perdut el nom '%s', comproveu que no s'estigui executant un altre " -+"S'ha perdut el nom «%s», comproveu que no s'estigui executant un altre " - "servei que sigui el propietari del nom.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" --msgstr "Surt després de NUM segons d'inactivitat" -+msgstr "Surt després de NÚM segons d'inactivitat" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Aquest programa cal executar-lo com a root." - -@@ -445,24 +457,28 @@ msgstr "No en facis un dimoni" - msgid "Log to syslog even with -d" - msgstr "Enregistra a syslog inclús amb -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "Executa EVENT a DIR" -+msgstr "Executa l'ESDEVENIMENT al DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comuniqueu-vos directament amb l'usuari" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" - msgstr "" - "No hi ha cap treballador lliure i la memòria intermèdia està plena. S'està " --"ometent l'arxiu '%s'" -+"ometent l'arxiu «%s»" - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -475,7 +491,7 @@ msgid "" - "If UPLOAD_DIRECTORY is not provided, uses a value of\n" - "WatchCrashdumpArchiveDir option from abrt.conf" - msgstr "" --"& [-vs] [-w NUM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" -+"& [-vs] [-w NÚM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" - "\n" - "\n" - "Observa el DIRECTORI_DE_PUJADA i desempaqueta els arxius d'entrada al " -@@ -491,81 +507,82 @@ msgstr "Endimonia" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "El nombre de treballs concurrents. Per defecte són " -+msgstr "El nombre de treballs concurrents. El valor per defecte és " - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "La mida màxima de la memòria cau en MiB. Per defecte són " -+msgstr "La mida màxima de la memòria cau en MiB. El valor per defecte és " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Desactiva l'autenticació" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "nom d'usuari del Red Hat Support" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" --"Contrasenya de Red Hat Support, si no es proporciona se us preguntarà per " -+"Contrasenya de Red Hat Support, si no es proporciona, se us preguntarà per " - "ella" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Els camins als certificats SSL de l'uReport o el tipus de certificat" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "També heu d'especificar --username per a --password" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Podeu utilitzar tant --username com --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Podeu utilitzar tant --username com --anonymous" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Podeu utilitzar tant --anonymous com --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "El nombre d'arguments no és vàlid" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Valor d'opció desconeguda: '%s'\n" -+msgstr "Valor d'opció desconeguda: «%s»\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Contrasenya:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "No es pot continuar sense la contrasenya\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "presentació automàtica d'informes d'HTTP autentificat" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "presentació automàtica d'informes de client autentificat SSL" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "presentació anònima dels informes" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -584,68 +601,68 @@ msgstr "" - " UPLOAD_DIR - Directori on són emmagatzemats els arxius pujats\n" - " FILENAME - Nom del fitxer de l'arxiu pujat\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "No és un directori: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "S'està ometent: '{0}' (comença amb barra invertida)" -+msgstr "S'ignora: '{0}' (comença amb barra invertida)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "S'està ometent: '{0}' (comença amb punt)" -+msgstr "S'ignora: '{0}' (comença amb punt)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "S'està ometent: '{0}' (conté ..)" -+msgstr "S'ignora: '{0}' (conté ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "S'està ometent: '{0}' (conté espai)" -+msgstr "S'ignora: '{0}' (conté espai)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "S'està ometent: '{0}' (conté tabulador)" -+msgstr "S'ignora: '{0}' (conté tabulador)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "No es pot canviar el directori '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipus de fitxer desconegut: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "No es pot crear el directori de treball en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "No es pot moure '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "No es pot copiar '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Error de verificació en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "S'està desempaquetant '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "No es pot crear el directori '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "No es pot desempaquetar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' s'ha processat amb èxit" - -@@ -662,33 +679,41 @@ msgstr "No es pot connectar al DBus del sistema: %s" - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "No es pot canviar el propietari '%s': %s" -+msgstr "No es pot canviar el propietari «%s»: %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" - msgstr "Error en eliminar el directori del problema: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "No es pot obtenir el llistat de problemes des de l'abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "No es pot provar si l'element existeix sobre l'abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "No es pot crear el fitxer temporal '%s'" -+msgstr "No es pot crear el fitxer temporal «%s»" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -696,14 +721,14 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"No es pot escriure en '%s'. El problema '%s' no es traurà dels problemes " --"ignorats '%s'" -+"No es pot escriure en «%s». El problema «%s» no es traurà dels problemes " -+"ignorats «%s»" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" --msgstr "No es pot reanomenar '%s' a '%s'. Error en eliminar el problema '%s'" -+msgstr "No es pot reanomenar «%s» a «%s». Error en eliminar el problema «%s»" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 - msgid "" -@@ -728,7 +753,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Error en analitzar la traça inversa per %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "No s'ha trobat el fil d'execució de la pana" - -@@ -740,18 +765,18 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID del bolcat de memòria en el directori del problema " -+"Calcula i desa l'UUID del bolc de la memòria en el directori del problema " - "DIR" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "S'està analitzant el bolcat de memòria '%s'" -+msgstr "S'està analitzant el bolc de la memòria «%s»" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format - msgid "Missing build id: %s" --msgstr "Falta l'Id. de la contrucció: %s" -+msgstr "Falta l'id. de la construcció: %s" - - #: ../src/plugins/abrt-action-analyze-core.in:142 - #, c-format -@@ -770,7 +795,8 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID i el DUPHASH per al directori del problema oops DIR" -+"Calcula i desa l'UUID i el DUPHASH per al directori DIR del problema de " -+"l'oops" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 - msgid "" -@@ -793,12 +819,12 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID i el DUPHASH per al directori del problema xorg DIR" -+"Calcula i desa l'UUID i el DUPHASH per al directori del problema xorg DIR" - - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "El mòdul '%s' estava carregat - no s'informarà d'aquesta pana" -+msgstr "El mòdul «%s» estava carregat - no s'informarà d'aquesta pana" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -808,7 +834,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula i desa el UUID i el DUPHASH dels bolcats de les panes de Python" -+"Calcula i desa l'UUID i el DUPHASH dels bolcs de les panes de Python" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" -@@ -820,7 +846,7 @@ msgstr "El fitxer {0} no existeix" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" --msgstr "S'estan extraient el text dels ops des del nucli" -+msgstr "S'estan extraient el text de l'oops des del nucli" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" -@@ -830,13 +856,13 @@ msgstr "No es pot processar {0}:\n" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "No es pot extraure el missatge oops: '{0}'" -+msgstr "No es pot extraure el missatge de l'oops: '{0}'" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "El text dels oop s'ha extret am èxit" -+msgstr "El text de l'oops s'ha extret amb èxit" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -845,6 +871,38 @@ msgstr "" - "de maquinari.\n" - "El més probable és que no sigui un problema de programari.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -853,7 +911,7 @@ msgid "" - msgstr "" - "& [opcions] -d DIR\n" - "\n" --"Analitza el bolcat de memòria en el directori del problema DIR, genera i " -+"Analitza el bolc de la memòria en el directori del problema DIR, genera i " - "desa la traça inversa" - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 -@@ -862,7 +920,7 @@ msgstr "Directoris debuginfo addicionals" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "Mata al gdb si s'executa més de NUM segons" -+msgstr "Mata al gdb si s'executa més de NÚM segons" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -880,7 +938,7 @@ msgid "" - msgstr "" - "& [-v] [-r] -d DIR\n" - "\n" --"Crea una traça inversa a nivell de bolcat de memòria des del bolcat de " -+"Crea una traça inversa a escala de bolc de la memòria des del bolc de la " - "memòria i el corresponent binari" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 -@@ -946,7 +1004,7 @@ msgstr "" - "Es llegeix la configuració de /etc/abrt/plugins/CCpp.conf\n" - "\n" - " -v Mostra informació detallada\n" --" -y No interactiu, assumeix 'Si' a totes les preguntes\n" -+" -y No interactiu, s'assumeix 'Sí' a totes les preguntes\n" - " --ids Per defecte: build_ids\n" - " --tmpdir Per defecte: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "RANDOM_SUFFIX\n" -@@ -954,7 +1012,7 @@ msgstr "" - " --size_mb Per defecte: 4096\n" - " --pkgmgr Per defecte: PackageManager des de CCpp.conf o 'dnf'\n" - " -e,--exact Baixa tan sols els paquets especificats\n" --" --repo Patró a utilitzar quan es cerquen dipòsits.\n" -+" --repo Patró a utilitzar quan se cerquen dipòsits.\n" - " Per defecte: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 -@@ -964,7 +1022,7 @@ msgstr "No es pot obrir {0}: {1}" - #: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" --"El bolcat de memòria fa referència a {0} fitxers debuginfo, {1} dels quals " -+"El bolc de la memòria fa referència a {0} fitxers debuginfo, {1} dels quals " - "no estan instal·lats" - - #: ../src/plugins/abrt-action-install-debuginfo.in:215 -@@ -976,7 +1034,7 @@ msgstr "{0} dels fitxers debuginfo no estan instal·lats" - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "configuració no vàlida del complement CCpp, el gestor de paquets no està " --"suportat: '%s'" -+"suportat: «%s»" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -990,24 +1048,53 @@ msgstr "Falta el fitxer debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Tots els fitxers debuginfo estan disponibles" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" --"Esteu d'acord en pujar el bolcat de memòria? (Pot contenir dades sensibles). " --"Si la vostra resposta és 'No' aleshores es generà localment una traça de la " --"pila. (pot baixar una gran quantitat de dades)." -+"Esteu d'acord en pujar el bolc de la memòria? (Pot contenir dades sensibles)." -+" Si la vostra resposta és «No», aleshores es generà localment una traça de " -+"la pila. (pot baixar una gran quantitat de dades)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." - msgstr "" --"Voleu generar a nivell local una traça de la pila? (Es poden baixar una gran " --"quantitat de dades, però la presentació d'informes no pot continuar sense la " --"traça de la pila)." -+"Voleu generar localment una traça de la pila? (Pot baixar una gran quantitat " -+"de dades, però la presentació d'informes no pot continuar sense la traça de " -+"la pila)." - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -1038,12 +1125,12 @@ msgstr "Preserva aquest directori" - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "Incapaç d'iniciar '%s', el missatge d'error va ser: '%s'" -+msgstr "Incapaç d'iniciar «%s», el missatge d'error va ser: «%s»" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "No és un número al fitxer '%s'" -+msgstr "No és un número al fitxer «%s»" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format -@@ -1053,8 +1140,8 @@ msgstr "Ús: %s [-v]" - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" --"No s'ha pogut obtenir el directori de treball actual com probablement hagi " --"estat eliminat" -+"No s'ha pogut obtenir el directori de treball actual, probablement es va " -+"eliminar" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" -@@ -1075,15 +1162,15 @@ msgstr "El reporter-ureport va fer fallida amb el codi de sortida %d" - - #: ../src/plugins/abrt-gdb-exploitable:529 - msgid "Signal sent by userspace code" --msgstr "Senyal enviada pel codi de l'espai d'usuari" -+msgstr "Senyal enviat pel codi de l'espai d'usuari" - - #: ../src/plugins/abrt-gdb-exploitable:533 - msgid "Signal sent by timer/IO/async event" --msgstr "Senyal enviada per l'esdeveniment timer/IO/async" -+msgstr "Senyal enviat per l'esdeveniment timer/IO/async" - - #: ../src/plugins/abrt-gdb-exploitable:541 - msgid "Signal has siginfo.si_code = SI_USER" --msgstr "La senyal té siginfo.si_code = SI_USER" -+msgstr "El senyal té siginfo.si_code = SI_USER" - - #: ../src/plugins/abrt-gdb-exploitable:544 - msgid "Signal due to write to closed pipe" -@@ -1092,22 +1179,22 @@ msgstr "Senyal a causa de l'escriptura en una canonada tancada" - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "Senyal enviada pel tecla" -+msgstr "Senyal enviat pel teclat" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 - msgid "Job control signal sent by kernel" --msgstr "Senyal de control de treball enviada pel nucli del sistema operatiu" -+msgstr "Senyal de control de treball enviat pel nucli del sistema operatiu" - - #: ../src/plugins/abrt-gdb-exploitable:558 - #: ../src/plugins/abrt-gdb-exploitable:587 - msgid "Signal sent by window resize" --msgstr "Senyal enviada pel redimensionament de la finestra" -+msgstr "Senyal enviat pel redimensionament de la finestra" - - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "Senyal enviada per l'expiració d'alarm(N)" -+msgstr "Senyal enviat per l'expiració d'alarm(N)" - - #: ../src/plugins/abrt-gdb-exploitable:583 - msgid "Signal due to write to broken pipe" -@@ -1147,7 +1234,7 @@ msgstr "Instrucció il·legal (salta a una adreça aleatòria?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" --msgstr "Senyal relacionada amb cap pana" -+msgstr "Senyal relacionat amb cap pana" - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" -@@ -1216,12 +1303,12 @@ msgid "" - msgstr "" - "& [-vusoxm] [-d DIR]/[-D] [FITXER]\n" - "\n" --"Extreu els oop des del FITXER (o entrada estàndard)" -+"Extreu els oops del FITXER (o entrada estàndard)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" --msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" -+msgstr "Imprimeix els oops que s'han trobat en la sortida estàndard" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users -@@ -1230,12 +1317,13 @@ msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" --"Crea el nou directori del problema al DIR per a cadascun dels oop trobats" -+"Crea el nou directori del problema en DIR per a cadascun dels oops trobats" - - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "El mateix que -d DumpLocation, DumpLocation s'especifica en abrt.conf" - -@@ -1245,16 +1333,18 @@ msgstr "Desa la informació extreta en PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Fes que el directori del problema el pugui llegir tot el món" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Regula la creació del directori del problema a 1 per segon" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" - -@@ -1263,14 +1353,18 @@ msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" - msgid "Failed to compile regex" - msgstr "Error en compilar l'expressió regular" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "No es pot actualitzar el problema: s'han trobat més d'un oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "Ha fallat l'obtenció de tota la informació solicitada del journald" -+msgstr "Ha fallat l'obtenció de tota la informació sol·licitada del journald" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 -@@ -1286,6 +1380,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Error en inicialitzar l'observació de systemd-journal" - -@@ -1304,7 +1399,7 @@ msgid "" - msgstr "" - "& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" - "\n" --"Extreu els bolcats de memòria des de systemd-journal\n" -+"Extreu els bolcs de la memòria des de systemd-journal\n" - "\n" - "les opcions -c i -e entren en conflicte perquè ambdós especifiquen la " - "lectura del primer missatge.\n" -@@ -1318,18 +1413,20 @@ msgstr "" - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" --"Crea un nou directori del problema al DIR per a cadascun dels bolcats de " -+"Crea un nou directori del problema al DIR per a cadascun dels bolcs de la " - "memòria" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "Inicia la lectuta de systemd-journal des de la posició del CURSOR" -+msgstr "Inicia la lectura de systemd-journal des de la posició del CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "Inicia la lectuta de systemd-journal des del final" -+msgstr "Inicia la lectura de systemd-journal des del final" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" -@@ -1341,17 +1438,20 @@ msgstr "El mateix que -t INT, INT s'especifica en plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Segueix systemd-journal des de la darrera posició vista (si n'hi hagués)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Heu d'especificar -c CURSOR o bé -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "No es pot obrir systemd-journal" - -@@ -1360,18 +1460,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "No es pot filtrar systemd-journal a únicament les dades systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "No es pot buscar fins al final de la publicació" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "Error en establir el cursor de systemd-journal '%s'" -+msgstr "Error en establir el cursor de systemd-journal «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "No es poden llegir les dades de la publicació." - -@@ -1390,7 +1493,7 @@ msgid "" - msgstr "" - "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" - "\n" --"Extrau els oops des del systemd-journal\n" -+"Extrau l'oops des del systemd-journal\n" - "\n" - "les opcions -c i -e entren en conflicte perquè ambdós especifiquen el primer " - "missatge llegit.\n" -@@ -1402,17 +1505,20 @@ msgstr "" - "La darrera posició vista està desada en " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Llegeix els fitxers de publicació des de totes les màquines" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Llegeix tots els fitxers de publicació del directori ubicat al CAMÍ" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "No es pot inicialitzar systemd-journal al directori «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" -@@ -1420,96 +1526,146 @@ msgstr "" - "No es pot filtrar systemd-journal únicament a dades del nucli del sistema " - "operatiu" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "Error en iniciar l'observació des del cursor '%s'" -+msgstr "Error en iniciar l'observació des del cursor «%s»" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" --"& [-vsoxm] [-d DIR]/[-D] [FITXER]\n" -+"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" --"Extreu la pana d'Xorg des del FITXER (o entrada estàndard)" -+"Extreu la fallida Xorg des de FILE (o entrada estàndard)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - "Imprimeix les dades de les panes que s'han trobat en la sortida estàndard" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Crea el directori del problema al DIR per a cadascuna de les panes trobades" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "No es pot desar la posició d'observació de la publicació" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "No es pot desar la posició d'observació de la publicació: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" --"No es restaura la posició d'observació de la publicació: el fitxer '%s' no " -+"No es restaura la posició d'observació de la publicació: el fitxer «%s» no " - "existeix" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "No es pot restaurar la posició d'observació de la publicació des del fitxer " --"'%s'" -+"«%s»" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" --"No es pot restaurar la posició d'observació de la publicació: el camí '%s' " -+"No es pot restaurar la posició d'observació de la publicació: el camí «%s» " - "no és un fitxer normal" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" --"No es pot restaurar la posició d'observació de la publicació: el fitxer '%s' " --"supera el límit de la mida %dB" -+"No es pot restaurar la posició d'observació de la publicació: el fitxer «%s» " -+"supera el límit de la mida %d B" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - "No es pot restaurar la posició d'observació de la publicació: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - "No es pot restaurar la posició d'observació del servei de publicació: no es " --"pot llegir el fitxer sencer '%s'" -+"pot llegir el fitxer sencer «%s»" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "Error en moure el cursor de la publicació des del fitxer '%s'" -+msgstr "Error en moure el cursor de la publicació des del fitxer «%s»" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." - msgstr "" --"No es pot utilitzar el servidor de resseguiment, a causa de que la mida del " -+"No es pot utilitzar el servidor de resseguiment, a causa que la mida del " - "fitxer de la pana és massa gran. Proveu amb un resseguiment local." - - #. Hopefully, by this time child emitted more meaningful -@@ -1565,8 +1721,8 @@ msgid "" - "Retrace server is unable to process package '%s.%s'.\n" - "Is it a part of official '%s' repositories?" - msgstr "" --"El servidor de resseguiment no es capaç de processar el paquet '%s.%s'.\n" --"Forma part dels dipòsits oficials de '%s'?" -+"El servidor de resseguiment no és capaç de processar el paquet «%s.%s».\n" -+"Forma part dels dipòsits oficials de «%s»?" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" -@@ -1585,7 +1741,7 @@ msgstr "El servidor ha rebutjat la vostra sol·licitud." - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." - msgstr "" --"'%s' ha de ser un fitxer normal per a poder utilitzar un servidor de " -+"«%s» ha de ser un fitxer normal per a poder utilitzar un servidor de " - "resseguiment." - - #: ../src/plugins/abrt-retrace-client.c:520 -@@ -1599,12 +1755,12 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." --msgstr "El servidor no és compatible amb els tarballs comprimits amb xz." -+msgstr "El servidor no és compatible amb els arxius tar comprimits amb xz." - - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "El llançament '%s' no està suportat pel servidor de resseguiment." -+msgstr "El llançament «%s» no està suportat pel servidor de resseguiment." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." -@@ -1624,8 +1780,8 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" --"La mida del vostre arxiu es de %s, però el servidor de resseguiment " --"únicament accepta arxius més petits o iguals de %s." -+"La mida del vostre arxiu és de %s, però el servidor de resseguiment " -+"únicament accepta arxius més petits o iguals a %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format -@@ -1648,7 +1804,7 @@ msgstr "S'està pujant %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "Error en llegir de d'una canonada" -+msgstr "Error en llegir d'una canonada" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format -@@ -1677,11 +1833,11 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Id." -+msgstr "La resposta del servidor no és vàlida: falta X-Task-Id." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." --msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Password." -+msgstr "La resposta del servidor no és vàlida: falta X-Task-Password." - - #: ../src/plugins/abrt-retrace-client.c:795 - msgid "Retrace job started" -@@ -1696,7 +1852,7 @@ msgstr "Id. de la tasca: %s\n" - - #: ../src/plugins/abrt-retrace-client.c:866 - msgid "Invalid response from server: missing X-Task-Status." --msgstr "La resposta del servidor no és vàlida: falta l'X-Task-Status." -+msgstr "La resposta del servidor no és vàlida: falta X-Task-Status." - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format -@@ -1718,8 +1874,8 @@ msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" --"Error en el resseguiment. Proveu-ho de nou més tard i si el problema perdura " --"informeu d'aquesta incidència." -+"Error en el resseguiment. Proveu-ho de nou més tard i si el problema " -+"perdura, informeu d'aquesta incidència." - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" -@@ -1759,7 +1915,7 @@ msgstr "llegeix les dades des del directori del problema de l'ABRT" - - #: ../src/plugins/abrt-retrace-client.c:1233 - msgid "read data from coredump" --msgstr "llegeix les dades des del bolcat de memòria" -+msgstr "llegeix les dades des del bolc de la memòria" - - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" -@@ -1769,7 +1925,7 @@ msgstr "Retard per a les operacions de sondeig" - msgid "(debug) do not delete temporary archive created from dump dir in " - msgstr "" - "(depuració) no eliminis els arxius temporals que s'hagin creat des del " --"directori del bolcat en " -+"directori del bolc en " - - #: ../src/plugins/abrt-retrace-client.c:1239 - msgid "For status, backtrace, and log operations" -@@ -1794,7 +1950,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:1292 - #: ../src/plugins/abrt-retrace-client.c:1298 - msgid "Either problem directory or coredump is needed." --msgstr "Es necessita el directori del problema o bé el bolcat de memòria." -+msgstr "Es necessita el directori del problema o bé el bolc de la memòria." - - #: ../src/plugins/abrt-retrace-client.c:1304 - #: ../src/plugins/abrt-retrace-client.c:1312 -@@ -1822,8 +1978,8 @@ msgstr "Depurador GNU local" - #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 - msgid "Download debuginfo packages and generate backtrace locally using GDB" - msgstr "" --"Baixa els paquets debuginfo i genera a nivell local la traça inversa " --"mitjançant GDB" -+"Baixa els paquets debuginfo i genera localment la traça inversa mitjançant " -+"GDB" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" -@@ -1831,14 +1987,15 @@ msgid "" - "and take up disk space. However, unlike RetraceServer, doesn't send coredump " - "to remote machines." - msgstr "" --"Necessita baixar els paquets debuginfo, els quals prenen un temps " --"significant i espai de de disc. No obstant, a diferència dels servidors de " --"resseguiment, no envia els bolcats de la memòria a màquines remotes." -+"Necessita baixar els paquets debuginfo, els quals prenen un temps i espai de " -+"disc considerable. No obstant això, a diferència dels servidors de " -+"resseguiment, no envia els bolcs de la memòria a màquines remotes." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" - msgstr "" --"Envia el bolcat de memòria al servidor remot de resseguiment per a l'anàlisi" -+"Envia el bolc de la memòria al servidor remot de resseguiment per a " -+"l'anàlisi" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" -@@ -1848,12 +2005,12 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" --"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " --"retorna. Pros: no hi hi la necessitat de baixar els debuginfo. La base de " -+"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " -+"retorna. Pros: no hi ha la necessitat de baixar els debuginfo. La base de " - "dades dels debuginfo del servidor de resseguiment és més completa. El " - "servidor de resseguiment pot generar millor les traces inverses. Cons: el " --"bolcat de memòria que pugeu conté totes les dades del programa que ha tingut " --"pana, que inclouen les vostres dades privades, si fos el cas." -+"bolc de la memòria que pugeu conté totes les dades del programa que ha " -+"tingut pana, que inclouen les vostres dades privades, si fos el cas." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 - msgid "Retrace server URL" -@@ -1887,7 +2044,7 @@ msgstr "Recull .xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:2 - msgid "Save relevant lines from ~/.xsession-errors file" --msgstr "Desa les línies rellevants del fitxer ~/.xsession-errors" -+msgstr "Desa les línies apropiades del fitxer ~/.xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:3 - msgid "" -@@ -1905,7 +2062,7 @@ msgstr "S'ha produït un error en el cantó del servidor." - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "S'ha produït un error en el cantó del servidor en '%s'" -+msgstr "S'ha produït un error en el cantó del servidor en «%s»" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" -@@ -1914,7 +2071,7 @@ msgstr "S'ha produït un error mentre es connectava amb el servidor" - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "S'ha produït un error mentre es connectava a '%s'" -+msgstr "S'ha produït un error mentre es connectava a «%s»" - - #: ../src/plugins/https-utils.c:97 - #, c-format -@@ -1932,7 +2089,7 @@ msgstr "" - msgid "Certificate subject name '%s' does not match target host name '%s'." - msgstr "" - "El nom del subjecte del certificat '%s' no coincideix amb el nom de " --"l'amfitrió de destinació '%s'." -+"l'amfitrió de destinació «%s»." - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." -@@ -1941,12 +2098,12 @@ msgstr "El certificat remot ha expirat." - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "No s'ha reconegut l'emissor del certificat: '%s'." -+msgstr "No s'ha reconegut l'emissor del certificat: «%s»." - - #: ../src/plugins/https-utils.c:113 - #, c-format - msgid "Bad certificate received. Subject '%s', issuer '%s'." --msgstr "S'ha rebut un certificat dolent. Subjecte '%s', emissor '%s'." -+msgstr "S'ha rebut un certificat dolent. Subjecte «%s», emissor «%s»." - - #: ../src/plugins/https-utils.c:149 - #, c-format -@@ -1956,13 +2113,13 @@ msgstr "Error en obtenir la ranura 'PEM Token #0': %d." - #: ../src/plugins/https-utils.c:182 - #, c-format - msgid "Can't resolve host name '%s'. NSS error %d." --msgstr "No es pot resoldre el nom de l'amfitrió '%s'. error de NSS %d." -+msgstr "No es pot resoldre el nom de l'amfitrió «%s». error de NSS %d." - - #. Host exists, but has neither IPv4 nor IPv6?? - #: ../src/plugins/https-utils.c:203 - #, c-format - msgid "Can't resolve host name '%s'." --msgstr "No es pot resoldre el nom de l'amfitrió '%s'." -+msgstr "No es pot resoldre el nom de l'amfitrió «%s»." - - #: ../src/plugins/https-utils.c:210 - msgid "Failed to set socket blocking mode." -@@ -1986,12 +2143,12 @@ msgstr "L'habilitació de TLS ha fallat." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." --msgstr "Error en establir la URL al sòcol SSL." -+msgstr "Error en establir l'URL al sòcol SSL." - - #: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" --msgstr "No es pot connectar a '%s'" -+msgstr "No es pot connectar a «%s»" - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." -@@ -2003,7 +2160,7 @@ msgstr "Ha fallat l'establiment del retorn de la salutació." - - #: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." --msgstr "Error en resetejar la salutació." -+msgstr "Error en restablir la salutació." - - #: ../src/plugins/https-utils.c:258 - #, c-format -@@ -2017,7 +2174,7 @@ msgstr "Error en tancar el sòcol SSL." - #: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" --msgstr "Capçalera de resposta HTTP amb format incorrecte: '%s'" -+msgstr "Capçalera de resposta HTTP amb format incorrecte: «%s»" - - #: ../src/plugins/https-utils.c:369 - #, c-format -@@ -2045,7 +2202,7 @@ msgstr "Error en aturar NSS." - msgid "Sleeping for %d seconds" - msgstr "S'està dormint durant %d segons" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2054,7 +2211,7 @@ msgstr "" - "trencada, per desgràcia aquests problemes no es poden corregir pels " - "mantenidors del nucli del sistema operatiu." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2063,7 +2220,7 @@ msgstr "" - "maquinari no és compatible, per tant els mantenidors del nucli del sistema " - "operatiu no poden corregir-ho." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2073,24 +2230,24 @@ msgstr "" - "nucli ha estat contaminat (marcadors: %s). Els mantenidors del nucli del " - "sistema operatiu no poden fer diagnòstics amb informes contaminats." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Mòduls contaminats: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Llistat dels Id. dels errors" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especifica un servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especifica un llançament" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2100,22 +2257,22 @@ msgstr "" - "\n" - "Cerca si hi ha actualitzacions en el servidor bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "S'està cercant si hi ha actualitzacions" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "No s'han trobat actualitzacions per aquest paquet" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La versió local del paquet és més recent que la de les actualitzacions " - "disponibles" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2133,79 +2290,80 @@ msgid "" - msgstr "" - "& [-v] [-od] FITXER...\n" - "\n" --"Escaneja els fitxers per a dividir els missatges oop. Pot imprimir-los i/o " --"eliminar-los." -+"Escaneja els fitxers per a dividir el missatge de l'oops. Pot imprimir-los i/" -+"o eliminar-los." - - #: ../src/hooks/abrt-merge-pstoreoops.c:97 - msgid "Print found oopses" --msgstr "Imprimeix els oop que s'han trobat" -+msgstr "Imprimeix els oops que s'han trobat" - - #: ../src/hooks/abrt-merge-pstoreoops.c:98 - msgid "Delete files with found oopses" --msgstr "Elimina els fitxers amb els oop que s'han trobat" -+msgstr "Elimina els fitxers amb els oops que s'han trobat" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" --msgstr "'%s' fa referència a més d'un directori de problema" -+msgstr "«%s» fa referència a més d'un directori de problema" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Ús: abrt-cli [--version] ORDRE [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Llista els problemes [als DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Elimina el directori del problema DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analitza i informa de les dades del problema al DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimeix informació sobre el DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Imprimeix el compte de les panes recents" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Processa múltiples problemes" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Consulteu 'abrt-cli ORDRE --help' per a més informació" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opcions]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Llista únicament els problemes que s'hagin informat" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostra informes detallats" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Llista únicament els problemes que siguin més recents que la marca de temps " - "especificada" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Llista únicament els problemes anteriors a la marca de temps especificada" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2216,53 +2374,63 @@ msgstr "" - "Considereu habilitar-ho\n" - "amb 'abrt-auto-reporting enabled' com a usuari amb els privilegis de root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opcions] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "El text que sigui més gran que aquest es mostrarà abreujat" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" --msgstr "El directori del problema '%s' no existeix" -+msgstr "El directori del problema «%s» no existeix" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Imprimeix únicament el compte dels problemes sense cap missatge" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Imprimeix únicament els problemes que siguin més recents que la marca de " - "temps especificada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" --"ABRT ha detectat %u problem[a|es]. Per a més informació executeu: abrt-cli " -+"ABRT ha detectat %u problem[a/es]. Per a més informació executeu: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "S'està eliminant «%s»" -+ -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [opcions] DIR..." - --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Elimina PROBLEM_DIR després de la presentació d'informes" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "S'està eliminant '%s'" -- - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Accions: remove(rm), info(i), skip(s):" -@@ -2271,33 +2439,188 @@ msgstr "Accions: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Accions: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" --msgstr "S'està informant '%s'" -+msgstr "S'està informant «%s»" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Per al següent problema premeu RETORN:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Sense l'argument --since, s'itera sobre tots els problemes detectats." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - "Selecciona únicament els problemes que es van detectar després de la marca " - "de temps" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " - "analysis if the remote analysis fails" - msgstr "" --"Envia el bolcat de memòria a un servidor remot de resseguiment per a " --"l'anàlisi o per a la realització de l'anàlisis local si es produeix un error " -+"Envia el bolc de la memòria a un servidor remot de resseguiment per a " -+"l'anàlisi o per a la realització de l'anàlisi local si es produeix un error " - "en el servidor remot de l'anàlisi" - - #: ../src/plugins/analyze_CCpp.xml.in.h:2 -@@ -2310,15 +2633,14 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" --"Puja el bolcat de memòria a un servidor que genera una traça inversa i la " --"retorna. Si l'usuari no vol pujar el seu bolcat de memòria enlloc, " --"l'esdeveniment realitza l'anàlisi a nivell local. L'anàlisi local s'executa " --"si l'anàlisi remot falla. Pros: no hi hi la necessitat de baixar els " --"debuginfo. La base de dades dels debuginfo del servidor de resseguiment és " --"més completa. El servidor de resseguiment pot generar millor les traces " --"inverses. Cons: el bolcat de memòria que pugeu conté totes les dades del " --"programa que ha ha tingut pana, que inclouen les vostres dades privades, si " --"fos el cas." -+"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " -+"retorna. Si l'usuari no vol pujar el seu bolc de la memòria enlloc, " -+"l'esdeveniment realitza localment l'anàlisi. L'anàlisi local s'executa si " -+"falla l'anàlisi remota. Pros: no hi ha la necessitat de baixar els debuginfo." -+" La base de dades dels debuginfo del servidor de resseguiment és més " -+"completa. El servidor de resseguiment pot generar millor les traces inverses." -+" Cons: el bolc de la memòria que pugeu conté totes les dades del programa " -+"que ha tingut pana, que inclouen les vostres dades privades, si fos el cas." - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" -@@ -2329,7 +2651,7 @@ msgid "" - "Install kernel debuginfo packages, generate kernel log and oops message" - msgstr "" - "Instal·la els paquets debuginfo del nucli del sistema operatiu, genera " --"registres del nucli del sistema operatiu i missatges oops" -+"registres del nucli del sistema operatiu i missatges de l'oops" - - #: ../src/plugins/analyze_VMcore.xml.in.h:3 - msgid "" -@@ -2337,7 +2659,7 @@ msgid "" - "time, and take up disk space." - msgstr "" - "Necessita instal·lar els paquets debuginfo del nucli del sistema operatiu, " --"els quals prenen un temps significant i espai de de disc." -+"els quals prenen un temps i espai de disc considerable." - - #: ../src/plugins/collect_GConf.xml.in.h:1 - msgid "Collect GConf configuration" -@@ -2352,8 +2674,8 @@ msgid "" - "Runs gconftool-2 --recursive-list /apps/executable and saves it as " - "'gconf_subtree' element." - msgstr "" --"Executa gconftool-2 --recursive-list /apps/executable i desa-ho com element " --"de 'gconf_subtree'." -+"Executa gconftool-2 --recursive-list /apps/executable i ho desa com a " -+"element de 'gconf_subtree'." - - #: ../src/plugins/collect_vimrc_system.xml.in.h:1 - msgid "Collect system-wide vim configuration files" -diff --git a/po/cs.po b/po/cs.po -index 5a092d7..debed52 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -18,121 +18,134 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-05 09:29-0500\n" --"Last-Translator: Jiri Eischmann \n" -+"PO-Revision-Date: 2015-05-13 05:06-0400\n" -+"Last-Translator: Zdenek \n" - "Language-Team: čeština \n" - "Language: cs\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Hlášení problemů" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Prohlédni a nahlas chyby aplikací" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Nelze převzít vlastnictví '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Nemohu otevřít adresář pro zápis '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nemohu zavřít oznámení: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Nahlásit" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Restart" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Problém byl automaticky nahlášen." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Problém bude nahlášen jakmile bude " -+"dostupný internet." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Kontaktujte prosím vývojáře, pokud " -+"chcete problém nahlásit." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Je nám líto, ale zdá se, že %s havaroval. Pokud chcete pomoct s řešením " -+"tohoto problému, zašlete nám ho prosím." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém byl " -+"automaticky nahlášen." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Je nám líto, ale zdá se, že se v komponentě objevil problém. Problém bude " -+"nahlášen, jakmile bude dostupný internet." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Je nám líto, ale zdá se, že se v komponentě objevil problém. Pokud chcete " -+"pomoct s řešením tohoto problému, zašlete nám ho prosím." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nemohu zobrazit oznámení: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Nemohu číst z kanálu gio: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nemohu nastavit kódování na kanálu gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nemohu zapnout neblokový režim pro kanál gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -142,6 +155,17 @@ msgstr "" - "\n" - "Applet, který uživatele upozorní, když ABRT detekuje nový problém\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Zeptat se před ukradnutím adresáře" -@@ -163,12 +187,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Soubor coredumpu je nezbytný pro vygenerování stack tracu, což je časově a " --"prostorově náročná operace. ABRT poskytuje službu, která vygeneruje stack " --"trace z coredumpu, ale musíte do této služby coredump nahrát. Pokud tuto " --"volbu zakážete, ABRT nahraje coredump bez ptaní." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -214,10 +236,6 @@ msgstr "" - "nahlášené problémy. Funguje pouze, pokud je povoleno Zkrácené hlášení." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Zeptat se před odesláním coredumpu" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -225,15 +243,15 @@ msgstr "" - "Pokud je tato volba povolená, ABRT vždy vytvoří chybové hlášení s omezeným " - "přístupem, jsou-li potenciálně citlivá data detekována." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Vyžadovat neveřejné hlášení v případě citlivých informací" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Upozornit na nekompletní problémy" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -242,6 +260,22 @@ msgstr "" - "Nekompletní problémy jsou detekovány, když se počítač vypíná nebo uživatel " - "odhlašuje. V zájmu užitečnosti hlášení, ABRT tyto problémy odesílat nebude." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Zavřít" -@@ -267,14 +301,17 @@ msgstr "O" - msgid "Quit" - msgstr "Konec" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Dotáže databázi balíčků a uloží jméno balíčku a komponenty" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -286,42 +323,45 @@ msgstr "" - msgid "Problem directory" - msgstr "Adresář problému" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurační soubor" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Použít tento adresář jako RPM root" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Uloží zásobník metadat" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Kořenový adresář pro běžící zásobník příkazů" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [volby]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Použít NUM jako klient uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Protokolovat do syslogu" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Přidá názvy programů do protokolu" - -@@ -329,62 +369,52 @@ msgstr "Přidá názvy programů do protokolu" - msgid "Unknown error" - msgstr "Neznámá chyba" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' není platným adresářem problému" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' není platným jménem prvku" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' prvek nemůže být modifikován" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' není platným adresářem problému" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Neautorizovaný" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nemohu zpřístupnit problém ke změně" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' prvek nemůže být modifikován" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Změna vlastníka adresáře selhala. Zkontrolujte logy systému pro více " - "informací." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' není platným jménem prvku" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Nemohu získat velikost '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nezbývá místo na problémy" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Nemohu smazat prvek '%s' z adresáře problému '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -394,12 +424,12 @@ msgstr "" - "Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící " - "toto jméno neběží.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Ukončí po NUM sekundách neaktivity" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Tento program musí být spuštěn pod root uživatelem." - -@@ -425,18 +455,22 @@ msgstr "Nedémonizuje se" - msgid "Log to syslog even with -d" - msgstr "Protokoluje do syslogu i s -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Spustí EVENT v DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikovat přímo s uživatelem" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -474,73 +508,76 @@ msgstr "Počet souběžných \"dělníků\". Výchozí je " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximální velikost mezipaměti v MiB. Výchozí je " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Vypíná autentizaci" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Uživatelské jméno podpory Red Hat" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" -+"Heslo pro podporu Red Hat. Pokud není uvedeno, bude obdržena výzva pro jeho " -+"vydání" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "Cesta nebo typ SSL certifikátu pro uReport" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "Musíte zadat --username pro --password" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "Můžete použít buď --username nebo --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "Můžete použít buď --username nebo --anonymous" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "Můžete použít buď --anonymous nebo --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Neplatný počet argumentů" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Neznámá hodnota možnosti: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Heslo:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Bez zadání hesla nelze pokračovat\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "Automatické hlášení chyb autorizováno pro HTTP" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "Automatické hlášení chyb autorizováno pro SSL klienta" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "Anonymní automatické hlášení chyb" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -560,68 +597,68 @@ msgstr "" - " UPLOAD_DIR - Adresář, kde jsou nahrané archivy uložené\n" - " FILENAME - Název souboru nahraného archivu\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Ne adresář: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Přeskočení: '{0}' (začíná lomítkem)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Přeskočení: '{0}' (začíná tečkou)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Přeskočení: '{0}' (obsahuje..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Přeskočení: '{0}' (obsahuje mezeru)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Přeskočení: '{0}' (obsahuje tabulátor)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "Nelze změnit adresáž na '{0}'" -+msgstr "Nelze změnit adresář na '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Neznámý typ souboru '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Nelze vytvořit pracovní adresář '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Nelze přesunout '{0}' do '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Nelze zkopírovat '{0}' do '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Chyba ověření na '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Rozbalení '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Nelze vytvořit adresář '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Nelze rozbalit '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' byl úspěšně zpracován" - -@@ -645,21 +682,29 @@ msgstr "Nelze provést chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Odstraňování adresáře problému selhalo: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nemohu získat data problému z abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nemohu získat seznam problémů z abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nemohu získat data problému z abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Nelze otestovat zda-li element existuje nad abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -704,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Rozbor zásobníku volání v %s se nezdařil" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Vlákno poruchy nenalezeno" - -@@ -809,7 +854,7 @@ msgstr "Nelze vytáhnout zprávu oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Text oops úspěšně vyňat." - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -817,6 +862,38 @@ msgstr "" - "Protokol jádra indikuje, že byly detekovány chyby hardwaru.\n" - "Toto není s největší pravděpodobností softwarový problém.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -902,6 +979,28 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Použití: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Instaluje debuginfo pro všechny ID buildů v BUILD_IDS_FILE\n" -+"do CACHEDIR pomocí TMPDIR jako dočasného vyčkávacího prostoru.\n" -+"Staré soubory v CACHEDIR jsou smazány, dokud nejsou menší než SIZE.\n" -+"\n" -+"Načítá konfiguraci z /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Být upovídaný\n" -+" -y Neinterkativní, předpokládá 'Ano' pro všechny otázky\n" -+" --ids Výchozí: build_ids\n" -+" --tmpdir Výchozí: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Výchozí: /var/cache/abrt-di\n" -+" --size_mb Výchozí: 4096\n" -+" --pkgmgr Výchozí: Správce balíčků z CCpp.conf nebo 'dnf'\n" -+" -e,--exact Stáhnout pouze uvedený soubor\n" -+" --repo Vzor, který použít pro hledání repozitářů.\n" -+" Výchozí: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -921,6 +1020,7 @@ msgstr "{0} souborů debuginfo není nainstalováno" - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"Neplatná konfigurace doplňku CCpp, nepodporovaný správce balíčku: '%s'" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -934,7 +1034,36 @@ msgstr "Chybějící soubory ladících údajů: {0}" - msgid "All debuginfo files are available" - msgstr "Všechny soubory debuginfo jsou dostupné" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -944,7 +1073,7 @@ msgstr "" - "Pokud bude vaše odpověď 'Ne', zásobník volání se vygeneruje lokálně. (to " - "může mít za následek stažení velkého množství dat)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1177,7 +1306,8 @@ msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Stejné jako -d DumpLocation, DumpLocation je specifikováno v abrt.conf" -@@ -1188,16 +1318,18 @@ msgstr "Uložit vyňaté informace v PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Učiň adresář problému přístupný pro čtení všem" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Omezit vytváření adresářů s problémy na 1 za sekundu" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" - -@@ -1206,27 +1338,32 @@ msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" - msgid "Failed to compile regex" - msgstr "Selhalo zkompilování regexu" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Nelze aktualizovat problém: nalezen více než jeden oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "Nepodařilo se získat všechny požadované informace ze žurnálu" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Neukládat opakující se pád po %ds (limit je %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "Nepodařilo se uložit data detekovaného problému v abrt databazi" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Selhalo inicializování systemd-journal watch" - -@@ -1243,60 +1380,78 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extrahuje záznamy jádra ze systemd-journalu\n" -+"\n" -+"volby -c and -e jsou v konfliktu, protože obě určují první přečtenou zprávu.\n" -+"\n" -+"-e je užitečné pouze pro -f, protože po startu journalu následuje čtení\n" -+"celého journalu, pokud není k dispozici poslední pozice.\n" -+"\n" -+"Poslední zhlédnutá pozice je uložená v " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený záznam jádra" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Začít číst systemd-journal z pozice CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Začít číst systemd-journal od konce" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Omezit vytváření adresářů s problémy na 1 za INT sekund" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Stejné jako -t INT, INT je specifikováno v plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "Sleduj system-journal z poslední zhlédnuté pozice (pokud je dostupná)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Musíte zadat buď -c CURSOR nebo -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Nelze otevřít systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" --msgstr "" -+msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o záznamu jádra" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Nelze skočit na konec journalu" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Selhalo nastavení kurzoru systemd-journal '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Nelze číst data journalu." - -@@ -1325,28 +1480,77 @@ msgstr "" - "Poslední zhlédnutá pozice je uložená v " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Čte soubory žurnálu ze všech systémů" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Čte všechny soubory žurnálu z adresáře v PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Nelze iniciovat systemd-journal v adresáři '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Ze systemd-journal nelze vyfiltrovat pouze data o kernelu" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Selhalo nastartování sledování z kurzoru '%s'" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1356,41 +1560,45 @@ msgstr "" - "\n" - "Extrahuje pád Xorg ze souboru FILE (nebo standardního vstupu)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Vypiš nalezená data o havárii na standardní výstup" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Vytvoř adresář problému v DIR pro každý nalezený pád" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Nelze uložit pozici journal watch" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Nelze uložit pozici journal watch: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "Neobnovuje se pozice journal watch: soubor '%s' neexistuje" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Nelze obnovit soubor pozice journal watch '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "Nelze obnovit pozici journal watch: cesta '%s' není běžný soubor" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1398,18 +1606,18 @@ msgstr "" - "Nelze obnovit pozici journal watch: soubor '%s' překračuje limit velikosti " - "%dB" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Nelze obnovit pozici journal watch: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "Nelze obnovit pozici journal watch: nelze přečíst celý soubor '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Selhalo přesunutí journalu do kurzoru ze souboru '%s'" -@@ -1779,9 +1987,9 @@ msgid "" - "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " - ">(warning)</a>" - msgstr "" --"K povolení nezabezpečeného spojení použijte pole Nezabezpečený" -+"Zapiště \"nezabezpečený\" k povolení nezabezpečeného připojení <a href=" -+"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(varování)</a>" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 - msgid "Collect .xsession-errors" -@@ -1876,11 +2084,11 @@ msgstr "Selhalo povolení handshake pro SSL soket." - - #: ../src/plugins/https-utils.c:220 - msgid "Failed to enable SSL3." --msgstr "" -+msgstr "Selhalo povolení SSL3." - - #: ../src/plugins/https-utils.c:222 - msgid "Failed to enable TLS." --msgstr "" -+msgstr "Selhalo povolení TLS." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." -@@ -1943,7 +2151,7 @@ msgstr "Selhalo ukončení NSS." - msgid "Sleeping for %d seconds" - msgstr "Spánek po %d sekund" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1951,7 +2159,7 @@ msgstr "" - "Problém v kernelu se vyskytl kvůli rozbitému BIOSu. Takového problémy nejsou " - "bohužel vývojáři kernelu opravitelné." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1959,7 +2167,7 @@ msgstr "" - "Vyskytl se problém v kernelu, ale váš hardware není podporovaný, proto " - "vývojáři kernelu nejsou schopní tento problém opravit." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1968,24 +2176,24 @@ msgstr "" - "Vyskytl se problém s jádrem, ale vaše jádro bylo modifikováno (parametry:%s)." - " Správci jádra nejsou schopni diagnostikovat modifikované reporty." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Závadné moduly: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Seznam ID chyb" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Urči url bodhi serveru" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Urči vydání" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1995,20 +2203,20 @@ msgstr "" - "\n" - "Hledej aktualizace na serveru bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Vyhledávání aktualizací" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Pro tento balíček nenalezeny žádné aktualizace" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokální verze balíčku je novější než verze dostupná v aktualizacích" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2035,65 +2243,66 @@ msgstr "Vypsat nalezené oopsy" - msgid "Delete files with found oopses" - msgstr "Smazat soubory s nalezenými oopsy" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' nalezl více než jeden adresář s problémy" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Použití: abrt-cli [--version] PŘÍKAZ [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Vypsat seznam problémů [v adresářích]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Odstraň adresář problému DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyzuj a reportuj data problému v DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Tisk informací o DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Vypsat počet nedávných pádů" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Zpracovat více problémů" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Více informací získáte příkazem „abrt-cli PŘÍKAZ --help“" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [volby]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Vypsat seznam pouze nenahlášených problémů" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Zbrazit detailní zprávu" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Vypsat seznam problémů novějších než zadaná časová značka" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Vypsat seznam problémů starších než zadaná časová značka" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2103,51 +2312,61 @@ msgstr "" - "Funkce automatického hlášení je zakázána. Prosím zvažte její povolení pomocí\n" - "spuštění 'abrt-auto-reporting enabled' s právy roota\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [volby] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Text delší než toto bude zestručněný" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Žádný adresář s problémy '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& stav" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Vypsat pouze počet problémů beze zpráv" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Vypsat pouze problémy novější než zadaná časová značka" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT detekoval %u problém(ů). Chcete-li více informací, spusťte: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Odstranit PROBLEM_DIR po nahlášení" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Mazání '%s'" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [options] DIR..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Odstranit PROBLEM_DIR po nahlášení" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Akce: remove(rm), info(i), skip(s):" -@@ -2156,25 +2375,180 @@ msgstr "Akce: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Akce: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Hlášení '%s'" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Na další problémy přejdete tisknutím ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Bez argumentu --since provedete operaci nad všemi detekovanými problémy." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Vybere pouze problémy detekované po časové značce" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/da.po b/po/da.po -index 5056f43..4d62355 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/da/)\n" - "Language: da\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,102 +29,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan ikke tage ejerskab over \"%s\"" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapportér" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -135,6 +135,17 @@ msgstr "" - "Panelprogram som giver brugeren besked, når nye problemet er fundet af " - "ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -156,7 +167,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -189,30 +202,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -238,14 +263,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -257,11 +282,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemmappe" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurationsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -275,24 +300,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [tilvalg]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Skriv til syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Føj programnavne til log" - -@@ -300,60 +326,50 @@ msgstr "Føj programnavne til log" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -361,12 +377,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -387,18 +403,22 @@ msgstr "Dæmonisér ikke" - msgid "Log to syslog even with -d" - msgstr "Skriv til syslog, selv med -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -428,73 +448,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -506,68 +527,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -591,18 +612,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -643,7 +672,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Fortolkning af backtrace mislykkedes for %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -735,12 +764,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -849,14 +910,43 @@ msgstr "Manglende debuginfo-fil: {0}" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1071,7 +1161,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Samme som -d DumpLocation, DumpLocation er angivet i abrt.conf" - -@@ -1081,16 +1172,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1099,8 +1192,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1120,6 +1217,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1143,11 +1241,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1161,16 +1261,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1178,18 +1281,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1208,14 +1314,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1224,70 +1333,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1807,63 +1966,63 @@ msgstr "Kunne ikke nedlukke NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Liste over fejl-id'er" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Angiv en url til bodhi-server" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Angiv en udgivelse" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Søger efter opdateringer" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ingen opdateringer fundet for denne pakke" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokal version af pakken er nyere end tilgængelige opdateringer" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1885,65 +2044,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Se \"abrt-cli COMMAND --help\" for mere information" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Vis detaljeret rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1951,49 +2111,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2002,24 +2172,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/de.po b/po/de.po -index 527eb21..73a2018 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -20,17 +20,17 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-20 08:24-0400\n" -+"PO-Revision-Date: 2015-08-19 02:33-0400\n" - "Last-Translator: Roman Spirgi \n" - "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" - "language/de/)\n" - "Language: de\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -40,34 +40,34 @@ msgstr "Problemberichterstattung" - msgid "View and report application crashes" - msgstr "Anwendungsabstürze anzeigen und berichten" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Eigentumsrechte von »%s« können nicht geändert werden." - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Benachrichtigung kann nicht geschlossen werden: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Hoppla!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Melden" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Neustart" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -76,7 +76,7 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wurde " - "automatisch gemeldet." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -85,8 +85,8 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Dieses Problem wird gemeldet, " - "sobald die Internetverbindung verfügbar ist." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -95,7 +95,7 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Bitte kontaktieren Sie den " - "Entwickler, wenn Sie diesen Fehler melden wollen." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -104,7 +104,7 @@ msgstr "" - "Entschuldigung, %s scheint abgestürzt zu sein. Bitte melden Sie dies, wenn " - "Sie mithelfen möchten, dieses Problem zu beheben." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -112,7 +112,7 @@ msgstr "" - "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " - "Dieses Problem wurde automatisch gemeldet." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -120,7 +120,7 @@ msgstr "" - "Entschuldigung, in einer Komponente scheint ein Fehler aufgetreten zu sein. " - "Dieses Problem wird gemeldet, sobald die Internetverbindung verfügbar ist." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -128,28 +128,28 @@ msgstr "" - "Entschuldigung, es scheint ein Fehler aufgetreten zu sein. Bitte melden Sie " - "dies, wenn Sie mithelfen möchten, das Problem zu beheben." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Benachrichtigung kann nicht angezeigt werden: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Von gio channel kann nicht gelesen werden: »%s«" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Verschlüsselung kann auf gio channel nicht gesetzt werden: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nichtblockier-Modus kann für gio channel nicht gesetzt werden: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -160,6 +160,17 @@ msgstr "" - "Applet zur Benachrichtigung des Benutzers, wenn neue Abstürze durch ABRT " - "entdeckt werden\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -177,19 +188,15 @@ msgstr "Verkürzte Berichterstattung" - msgid "Silent shortened reporting" - msgstr "Verkürzte Berichterstattung (silent)" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Die Coredump-Datei ist notwendig zur Generierung eines Stack Trace – eine " --"Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT bietet " --"einen Service, der den Stack Trace aus dem Coredump erstellt, allerdings " --"müssen Sie den Coredump für diesen Service hochladen. Ist diese Option " --"deaktiviert, lädt ABRT den Coredump ohne Nachfrage hoch." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -242,10 +249,6 @@ msgstr "" - "aktiviert ist." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Vor dem Hochladen des Coredumps nachfragen" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -254,16 +257,16 @@ msgstr "" - "eingeschränktem Zugriff, falls die Daten allenfalls persönliche Daten " - "enthalten." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Privates Ticket für sensible Informationen anfordern" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Unvollständige Probleme melden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -273,6 +276,22 @@ msgstr "" - "gegebenenfalls unvollständige Fehler erkannt werden. Um nur nützliche " - "Fehlerberichte einzureichen, lässt ABRT das Melden dieser Fehler nicht zu." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Schließen" -@@ -298,7 +317,7 @@ msgstr "Über" - msgid "Quit" - msgstr "Beenden" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -308,7 +327,7 @@ msgstr "" - "\n" - "Paket-Datenbank durchsuchen und Paket- und Komponentennamen sichern" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -320,11 +339,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Fehler-Verzeichnis" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurationsdatei" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Dieses Verzeichnis als RPM-Root verwenden" - -@@ -340,24 +359,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "Root-Verzeichnis, um Container-Befehle auszuführen" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM als Client-UID benutzen" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "In Systemprotokoll speichern" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Anwendungsnamen protokollieren" - -@@ -365,62 +385,52 @@ msgstr "Anwendungsnamen protokollieren" - msgid "Unknown error" - msgstr "Unbekannter Fehler" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "»%s« ist kein gültiges Problem-Verzeichnis" -+msgid "'%s' is not a valid element name" -+msgstr "»%s« ist kein gültiger Name für das Element" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Element »%s« kann nicht geändert werden" -+msgid "'%s' is not a valid problem directory" -+msgstr "»%s« ist kein gültiges Problem-Verzeichnis" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Nicht erlaubt" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Der Fehlerbericht kann nicht für die Bearbeitung geöffnet werden" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Element »%s« kann nicht geändert werden" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die " - "System-Logdateien überprüfen." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Fehlerbericht kann nicht mit Lesezugriff geöffnet werden" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "»%s« ist kein gültiger Name für das Element" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Größe von '%s' kann nicht bestimmt werden" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Kein weiterer Speicherplatz für die Fehlerbeschreibung vorhanden" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -430,12 +440,12 @@ msgstr "" - "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein " - "anderer Dienst unter dem gleichen Namen läuft.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Nach NUM Sekunden Inaktivität beenden" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." - -@@ -462,18 +472,22 @@ msgstr "Nicht als Hintergrunddienst ausführen" - msgid "Log to syslog even with -d" - msgstr "Auch mit -d im Systemprotokoll speichern" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT auf DIR ausführen" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Direkt mit dem Benutzer kommunizieren" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -513,89 +527,90 @@ msgstr "Anzahl der gleichzeitig laufenden Dienste. Standard ist " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximale Cache-Größe in MB. Standard ist " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Deaktiviert die Authentifizierung" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support Benutzername" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support Passwort; falls nicht angegeben, wird zur Eingabe eines " - "Passworts aufgefordert" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL-Zertifikatspfad oder -Zertifikatstyp" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Sie müssen ebenfalls --username für --password angeben" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Sie können entweder --username oder --certificate verwenden" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Sie können entweder --username oder --anonymous verwenden" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Sie können entweder --anonymous oder --certificate verwenden" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Ungültige Parameteranzahl" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Unbekannter Optionswert: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Passwort:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Fortfahren ohne Passwort nicht möglich\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Per HTTP authentifizierte automatische Berichterstattung" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Per SSL-Client authentifizierte automatische Berichterstattung" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Hedda Peters --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Anonyme automatische Berichterstattung" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -617,83 +632,83 @@ msgstr "" - " DATEINAME - Name der Archivdatei\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Kein Verzeichnis: »{0}«" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Überspringen: »{0}« (beginnt mit einem Schrägstrich)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Überspringen: »{0}« (beginnt mit einem Punkt)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Überspringen: »{0}« (enthält ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Überspringen: »{0}« (enthält Leerzeichen)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Überspringen: »{0}« (enthält Tabulatoren)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Verzeichnis kann nicht auf »{0}« geändert werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Unbekannter Dateityp: »{0}«" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Arbeitsverzeichnis kann nicht in »{0}« erstellt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "»{0}« kann nicht nach »{1}« verlegt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "»{0}« kann nicht nach »{1}« kopiert werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Fehler bei Prüfung von »{0}«" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "»{0}« wird entpackt" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Verzeichnis »{0}« kann nicht erstellt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "»{0}« kann nicht entpackt werden" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "»{0}« erfolgreich verarbeitet" - -@@ -717,21 +732,30 @@ msgstr "Chown nicht möglich: »%s«: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Problematisches Verzeichnis konnte nicht gelöscht werden: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Fehler-Liste kann von abrt-dbus nicht abgerufen werden: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -+"Über abrt-dbus kann nicht überprüft werden, ob das Element existiert: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -777,7 +801,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Verarbeitung der Ablaufverfolgung für %s ist fehlgeschlagen" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Absturz Thread nicht gefunden" - -@@ -888,7 +912,7 @@ msgstr "Oops-Meldung kann nicht ausgelesen werden: »{0}«" - msgid "Oops text extracted successfully" - msgstr "Oops-Text erfolgreich ausgelesen" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -896,6 +920,38 @@ msgstr "" - "Das Kernel-Protokoll weist darauf hin, dass Hardware-Fehler entdeckt wurden.\n" - "Höchstwahrscheinlich handelt es sich dabei nicht um ein Software-Problem.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -982,6 +1038,28 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" -+"to CACHEDIR, using TMPDIR as temporary staging area.\n" -+"Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" -+"\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Be verbose\n" -+" -y Noninteractive, assume 'Yes' to all questions\n" -+" --ids Default: build_ids\n" -+" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Default: /var/cache/abrt-di\n" -+" --size_mb Default: 4096\n" -+" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" -+" -e,--exact Download only specified files\n" -+" --repo Pattern to use when searching for repos.\n" -+" Default: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -1015,7 +1093,36 @@ msgstr "Fehlende Debuginfo-Datei: {0}" - msgid "All debuginfo files are available" - msgstr "Alle Debuginfo-Dateien sind vorhanden" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1026,7 +1133,7 @@ msgstr "" - "wird eine lokale Stapelüberwachung erstellt - und damit unter Umständen ein " - "große Datenmenge heruntergeladen." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1270,7 +1377,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Entspricht -d DumpLocation, DumpLocation ist in abrt.conf spezifiziert" -@@ -1281,16 +1389,18 @@ msgstr "Speichern Sie die extrahierten Informationen in PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Fehler-Verzeichnis allgemein lesbar machen" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Erstellung eines Fehlerverzeichnisses auf 1 pro Sekunde beschränken" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Suchbegriff(e) in Stdout schreiben und beenden" - -@@ -1300,9 +1410,13 @@ msgstr "Suchbegriff(e) in Stdout schreiben und beenden" - msgid "Failed to compile regex" - msgstr "Kompilieren von regex fehlgeschlagen" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Fehler kann nicht aktualisiert werden: mehrere Oops gefunden" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1321,6 +1435,7 @@ msgstr "Fehlerdaten konnten nicht in ABRT-Datenbank gespeichert werden" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Systemd-Journal watch konnte nicht initialisiert werden" - -@@ -1344,11 +1459,13 @@ msgstr "Für jeden Coredump ein neues Fehlerverzeichnis erstellen" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Systemd-Journal ab Cursor-Position lesen" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Systemd-Journal ab Ende lesen" - -@@ -1362,17 +1479,20 @@ msgstr "Gleich wie -t INT, INT ist definiert in plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Systemd-Journal ab der letzten gesehenen Position folgen (sofern verfügbar)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Entweder -c CURSOR oder -e muss angegeben werden" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Systemd-Journal kann nicht geöffnet werden" - -@@ -1381,18 +1501,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "Systemd-Journal kann nicht nur auf systemd-coredump-Daten gefiltert werden" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Das Ende des Journals konnte nicht erreicht werden" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Cursor '%s' des Systemd-Journals kann nicht festgelegt werden" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Journal-Daten können nicht gelesen werden" - -@@ -1411,28 +1534,77 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Journal-Dateien aller Geräte auslesen" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Alle Journal-Daten aus PFAD-Verzeichnis auslesen" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Systemd-Journal kann im Verzeichnis »%s« nicht initialisiert werden" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Systemd-Journal kann nicht nur auf Kernel-Dateien gefiltert werden" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Beginn der Ansicht ab Cursor '%s' fehlgeschlagen" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1442,46 +1614,50 @@ msgstr "" - "\n" - "Xorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Gefundene Daten zum Absturz auf Standard-Eingabe ausgeben" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Ansichtsposition des Journals kann nicht gespeichert werden" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Position des Journals kann nicht gespeichert werden: offen('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« ist " - "nicht vorhanden" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "Journal-Ansichtsposition kann nicht aus Datei »%s« wiederhergestellt werden" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Pfad »%s« ist " - "keine reguläre Datei" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1489,14 +1665,14 @@ msgstr "" - "Journal-Ansichtsposition kann nicht wiederhergestellt werden: Datei »%s« " - "überschreitet %dB Größenbeschränkung" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - "Ansichtsposition des Journals kann nicht wiederhergestellt werden: " - "offen('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1504,7 +1680,7 @@ msgstr "" - "kann nicht vollständig gelesen werden" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Journal konnte nicht aus Datei »%s« zu einem Cursor verschoben werden" -@@ -2044,7 +2220,7 @@ msgstr "NSS konnte nicht heruntergefahren werden." - msgid "Sleeping for %d seconds" - msgstr "%d Sekunden warten" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2052,7 +2228,7 @@ msgstr "" - "Ein Kernel-Problem ist aufgetreten aufgrund eines beschädigten BIOS. Leider " - "können derartige Probleme nicht von Kernel-Maintainern behoben werden." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2060,7 +2236,7 @@ msgstr "" - "Ein Kernel-Problem ist aufgetreten, aber Ihre Hardware wird nicht " - "unterstützt, weshalb Kernel-Maintainer dieses Problem nicht beheben können." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2069,24 +2245,24 @@ msgstr "" - "Es ist ein Kernel-Problem aufgetreten, aber Ihr Kernel ist defekt (flags:%s)." - " Kernel-Maintainer können keine Berichte beschädigter Kernel analysieren." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Betroffene Module: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Liste der Bug-ID-Nummern" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Geben Sie eine Bodhi-Server-URL an" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Geben Sie eine Version an" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2096,20 +2272,20 @@ msgstr "" - "\n" - "Nach Aktualisierungen auf dem Bodhi-Server suchen" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Nach Aktualisierungen suchen" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Keine Aktualisierungen zu diesem Paket gefunden" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Die lokale Version ist aktueller als die verfügbaren Aktualisierungen" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2138,69 +2314,70 @@ msgstr "Gefundene Oopses ausgeben" - msgid "Delete files with found oopses" - msgstr "Löschen Dateien mit gefundenen Oopses" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "»%s« findet mehr als ein Fehlerverzeichnis" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Aufruf: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Fehler anzeigen [in DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Fehler-Verzeichnis DIR entfernen" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Fehlerdaten in DIR analysieren und berichten" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Informationen zu DIR auflisten" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Anzahl der jüngsten Abstürze ausgeben" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Mehrere Fehler verarbeiten" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& Liste [Optionen]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Nur noch nicht berichtete Probleme anzeigen" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Detaillierten Bericht anzeigen" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Nur die Probleme anzeigen, welcher vor dem festgelegten Zeitpunkt auftraten" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2211,57 +2388,67 @@ msgstr "" - "Betracht, sie\n" - "zu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [Optionen] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Längere Texte werden gekürzt angezeigt" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Kein solches Fehlerverzeichnis »%s« vorhanden" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& Status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Nur die Fehleranzahl ohne Mitteilung ausgeben" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel " - "ausgeben" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli " - "list%s)\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "»%s« wird gelöscht" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& berichten [Optionen] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "PROBLEM_DIR nach Berichterstattung löschen" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "»%s« wird gelöscht" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" -@@ -2272,27 +2459,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Aktionen: entfernen(rm), berichten(e), info(i), überspringen(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "»%s« wird gemeldet" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Drücken Sie die EINGABETASTE für den nächsten Fehler" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Ohne --since Parameter werden alle erkannten Fehler durchgegangen." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/el.po b/po/el.po -index dc3f503..4430929 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -21,7 +21,7 @@ msgstr "" - "language/el/)\n" - "Language: el\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,108 +31,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Αναφορά" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -154,7 +165,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -187,30 +200,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -236,14 +261,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -255,11 +280,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Αρχείο παραμετροποίησης" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -273,24 +298,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Καταγραφή στο syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Προσθήκη του ονόματος του προγράμματος στο αρχείο καταγραφής" - -@@ -298,60 +324,50 @@ msgstr "Προσθήκη του ονόματος του προγράμματος - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -359,12 +375,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -385,18 +401,22 @@ msgstr "Μην το κάνεις Daemon" - msgid "Log to syslog even with -d" - msgstr "Καταγραφή στο syslog χρησιμοποιώντας την παράμετρο -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -426,73 +446,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -504,68 +525,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -589,18 +610,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -641,7 +670,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -730,12 +759,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -844,14 +905,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1066,7 +1156,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1076,16 +1167,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1094,8 +1187,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1115,6 +1212,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1138,11 +1236,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1156,16 +1256,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1173,18 +1276,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1203,14 +1309,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1219,70 +1328,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1794,63 +1953,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1872,65 +2031,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1938,49 +2098,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1989,24 +2159,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/en_GB.po b/po/en_GB.po -index adab5f7..abac5db 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -22,7 +22,7 @@ msgstr "" - "fedora-abrt/language/en_GB/)\n" - "Language: en-GB\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,102 +32,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Can't take ownership of '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Can't open directory for writing '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Can't close notification: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Report" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Can't show notification: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Can't read from gio channel: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Can't set encoding on gio channel: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Can't turn on nonblocking mode for gio channel: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +137,17 @@ msgstr "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -158,7 +169,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -191,30 +204,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -240,14 +265,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -259,11 +284,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problem directory" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Configuration file" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -277,24 +302,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Use NUM as client uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log to syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Add program names to log" - -@@ -302,60 +328,50 @@ msgstr "Add program names to log" - msgid "Unknown error" - msgstr "Unknown error" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' is not a valid element name" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' is not a valid problem directory" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Not Authorised" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Can't access the problem for modification" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' is not a valid element name" -+msgid "'%s' element can't be modified" -+msgstr "'%s' element can't be modified" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Can't get size of '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "No problem space left" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Can't delete the element '%s' from the problem directory '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -365,12 +381,12 @@ msgstr "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Exit after NUM seconds of inactivity" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "This program must be run as root." - -@@ -391,18 +407,22 @@ msgstr "Do not daemonise" - msgid "Log to syslog even with -d" - msgstr "Log to syslog even with -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Run EVENT on DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Communicate directly to the user" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -432,73 +452,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -510,68 +531,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -595,18 +616,26 @@ msgstr "Can't chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Deleting problem directory failed: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Can't get problem list from abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Can't get problem data from abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -651,7 +680,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Backtrace parsing failed for %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -746,12 +775,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -864,7 +925,36 @@ msgstr "Missing debuginfo file: {0}" - msgid "All debuginfo files are available" - msgstr "All debuginfo files are available" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -874,7 +964,7 @@ msgstr "" - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1097,7 +1187,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - -@@ -1107,16 +1198,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Make the problem directory world readable" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Print search string(s) to stdout and exit" - -@@ -1125,8 +1218,12 @@ msgstr "Print search string(s) to stdout and exit" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1146,6 +1243,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1169,11 +1267,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1187,16 +1287,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1204,18 +1307,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1234,14 +1340,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1250,12 +1359,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1265,58 +1420,62 @@ msgstr "" - "\n" - "Extract Xorg crash from FILE (or standard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Print found crash data on standard output" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1839,19 +1998,19 @@ msgstr "Failed to shutdown NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1860,24 +2019,24 @@ msgstr "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Tainted modules: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "List of bug ids" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Specify a bodhi server url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Specify a release" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1887,20 +2046,20 @@ msgstr "" - "\n" - "Search for updates on bodhi server" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Searching for updates" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "No updates for this package found" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Local version of the package is newer than available updates" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1924,65 +2083,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Remove problem directory DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyse and report problem data in DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Print information about DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "See 'abrt-cli COMMAND --help' for more information" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Show detailed report" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1990,49 +2150,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2041,24 +2211,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/es.po b/po/es.po -index 44f8932..d91744e 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -31,54 +31,54 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-04-06 12:18-0400\n" --"Last-Translator: Alex Puchades \n" -+"PO-Revision-Date: 2015-09-30 06:57-0400\n" -+"Last-Translator: Gladys Guerrero Lozano \n" - "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/es/)\n" - "Language: es\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Informe de errores" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Ver e informar sobre errores de aplicación" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "No se puede tomar la propiedad de «%s»" -+msgstr "No se puede tomar propiedad de «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "No puedo abrir carpeta para escribir '%s'" -+msgstr "No se puede abrir la carpeta '%s' para escritura" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "No se puede cerrar la notificación: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ups!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informar" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Reiniciar" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -87,7 +87,7 @@ msgstr "" - "Lo sentimos, parece que %s ha dejado de funcionar. Se ha informado " - "automáticamente de este problema." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -96,72 +96,72 @@ msgstr "" - "Lo sentimos, parece que %s ha dejado de funcionar. Se informará de este " - "problema cuando el acceso a Internet esté disponible." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" --"Lo sentimos, parece que %s ha dejado de funcionar. Por favor, póngase en " --"contacto con el desarrollados si quiere informar de este problema." -+"Lo sentimos, parece que %s ha dejado de funcionar. Póngase en contacto con " -+"el desarrollador si quiere informar de este problema." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - "Lo sentimos, parece que %s ha dejado de funcionar. Si le gustaría ayudarnos " --"a solucionar este problema, envíe un informe." -+"a solucionar este problema, envíenos un informe." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" --"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " --"Se ha informado automáticamente de este problema." -+"Lo sentimos, parece que ha ocurrido un problema con alguno de los " -+"componentes. Se ha informado automáticamente de este problema." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" --"Lo sentimos, parece que ha habido un problema en alguno de los componentes. " --"Se informará automáticamente de este problema cuando el acceso a Internet " --"esté disponible." -+"Lo sentimos, parece que ha ocurrido un problema con alguno de los " -+"componentes. Se informará automáticamente de este problema cuando el acceso " -+"a Internet esté disponible." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" --"Lo sentimos, parece que ha habido algún problema. Si quiere ayudarnos a " -+"Lo sentimos, parece que ha ocurrido algún problema. Si quiere ayudarnos a " - "solucionar el problema, envíenos un informe." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "No se puede mostrar la notificación: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "No se puede leer desde el canal gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "No se puede fijar la codificación sobre el canal gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "No se puede establecer el modo de no bloqueo para el canal gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -169,12 +169,23 @@ msgid "" - msgstr "" - "& [-v] [DIR]...\n" - "\n" --"Applet que notifica al usuario cuando ABRT detecta nuevos problemas\n" --"\n" -+"Miniaplicación que notifica al usuario cuando ABRT detecta nuevos " -+"problemas\n" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "Preguntar antes de robar carpeta" -+msgstr "Preguntar antes de robar directorio" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" -@@ -193,13 +204,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"El archivo de volcado de memoria se necesita para generar un trazado de la " --"pila, una operación que consume bastante tiempo y espacio. ABRT ofrece un " --"servicio que genera el trazado de la pila pero usted tiene que subir el " --"volcado a este servicio. Con esta opción deshabilitada, ABRT subirá el " --"archivo de volcado sin preguntar." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -246,10 +254,6 @@ msgstr "" - "informados. Tiene efecto sólo si los informes abreviados están habilitados." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Preguntar antes de subir el archivo de volcado" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -257,15 +261,15 @@ msgstr "" - "Con esta opción habilitada ABRT siempre crea una entrada del error con " - "acceso restringido si se detecta datos posiblemente sensibles." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Pedir registro privado por información sensible" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notificar problemas incompletos" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -275,6 +279,22 @@ msgstr "" - "apagando o el usuario está saliendo. Con el objetivo de suministrar informes " - "útiles, ABRT no le permitirá presentar estos problemas." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Cerrar" -@@ -300,7 +320,7 @@ msgstr "Acerca de" - msgid "Quit" - msgstr "Salir" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -311,7 +331,7 @@ msgstr "" - "Interrogar a la base de datos de paquetes y guardar el nombre de paquete y " - "componente" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -323,11 +343,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Carpeta de problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Archivo de configuración" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Utilizar esta carpeta como raíz RPM" - -@@ -343,24 +363,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "Carpeta raíz para los comandos de contenedor mientras se ejecutan" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilice NUM como uid del cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registrar en syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Añadir nombre de programa al registro" - -@@ -368,77 +389,67 @@ msgstr "Añadir nombre de programa al registro" - msgid "Unknown error" - msgstr "Error desconocido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' no es una carpeta de problemas válida" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' no es un nombre de elemento válido" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' elemento no puede ser modificado" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' no es una carpeta de problemas válida" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "No autorizado" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "No se puede acceder al problema para modificación" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' elemento no puede ser modificado" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Error cambiando el propietario de la carpeta. Revise los registros del " - "sistema para más detalles." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "No se puede acceder al problema para lectura" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' no es un nombre de elemento válido" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "No se puede obtener el tamaño de «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "No queda espacio para problemas" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "No se puede borrar el elemento '%s' de la carpeta de problemas '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"El nombre '%s' ser perdió, verifique que otro servicio con el mismo nombre " --"no se esté ejecutando.\n" -+"El nombre '%s' se perdió, verifique que no se esté ejecutando ningún otro " -+"servicio con el mismo nombre.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Sale después de NUM segundos de inactividad" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa debe ser ejecutado como root." - -@@ -451,11 +462,11 @@ msgid "" - "sort out this problem, please contact them directly." - msgstr "" - "Los datos del problema están incompletos. Esto suele suceder cuando se " --"detecta un problema en el momento en que el computador se está apagando o el " --"usuario está saliendo. Con el fin de proporcionar informes valiosos del " --"problema, ABRT no le permitirá a usted enviar este problema. Si usted tiene " --"tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, " --"por favor contáctelos directamente." -+"detecta un problema en el momento en que el ordenador se está apagando o el " -+"usuario está saliendo. Con el fin de proporcionar informes útiles del " -+"problema, ABRT no le permitirá enviar este informe. Si tiene tiempo y desea " -+"ayudar a los desarrolladores en su esfuerzo por solucionarlo, contáctelos " -+"directamente." - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" -@@ -465,18 +476,22 @@ msgstr "No convertir en un demonio" - msgid "Log to syslog even with -d" - msgstr "Registrar en syslog aún con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Ejecutar EVENTO en DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunicar directamente al usuario" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -515,86 +530,87 @@ msgstr "Número de trabajadores concurrentes. El valor por defecto es" - msgid "Maximal cache size in MiB. Default is " - msgstr "Tamaño máximo de la caché en MB. Por defecto es" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Desactiva la autenticación" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nombre de usuario de Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Contraseña de Red Hat Support, si no la ingresa, se le indicará" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Rutas de certificado uReport SSL o tipo de certificado" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "También necesita especificar --username para --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Puede usar --username o --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Puede usar --username o --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Puede usar --anonymous o --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Número de argumentos no válido" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valor de opción desconocido: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Contraseña:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "No puede continuar sin contraseña\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Autoreporte autenticado HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Autoreporte de cliente autenticadoSSL " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gladys Guerrero Lozano --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Autoreporte anónimo " - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -614,68 +630,68 @@ msgstr "" - " UPLOAD_DIR - Carpeta donde los archivos subidos son almacenados\n" - " FILENAME - Nombre del archivo a subir.\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "No es una carpeta: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Omitiendo: '{0}' (inicia con barra inclinada)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Omitiendo: '{0}' (inicia con punto)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Omitiendo: '{0}' (contiene ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Omitiendo: '{0}' (contiene espacio)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Omitiendo: '{0}' (contiene tabulacion)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "No se puede cambiar la carpeta a '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipo de archivo desconocido: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "No se puede crear una carpeta de trabajo en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "No se puede mover '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "No se puede copiar '{0}' a '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Error de verificacion en '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Desempaquetando '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "No se puede crear la carpeta '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "No se puede desempaquetar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' procesado exitosamente" - -@@ -699,21 +715,30 @@ msgstr "No puedo hacer chown'%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Falló el borrado de la carpeta de problema: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "No se pudo obtener la lista de problemas desde abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -+"No se puede comprobar si el elemento existe por medio de abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -758,7 +783,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Ha fallado el análisis del trazado de %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "No se encontró el hilo que se colgó" - -@@ -866,7 +891,7 @@ msgstr "No puedo extraer el mensaje ups: '{0}'" - msgid "Oops text extracted successfully" - msgstr "EL texto ups se ha extraído correctamente" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -874,6 +899,38 @@ msgstr "" - "El registro del kernel indica que se han detectado errores en el hardware.\n" - "Esto muy probablemente no es un problema de software.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -960,6 +1017,29 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Uso: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Instala debuginfos para todos los build-ids listados en BUILD_IDS_FILE\n" -+"a CACHEDIR, usando TMPDIR como área temporal de pruebas.\n" -+"Los archivos antiguos en CACHEDIR son eliminados hasta que su tamaño sea " -+"menor que SIZE.\n" -+"\n" -+"Lee la configuración de /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Explicito\n" -+" -y No interactivo, asume 'Si' a todas las preguntas\n" -+" --ids Prederterminado: build_ids\n" -+" --tmpdir Prederterminado: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Prederterminado: /var/cache/abrt-di\n" -+" --size_mb Prederterminado: 4096\n" -+" --pkgmgr Prederterminado: PackageManager from CCpp.conf or 'dnf'\n" -+" -e,--exact Descarga los archivos especificados unicamente\n" -+" --repo Patrón a usar cuando se buscan repos.\n" -+" Prederterminado: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -979,6 +1059,8 @@ msgstr "{0} de archivos debuginfo no están instalados" - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"Configuración inválida del complemento CCpp, gestor de paquetes no soportado:" -+" '%s'" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -992,23 +1074,53 @@ msgstr "No se encuentra el archivo de información de depuración: {0}" - msgid "All debuginfo files are available" - msgstr "Todos los archivos debuginfo están disponibles" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" --"¿De acuerdo con volcado del core? (Puede contener datos sensible), Si su " --"respuesta es 'No', se generará localmente una traza localmente. (Puede " --"descargar una enorme cantidad de datos)." -+"¿Está de acuerdo con el volcado de memoria? (Puede contener datos sensibles)." -+" Si su respuesta es 'No', se generará una traza localmente. (Puede que sea " -+"necesario descargar una enorme cantidad de datos)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." - msgstr "" --"¿Desea generar una traza de la pila localmente? (Puede descargar una gran " --"cantidad de datos pero el reporte no puede continuar sin una traza de pila)." -+"¿Desea generar una traza de la pila localmente? (Puede que sea necesario " -+"descargar una gran cantidad de datos, pero el reporte no puede continuar sin " -+"un trazado de pila)." - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -1236,7 +1348,8 @@ msgstr "Creado una nueva carpeta de problemas en DIR por cada ups encontrado" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Igual que -d DumpLocation, lugar de volcado se especifica en abrt.conf" -@@ -1247,16 +1360,18 @@ msgstr "Guardar la información extraída en PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Hacer la carpeta de problemas legible por todos" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Acelerar la creación de la carpeta de problemas a 1 por segundo" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" - -@@ -1265,27 +1380,34 @@ msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" - msgid "Failed to compile regex" - msgstr "Fallo al compilar regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "No se pudo actualizar el problema: se encontraron mas de un oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "No se pudo obtener toda la información necesaria de journald" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "No se guarda el fallo recurrente después de %ds (el límite es %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" - msgstr "" -+"No se pudo guardar los datos de detección de problemas en la base de datos " -+"de abrt" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Fallo al inicializar systemd-journal watch" - -@@ -1302,6 +1424,17 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extrae los volcados de memoria de systemd-journal\n" -+"\n" -+"Las opciones -c y -e entran en conflicto debido a que ambas especifican el " -+"primer mensaje leído.\n" -+"\n" -+"-e es útil unicamente para -f porque el siguiente journal inicia leyendo\n" -+"el journal completo si la última posición vista no está disponible.\n" -+"\n" -+"La última posición fue guardada en " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" -@@ -1309,11 +1442,13 @@ msgstr "Crear nueva carpeta de problemas en DIR por cada volcado de memoria" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Inicia leyendo systemd-journal desde la posición CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Inicia leyendo systemd-journal desde el final" - -@@ -1324,40 +1459,48 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Lo mismo que -t INT, INT está especificado en plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Sigue systemd-jounal desde la última posición vista(si está disponible)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Necesitas especificar -c CURSOR o -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "No se puede abrir systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" -+"No pueden filtrarse unicamente los datos de systemd-journal a systemd-" -+"coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "No se puede buscar hacia el final del diario" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Fallo al establecer el cursor '%s' en systemd-journal" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "No se puede leer los datos del diario." - -@@ -1387,29 +1530,78 @@ msgstr "" - "La última posición vista está guardada en" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Leer archivos de journal de todos los sistemas" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Leer todos los archivos de journal de la carpeta PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "No se puede inicializar systemd-journal en la carpeta '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - "No se puede filtrar systemd-journal para los datos del kernel únicamente" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Fallo al iniciar watch desde el cursor '%s'" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1419,45 +1611,49 @@ msgstr "" - "\n" - "Extrae el cuelgue de Xorg desde el ARCHIVO (o la entrada estándar)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Prime los datos del cuelgue encontrados en la salida estándar" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Crear una carpeta de problemaa en DIR por cada crash encontrado" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "No se puede guardar la posición observada del diario" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "No se puede guardar la posición observada del diario: abierto('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "No se restaura la posición observada del diario: el archivo '%s' no existe" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "No se puede restaurar la posición observada del diario desde el archivo '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "No se puede restaurar la posición observada del diario: la dirección '%s' no " - "es un archivo normal" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1465,12 +1661,12 @@ msgstr "" - "No se puede restaurar la posición observada del diario: el archivo '%s' " - "excede el límite de tamaño %dB" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "No se puede restaurar la posición observada del diario: abierto('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1478,7 +1674,7 @@ msgstr "" - "archivo completo '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Fallo al mover el diario a un cursor desde el archivo '%s'" -@@ -1805,10 +2001,10 @@ msgid "" - "and take up disk space. However, unlike RetraceServer, doesn't send coredump " - "to remote machines." - msgstr "" --"Necesita descargar paquetes de información de depuración, lo que podría " -+"Se necesita descargar paquetes de información de depuración, lo que podría " - "tardar un tiempo considerable y ocupar espacio en disco. Sin embargo, a " - "diferencia de RetraceServer, no se envía el volcado de memoria a ningún " --"equipo remotos." -+"equipo remoto." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" -@@ -1970,7 +2166,7 @@ msgstr "No se pudo conectar a '%s'." - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." --msgstr "Error al establecer enlace de certificado." -+msgstr "Error al establecer hook de certificado." - - #: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." -@@ -2020,15 +2216,16 @@ msgstr "Error al apagar NSS." - msgid "Sleeping for %d seconds" - msgstr "Durmiendo por %d segundos" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" --"Ha ocurrido un problema de kernel debido a un BIOS dañado. Infortunadamente, " --"los mantenedores de kernel no pueden corregir dichos problemas." -+"Ha ocurrido un problema de kernel debido a una BIOS defectuosa. " -+"Desafortunadamente, los mantenedores de kernel no pueden corregir dichos " -+"problemas." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2036,7 +2233,7 @@ msgstr "" - "Ha ocurrido un problema de kernel, pero su hardware no tiene soporte, por lo " - "tanto los mantenedores de kernel no pueden corregir este problema." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2046,24 +2243,24 @@ msgstr "" - "%s). Los mantenedores del núcleo no pueden diagnosticar informes de núcleos " - "dañados." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Módulos manchados: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de ids de errores" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especifique la url del servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especifique el lanzamiento" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2073,22 +2270,22 @@ msgstr "" - "\n" - "Buscar actualizaciones en el servidor bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Buscando actualizaciones" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "No se encontraron actualizaciones para este paquete" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La versión local del paquete es mas nueva que la disponible en las " - "actualizaciones" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2116,124 +2313,135 @@ msgstr "Imprimir los oopses encontrados" - msgid "Delete files with found oopses" - msgstr "Borrar los archivos con oopses encontrados" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' identificado más de una carpeta de problema" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Uso: abrt-cli [--version] COMANDO [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Listar problemas [en DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Retirar carpeta de problemas DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizar y reportar datos de problemas en DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimir información sobre DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Imprima el conteo de las fallas recientes" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Procesando múltiples problemas" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opciones]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Listar únicamente problemas no reportados" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Muestre el reporte detallado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Listar sólo los problemas más recientes que la marca de tiempo especificada" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Listar sólo los problemas más viejos que la marca de tiempo especificada" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " - "issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" --"The Autoreporting feature is disabled. Please consider enabling it by " --"issuing\n" --"'abrt-auto-reporting enabled' as a user with root privileges\n" -+"El reporte automático de errores está desactivado. Puede activarlo " -+"ejecutando\n" -+"'abrt-auto-reporting enabled' como usuario con privilegios de root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Los textos de mayor longitud que éste se mostrarán abreviados" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "No se encontró la carpeta de problema '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Imprimir únicamente el conteo del problema sin ningún mensaje" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Imprimir únicamente los problemas más recientes que la marca de tiempo " - "especificada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT a detectado %u problema(s). Para más información ejecute: abrt-cli list " - "%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [opciones] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Elimina PROBLEM_DIR después de reportarlo" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Borrando '%s'" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [opciones] DIR..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Elimina PROBLEM_DIR después de reportarlo" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Acciones: eliminar(rm), información(i), omitir(s):" -@@ -2242,26 +2450,181 @@ msgstr "Acciones: eliminar(rm), información(i), omitir(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Acciones: eliminar(rm), reporte(e), información(i), omitir(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Reportando '%s'" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Para el siguiente problema presione la tecla ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Without -- puesto que el argumento se repite sobre todos los problemas " - "detectados." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Selecciona únicamente los problemas después del tiempo especificado" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/et.po b/po/et.po -index 97e99c2..b45ae6c 100644 ---- a/po/et.po -+++ b/po/et.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/et/)\n" - "Language: et\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,102 +29,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' omandamine nurjus" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Teavita" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -134,6 +134,17 @@ msgstr "" - "\n" - "Aplett, mis teavitab kasutajat, kui ABRT on tuvastanud uusi probleeme\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -155,7 +166,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -188,30 +201,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -237,14 +262,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -256,11 +281,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Probleemide kataloog" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Seadistuste fail" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -274,24 +299,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [valikud]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logi syslog-i" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lisa programminimed logisse" - -@@ -299,60 +325,50 @@ msgstr "Lisa programminimed logisse" - msgid "Unknown error" - msgstr "Tundmatu viga" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ei ole korrektne probleemi kataloog" -+msgid "'%s' is not a valid element name" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ei ole korrektne probleemi kataloog" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Pole autenditud" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -360,12 +376,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Välju peale NUM sekundit tegevusetust" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Seda rakendust peab käivitama administraatori õigustes." - -@@ -386,18 +402,22 @@ msgstr "Deemoniks ei minda" - msgid "Log to syslog even with -d" - msgstr "Logi syslog-i isegi koos -d'ga" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Käivita SÜNDMUS KATALOOGIS" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -427,73 +447,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -505,68 +526,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -590,18 +611,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "Probleemi kataloogi kustutamine nurjus: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Probleemi nimekirja pärimine üle abrt-dbus'i nurjus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -647,7 +676,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-i tagasijälituse parsimine nurjus" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -742,12 +771,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -861,14 +922,43 @@ msgstr "Puuduv silumisinfo fail: {0}" - msgid "All debuginfo files are available" - msgstr "Kõik silumisinfo failid on saadaval" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1089,7 +1179,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Sama kui -d DumpLocation, DumpLocation määratakse abrt.conf failis" - -@@ -1099,16 +1190,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Tee probleemide kataloog kõikidele loetavaks" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Trüki otsingustringid stdout-i ja välju" - -@@ -1117,8 +1210,12 @@ msgstr "Trüki otsingustringid stdout-i ja välju" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1138,6 +1235,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1161,11 +1259,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1179,16 +1279,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1196,18 +1299,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1226,14 +1332,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1242,70 +1351,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Trüki leitud krahhi andmed standardsesse väljundisse" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1828,19 +1987,19 @@ msgstr "NSS-i sulgemine nurjus." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1849,44 +2008,44 @@ msgstr "" - "Tekkis tuuma probleem, aga sinu masina tuum on ebapuhas (lipud:%s).\n" - "Tuuma haldajad ei suuda diagnoosida ebapuhtaid raporteid." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Vigade id-e nimekiri" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Määra bodhi serveri url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Määra väljalase" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Uuenduste otsimine" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Sellele pakile uuendusi ei leitud" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Selle paki kohalik versioon on uuem kui saadavaloleval värskendusel" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1908,65 +2067,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Kasutamine: abrt-cli [--versioon] KÄSK [KATALOOG]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Eemalda probleemide kataloog KATALOOG" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analüüsi ja teavita probleemide andmed KATALOOGis" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Kuva infot KATALOOGi kohta" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Kuva detailne raport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1974,49 +2134,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [valikud] KATALOOG..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2025,24 +2195,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/eu.po b/po/eu.po -index 1e1ce98..36c79c9 100644 ---- a/po/eu.po -+++ b/po/eu.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/eu/)\n" - "Language: eu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurazio fitxategia" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [aukerak]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "Errore ezezaguna" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Programa hau root bezala exekutatu behar da." - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "Ezin da chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1777,64 +1936,64 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Eguneraketen bila" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ez da eguneraketarik aurkitu pakete honentzat" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "Paketearen bertsio lokala eskuragarri dauden eguneraketak baino berriagoa da" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Erabilera: abrt-cli [--version] KOMANDOA [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/fa.po b/po/fa.po -index 84377cd..820fec0 100644 ---- a/po/fa.po -+++ b/po/fa.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "language/fa/)\n" - "Language: fa\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "گزارش" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -153,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -186,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -235,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -254,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -272,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "در syslog سیاهه شد" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -297,60 +323,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "دیمون سازی نکن" - msgid "Log to syslog even with -d" - msgstr "هم‌چنین در syslog با -d سیاهه شد" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "واکاوی دنباله برای %s شکست خورد" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1778,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/fi.po b/po/fi.po -index ff44364..b34f717 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -8,126 +8,134 @@ - # Ville-Pekka Vainio , 2011 - # Ville-Pekka Vainio , 2011-2013 - # Ville Skyttä , 2011 -+# Juhani Numminen , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2016-01-12 01:09-0500\n" -+"Last-Translator: Juhani Numminen \n" - "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/fi/)\n" - "Language: fi\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Ongelmien raportointi" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Katsele ja raportoi ohjelmien kaatumisia" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "" -+msgstr "Hakemistoa ”%s” ei voida avata kirjoittamista varten" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" --msgstr "" -+msgstr "Ilmoitusta ei voida sulkea: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Ilmoita" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Käynnistä uudelleen" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Ongelma on raportoitu automaattisesti." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Ongelma raportoidaan, kun internet-" -+"yhteys on saatavilla." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Ota yhteyttä kehittäjään, jos haluat " -+"raportoida ongelman." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Valitettavasti %s näyttää kaatuneen. Jos haluat auttaa ongelman " -+"selvittämisessä, lähetä virheilmoitus." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "Ei voida näyttää ilmoitusta: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -138,13 +146,24 @@ msgstr "" - "Ohjelma, joka huomauttaa käyttäjälle uusista ABRT:n havaitsemista " - "ongelmista\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Kysy ennen hakemiston varastamista" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Lähetä uReport automaattisesti" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" -@@ -159,7 +178,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -192,42 +213,54 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_Sulje" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "" -+msgstr "_Oletukset" - - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "" -+msgstr "Ongelmienraportointiasetukset" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" -@@ -235,20 +268,23 @@ msgstr "" - - #: ../src/configuration-gui/main.c:105 - msgid "About" --msgstr "" -+msgstr "Tietoja" - - #: ../src/configuration-gui/main.c:106 - msgid "Quit" --msgstr "" -+msgstr "Lopeta" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c ASETUSTIEDOSTO] [-r CHROOT] -d HAK\n" -+"\n" -+"Kysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -260,42 +296,45 @@ msgstr "" - msgid "Problem directory" - msgstr "Ongelmahakemisto" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Asetustiedosto" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Käytä tätä hakemistoa RPM-juurihakemistona" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d HAK\n" -+"\n" -+"Tallenna säiliön metatiedot" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [valitsimet]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Kirjoita lokia syslogiin" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lisää ohjelmanimet lokiin" - -@@ -303,60 +342,50 @@ msgstr "Lisää ohjelmanimet lokiin" - msgid "Unknown error" - msgstr "Tuntematon virhe" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "”%s” ei ole kelvollinen ongelmakansio" -+msgid "'%s' is not a valid element name" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "”%s” ei ole kelvollinen ongelmakansio" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "" -+msgstr "Ei käyttöoikeutta" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" -+msgid "'%s' element can't be modified" -+msgstr "elementtiä ”%s” ei voi muokata" -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -364,12 +393,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Lopeta NUM sekunnin toimettomuuden jälkeen" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Tämä ohjelma täytyy suorittaa pääkäyttäjänä." - -@@ -390,18 +419,22 @@ msgstr "Älä aseta taustaprosessiksi" - msgid "Log to syslog even with -d" - msgstr "Kirjoita lokia syslogiin myös valitsimen -d kanssa" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Suorita TAPAHTUMA HAKemistoissa" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -431,73 +464,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -509,68 +543,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Ei ole kansio: ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (alkaa kauttaviivalla)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (alkaa pisteellä)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (sisältää ”..”)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (sisältää välilyönnin)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "" -+msgstr "Ohitetaan: ”{0}” (sisältää sarkaimen)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -594,18 +628,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -646,7 +688,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Kohteen %s pinolistauksen jäsentäminen epäonnistui" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -735,12 +777,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -850,14 +924,43 @@ msgstr "Puuttuva debuginfo-tiedosto: {0}" - msgid "All debuginfo files are available" - msgstr "Kaikki debuginfo-tiedostot ovat saatavilla" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1072,7 +1175,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Sama kuin -d DumpLocation, DumpLocation on määritetty tiedostossa abrt.conf" -@@ -1083,16 +1187,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Tee ongelmahakemistosta kaikkien luettava" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1101,8 +1207,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1122,6 +1232,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1145,11 +1256,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1163,16 +1276,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1180,18 +1296,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1210,14 +1329,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1226,70 +1348,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1812,19 +1984,19 @@ msgstr "NSS:n sammuttaminen epäonnistui." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1834,44 +2006,44 @@ msgstr "" - " %s). Ytimen ylläpitäjät eivät pysty tutkimaan tärvellyistä ytimistä tehtyjä " - "raportteja." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1893,65 +2065,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Käyttö: abrt-cli [--version] KOMENTO [HAK]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Poista ongelmallinen hakemisto HAK" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analysoi ja raportoi ongelmadata HAKemistossa" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Tulosta tietoja HAKemistosta" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Näytä yksityiskohtainen raportti" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1959,49 +2132,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [valinnat] HAK..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2010,24 +2193,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/fr.po b/po/fr.po -index c106602..43a8e21 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -17,128 +17,145 @@ - # Sam Friedmann , 2014 - # Vincent HERBER , 2011 - # Vincent , 2011 -+# Jibec , 2015. #zanata - # Julie Carbone , 2015. #zanata -+# Maxim Therrien , 2015. #zanata - # dominique , 2015. #zanata -+# Jérôme Bivia , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-25 10:42-0500\n" --"Last-Translator: dominique \n" -+"PO-Revision-Date: 2016-01-16 11:19-0500\n" -+"Last-Translator: Jérôme Bivia \n" - "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" - "language/fr/)\n" - "Language: fr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Signalement de problèmes" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Voir et signaler des incidents d'application" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Impossible de s'approprier « %s »" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Impossible de fermer la notification : %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Oups!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" --msgstr "Rapporter" -+msgstr "Signaler" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Redémarrer" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " -+"problème a été automatiquement signalé." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Le " -+"problème sera signalé lorsque le réseau sera disponible." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu incident avec %s. Veuillez " -+"contacter le développeur si vous souhaitez signaler le problème." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident avec %s. Si vous " -+"souhaitez aider à résoudre le problème, transmettez un rapport." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " -+"Le problème a été automatiquement signalé." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident dans un composant. " -+"Le problème sera signalé quand le réseau sera disponible." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Nous sommes désolés, il semble qu'il y ait eu un incident. Si vous souhaitez " -+"aider à résoudre le problème, transmettez un rapport." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Impossible d'afficher la notification : %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Impossible de lire à partir du canal gio : « %s »" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Impossible de déterminer l'encodage sur le canal gio : %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Impossible d'activer le mode non bloquant sur le canal gio : %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -146,9 +163,20 @@ msgid "" - msgstr "" - "& [-v] [DIR]...\n" - "\n" --"Appliquette notifiant l'utilisateur lorsque de nouveaux incidents sont " -+"Appliquette informant l'utilisateur lorsque de nouveaux incidents sont " - "détectés par ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Demander avant d'occuper furtivement un répertoire" -@@ -159,25 +187,21 @@ msgstr "Envoyer automatiquement le « uReport »" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "Rapporter en mode abrégé" -+msgstr "Signalement en mode abrégé" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "Rapporter silencieusement en mode abrégé" -+msgstr "Signalement silencieux en mode abrégé" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Le fichier du vidage de la mémoire est nécessaire pour générer la trace de " --"la pile — cette opération est consommatrice de temps et d'espace. ABRT " --"dispose d'un service générant la trace de la pile à partir du vidage de la " --"mémoire, mais vous devez téléverser ce vidage pour bénéficier du service. Si " --"cette option est désactivée, ABRT téléversera le vidage de la mémoire sans " --"demander la permission." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -190,7 +214,7 @@ msgstr "" - "que ABRT a besoin d'un répertoire dans lequel il puisse écrire, ce " - "répertoire est déplacé de l'emplacement système vers votre répertoire " - "personnel. Quand cette option est désactivée, ABRT déplace le répertoire des " --"données de l'incident sans rien demander." -+"données de l'incident sans demander." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" -@@ -202,7 +226,7 @@ msgstr "" - "Un « uReport » est une courte description de l'incident totalement anonyme. " - "ABRT utilise des « uReports » pour une détection rapide et globale des " - "doublons. Dans la configuration par défaut, le « uReport » est envoyé dès le " --"début du processus de rapport. Quand cette option est activée, les " -+"début du processus de signalement. Quand cette option est activée, les " - "« uReports » sont adressés automatiquement immédiatement après la détection " - "de l'incident." - -@@ -215,7 +239,8 @@ msgstr "" - "Quand cette option est activée, le processus d'envoi de rapport initié en " - "cliquant sur le bouton Rapporter dans la bulle de notification d'incident " - "peut être interrompu après l'envoi du « uReport ». Vous pourrez toujours " --"utiliser le navigateur d'incident par défaut pour faire un rapport complet." -+"utiliser le navigateur d'incident par défaut pour faire un signalement " -+"complet." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 - msgid "" -@@ -223,14 +248,10 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" - "Quand cette option est activée, ABRT n'affiche aucune notification des " --"incidents rapportés. Elle ne prend effet que si le mode rapport abrégé est " --"activé." -+"incidents signalés. Elle ne prend effet que si le mode Signalement abrégé " -+"est activé." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Demander avant de téléverser le vidage de la mémoire" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -238,15 +259,15 @@ msgstr "" - "Quand cette option est activée, ABRT crée toujours un ticket d'anomalie à " - "accès restreint si des données possiblement sensibles ont été détectées." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Demander un ticket privé pour informations sensibles" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifier des incidents incomplets" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -257,6 +278,22 @@ msgstr "" - "rapports d'incidents valables, ABRT ne vous autorise pas à soumettre ces " - "incidents." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Fermer" -@@ -282,14 +319,18 @@ msgstr "À propos" - msgid "Quit" - msgstr "Quitter" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Interroge la base de données des paquets et sauvegarde les noms du paquet et " -+"du composant" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -301,42 +342,45 @@ msgstr "" - msgid "Problem directory" - msgstr "Répertoire des incidents" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Fichier de configuration" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Utiliser ce répertoire comme racine RPM" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Sauvegarder les métadonnées du conteneur" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Répertoire racine pour lancer les commandes du conteneur" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utiliser NUM en tant qu'UID client" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Journaliser vers syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Ajouter le nom des programmes dans le journal" - -@@ -344,78 +388,68 @@ msgstr "Ajouter le nom des programmes dans le journal" - msgid "Unknown error" - msgstr "Erreur inconnue" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "« %s » n'est pas un répertoire d'incidents valide" -+msgid "'%s' is not a valid element name" -+msgstr "« %s » n'est pas un nom d'élément valide" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "L'élément « %s » ne peut pas être modifié" -+msgid "'%s' is not a valid problem directory" -+msgstr "« %s » n'est pas un répertoire d'incidents valide" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Interdit" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Impossible d'accéder à l'incident pour effectuer des modifications" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "L'élément « %s » ne peut être modifié" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" --"Échec du chown sur le répertoire. Vérifier les journaux du système pour plus " -+"Échec du chown sur le répertoire. Vérifiez les journaux du système pour plus " - "de détails." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "« %s » n'est pas un nom d'élément valide" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Impossible d'obtenir la taille de « %s »" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Il ne reste plus d'espace pour les incidents" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant " -+"Le nom « %s » a été perdu, veuillez vérifier qu'un autre service utilisant " - "ce même nom ne tourne pas.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Quitter après NUM secondes d'inactivité" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Le programme doit être lancé en tant que root." - -@@ -442,18 +476,22 @@ msgstr "Ne pas lancer le démon" - msgid "Log to syslog even with -d" - msgstr "Journaliser vers syslog même avec -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Exécuter EVENT sur DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Communiquer directement à l'utilisateur" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -487,94 +525,95 @@ msgstr "Daemize" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "Nombre de moteurs concurrents. La valeur par défaut est :" -+msgstr "Nombre de moteurs concurrents. La valeur par défaut est " - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "Taille maximale de cache en Mio. La valeur par défaut est" -+msgstr "Taille maximale de cache en MiO. La valeur par défaut est " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Désactive l'authentification" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nom d'utilisateur du Support Red Hat" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Si le mot de passe du Support Red Hat n'est pas fourni, vous serez invité à " - "en créer un." - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Types ou chemins de certificat uReport SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Vous devez également indiquer --username pour --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "Vous pouvez utiliser --username ou --certificate" -+msgstr "Vous pouvez utiliser soit --username ou --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "Vous pouvez utiliser --username ou --anonymous" -+msgstr "Vous pouvez utiliser soit --username ou --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "Vous pouvez utiliser --anonymous ou --certificate" -+msgstr "Vous pouvez utiliser soit --anonymous ou --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Nombre d'arguments non valide" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valeur de l'option inconnue : « %s »\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Mot de passe :" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Impossible de continuer sans mot de passe\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "Autoreporting authentifié avec HTTP" -+msgstr "Signalement automatique authentifié avec HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "Autoreporting authentifié avec le Client SSL" -+msgstr "Signalement automatique authentifié avec le Client SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Julie Carbone --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "Autoreporting anonyme" -+msgstr "Signalement automatique anonyme" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -595,79 +634,79 @@ msgstr "" - "stockées\n" - " FILENAME - Nom de fichier de l'archive téléversée\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "« {0} » n'est pas un répertoire" -+msgstr "'{0}' n'est pas un répertoire" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "Ignorer : « {0} » (commence par une barre oblique)" -+msgstr "Ignoré : '{0}' (commence par une barre oblique)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "Ignorer : « {0} » (commence par un point)" -+msgstr "Ignoré : '{0}' (commence par un point)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "Ignorer : « {0} » (contient ...)" -+msgstr "Ignoré : '{0}' (contient ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "Ignorer : « {0} » (contient un espace)" -+msgstr "Ignoré : '{0}' (contient un espace)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "Ignorer : « {0} » (contient un onglet)" -+msgstr "Ignoré : '{0}' (contient une tabulation)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "Impossible de modifier le répertoire sur « {0} »" -+msgstr "Impossible de modifier le répertoire sur '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Type de fichier inconnu : « {0} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Impossible de créer un répertoire de travail dans « {0} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Impossible de déplacer « {0} » vers « {1} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Impossible de copier « {0} » sur « {1} »" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Erreur de vérification sur « {0} »" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Décompression de « {0} »" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Impossible de créer le répertoire « {0} »" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Impossible de décompresser « {0} »" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "Traitement de « {0} » réussi" - -@@ -691,21 +730,29 @@ msgstr "chown impossible sur « %s » : %s" - msgid "Deleting problem directory failed: %s" - msgstr "La suppression du répertoire d'incidents a échoué : %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Impossible d'obtenir la liste des incidents depuis abrt-dbus : %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Impossible de tester si l'élément existe via abrt-dbus : %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -738,9 +785,8 @@ msgid "" - msgstr "" - "& [options] -d DIR\n" - "\n" --"Analyse le backtrace C/C++, crée le hash de duplication, évalue la trace " --"arrrière et identifie la fonction du plantage dans le répertoire DIR des " --"incidents" -+"Analyse la trace C/C++, crée le hash de duplication, évalue la trace arrière\n" -+"et identifie la fonction du plantage dans le répertoire DIR des incidents" - - #. - #. * The parser failed. Compute the duphash from the executable -@@ -750,9 +796,9 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "Erreur lors de l'analyse du backtrace pour %s" -+msgstr "Erreur lors de l'analyse de la trace arrière pour %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Fil d'exécution planté introuvable" - -@@ -771,7 +817,7 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "Analyse en cours du vidage de la mémoire '%s'" -+msgstr "Analyse en cours du vidage de la mémoire « %s »" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-analyze-core.in:110 -@@ -787,7 +833,7 @@ msgstr "Utilisation : %s [-v] [-o FICHIER_SORTIE] -c FICHIER_CORE" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-analyze-core.in:164 - msgid "COREFILE is not specified" --msgstr "Le FICHIER_CORE n'est pas indiqué" -+msgstr "Le COREFILE n'est pas indiqué" - - #: ../src/plugins/abrt-action-analyze-oops.c:37 - msgid "" -@@ -797,7 +843,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcule et enregistre l'UUID et le DUPHASH pour le oops dans le répertoire " -+"Calcule et enregistre l'UUID et le DUPHASH pour le oups dans le répertoire " - "des incidents DIR" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 -@@ -807,6 +853,11 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"La trace ne contient pas assez de cadres de fonction pertinentes pour être " -+"rapportée. Bien qu'agaçant, cela ne démontre pas nécessairement un problème " -+"avec votre ordinateur. ABRT ne vous permettera pas de créer un rapport dans " -+"le système de suivi des bogues, mais vous pouvez contacter les mainteneurs " -+"du noyau via courriel." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -832,7 +883,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident " -+"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident en " - "python" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 -@@ -845,7 +896,7 @@ msgstr "Le fichier {0} n'existe pas" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" --msgstr "Extraction du texte du oops depuis le vidage mémoire" -+msgstr "Extraction du texte du oups depuis le vidage mémoire" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" -@@ -855,13 +906,13 @@ msgstr "Impossible de traiter {0}:\n" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "Impossible d'extraire le message oops : « {0} »" -+msgstr "Impossible d'extraire le message oups : « {0} »" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "Extraction réussie du texte du oops" -+msgstr "Extraction du texte du oups réussie" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -869,6 +920,38 @@ msgstr "" - "Le journal du noyau indique que des erreurs matérielles ont été détectées.\n" - "Ce problème n'est donc a priori pas logiciel.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -886,7 +969,7 @@ msgstr "Répertoires debuginfo supplémentaires" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" -+msgstr "Tuer gdb s'il tourne pendant plus de NUM secondes" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -894,7 +977,7 @@ msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" --msgstr "Le backtrace est généré et enregistré, %u octets" -+msgstr "La trace arrière a été générée et enregistrée, %u octets" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 - msgid "" -@@ -904,8 +987,8 @@ msgid "" - msgstr "" - "& [-v] [-r] -d DIR\n" - "\n" --"Créer une trace du vidage mémoire à partir du vidage mémoire et du binaire " --"correspondant" -+"Créer une trace arrière du vidage mémoire à partir du vidage mémoire et du " -+"binaire correspondant" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 - msgid "Do not hash fingerprints" -@@ -930,7 +1013,7 @@ msgid "Exiting on user command" - msgstr "Arrêt à la demande de l'utilisateur" - - #: ../src/plugins/abrt-action-install-debuginfo.in:89 --#, c-format -+#, fuzzy, c-format - msgid "" - "Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" - " [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -@@ -955,6 +1038,30 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Installe les informations de déboguage pour tous les BUILD_IDS listés dans " -+"BUILD_IDS_FILE\n" -+"dans CACHEDIR, utilisant TMPDIR en tant que dossier temporaire.\n" -+"Les anciens fichiers dans CACHEDIR sont supprimés jusqu'à temps que le " -+"répertoire soit plus petit que SIZE.\n" -+"\n" -+"Lit la configuration /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Être verbeux\n" -+" -y Non-interactif, assume « Oui » à toutes les questions\n" -+" --ids Défaut: build_ids\n" -+" --tmpdir Défaut: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Défaut: /var/cache/abrt-di\n" -+" --size_mb Défaut: 4096\n" -+" --pkgmgr Défaut: PackageManager de CCpp.conf ou 'dnf'\n" -+" -e,--exact Télécharge seulement les fichiers spécifiés\n" -+" --repo Motif à utiliser lors de la recherche de dépôts\n" -+" Défaut: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -974,10 +1081,12 @@ msgstr "{0} des fichiers debuginfo ne sont pas installés" - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" -+"La configuration de l'addition CCpp est invalide, gestionnaire de paquets " -+"invalide: « %s »" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" --msgstr "Le fichier requis est manquant : {0}" -+msgstr "Fichier requis manquant : {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" -@@ -987,7 +1096,36 @@ msgstr "Fichier debuginfo manquant : {0}" - msgid "All debuginfo files are available" - msgstr "Tous les fichiers debuginfo sont disponibles" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -997,7 +1135,7 @@ msgstr "" - "sensibles). Si votre réponse est « Non », une analyse locale sera effectuée " - "(ce qui pourrait télécharger une énorme quantité de données)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1041,7 +1179,7 @@ msgstr "Impossible de lancer « %s », le message d'erreur est : « %s »" - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "N'est pas un numéro dans le fichier « %s »" -+msgstr "Non-numéro dans le fichier « %s »" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:99 -@@ -1066,7 +1204,7 @@ msgstr "uReport a déjà été envoyé, il ne sera pas envoyé à nouveau" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "Ajout de votre nom à la liste de CC de l'anomalie sur Bugzilla" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1116,7 +1254,7 @@ msgstr "Signal causé par l'écriture dans un tube cassé" - - #: ../src/plugins/abrt-gdb-exploitable:607 - msgid "ABRT signal (abort() was called?)" --msgstr "Signal ABRT (abort() a été appelé ?)" -+msgstr "Signal ABRT (abort() a été appelé?)" - - #: ../src/plugins/abrt-gdb-exploitable:616 - msgid "XCPU signal (over CPU time limit)" -@@ -1132,7 +1270,7 @@ msgstr "Signal TRAP (peut être une anomalie dans un débogueur/traceur)" - - #: ../src/plugins/abrt-gdb-exploitable:628 - msgid "SYS signal (unknown syscall was called?)" --msgstr "Signal SYS (un appel système inconnu a été appelé ?)" -+msgstr "Signal SYS (un appel système inconnu a été appelé?)" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" -@@ -1144,7 +1282,7 @@ msgstr "Division par zéro" - - #: ../src/plugins/abrt-gdb-exploitable:641 - msgid "Illegal instruction (jump to a random address?)" --msgstr "Instruction illégale (passage à une adresse aléatoire ?)" -+msgstr "Instruction illégale (passage à une adresse aléatoire?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" -@@ -1160,7 +1298,7 @@ msgstr "Écriture à une adresse invalide" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" --msgstr "La sous-routine retourne à une adresse invalide (pile corrompue ?)" -+msgstr "La sous-routine retourne à une adresse invalide (pile corrompue?)" - - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 -@@ -1182,15 +1320,15 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "Raison possible de l'arrêt brutal :" -+msgstr "Raison possible de l'arrêt brutal : " - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " --msgstr "Taux d'exploitabilité (échelle 0-9) :" -+msgstr "Taux d'exploitabilité (échelle 0-9) : " - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "Instruction actuelle :" -+msgstr "Instruction actuelle : " - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" -@@ -1219,12 +1357,12 @@ msgid "" - msgstr "" - "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" - "\n" --"Extrait le oops de FILE (ou de l'entrée standard)" -+"Extrait le oups de FILE (ou de l'entrée standard)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" --msgstr "Afficher les oops noyau trouvés sur la sortie standard" -+msgstr "Afficher les oups noyau trouvés sur la sortie standard" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users -@@ -1233,15 +1371,16 @@ msgstr "Afficher les oops noyau trouvés sur la sortie standard" - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" --"Créer un nouveau répertoire d'incidents dans DIR pour chaque oops découvert" -+"Créer un nouveau répertoire d'incidents dans DIR pour chaque oups découvert" - - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" --"Identique à l'option -d emplacement_de_vidage, l'emplacement du vidage est " -+"Identique à l'option -d EmplacementDeVidage, l'emplacement du vidage est " - "spécifié dans abrt.conf" - - #: ../src/plugins/abrt-dump-oops.c:104 -@@ -1250,16 +1389,18 @@ msgstr "Sauvegarder les informations extraites dans PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Rendre le répertoire des incidents lisible par tout le monde" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Limiter la création de répertoire d'incident à 1 par seconde" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" - -@@ -1268,29 +1409,36 @@ msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" - msgid "Failed to compile regex" - msgstr "Échec de la compilation des expressions régulières" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Impossible de mettre à jour l'incident : plus d'un oops trouvé" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" - msgstr "" -+"Échec de l'obtention de toutes les informations nécessaires de journald" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Ne sauvegardera pas un plantage répétitif après %ds (limite: %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" - msgstr "" -+"Échec de la sauvegarde des données du problème détecté dans la base d'ABRT" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" --msgstr "" -+msgstr "Échec de l'initialisation de la surveillance systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" -@@ -1305,60 +1453,84 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extrait un vidage de processus de systemd-journal\n" -+"\n" -+"Les options -c et -e entrent en conflit car les deux spécifient le premier " -+"message de lecture.\n" -+"\n" -+"-e n'est utile seulement pour -f car la suite du journal débute par la " -+"lecture\n" -+"du journal entier si la dernière position lue n'est pas disponible.\n" -+"\n" -+"La dernière position lue est sauvegardée dans " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" - msgstr "" -+"Créer un nouveau répertoire d'incidents dans DIR pour chaque vidage de la " -+"mémoire découvert" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "Débuter la lecture du systemd-journal depuis la position du CURSEUR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "Débuter la lecture du systemd-journal depuis la fin" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Limiter la création de répertoire d'incident à 1 par INT seconde(s)" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Identique à -t INT, INT est spécifié dans plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" -+"Suivre systemd-journal depuis la dernière position lue (si disponible)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "Vous devez spécifier soit -c CURSEUR ou -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "Impossible d'ouvrir systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "Impossible de déplacer le curseur vers la fin du journal" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" -+"Impossible de définir la position du curseur de systemd-journal « %s »" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Impossible de lire les données du journal." - -@@ -1377,14 +1549,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Lire tous les fichiers de journaux de toutes les machines" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Lire tous les fichiers de journaux dans le répertoire PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1393,12 +1568,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1408,59 +1629,63 @@ msgstr "" - "\n" - "Extraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Afficher les données de plantage sur la sortie standard" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Créer un répertoire d'incidents dans DIR pour chaque incident découvert" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2006,7 +2231,7 @@ msgstr "Impossible de fermer NSS." - msgid "Sleeping for %d seconds" - msgstr "Mise en sommeil pour %d secondes" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2014,7 +2239,7 @@ msgstr "" - "Un problème de noyau s'est produit car le BIOS est cassé. Malheureusement, " - "de tels problèmes ne peuvent pas être corrigés par les mainteneurs du noyau." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2023,7 +2248,7 @@ msgstr "" - "charge, les mainteneurs du noyau ne sont donc pas en mesure de corriger ce " - "problème." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2033,24 +2258,24 @@ msgstr "" - "Les mainteneurs du noyau n'ont pas la possibilité de diagnostiquer les " - "rapports teintés." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Modules teintés : %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Liste des identifiants d'anomalies" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Spécifier l'URL d'un serveur bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Spécifier une révision" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2060,21 +2285,21 @@ msgstr "" - "\n" - "Rechercher des mises à jour sur le serveur bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Recherche de mises à jour" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Mises à jour introuvables pour ce paquet" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La version de ce paquet est plus récente que les mises à jour disponibles" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2103,69 +2328,70 @@ msgstr "Afficher les oops trouvés" - msgid "Delete files with found oopses" - msgstr "Supprimer les fichiers avec des oops trouvés" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "« %s » identifie plus d'un répertoire d'incident" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Usage : abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Liste des incidents [dans DIR]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Supprimer le répertoire d'incidents DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyser et rapporter les données des incidents dans DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimer des informations sur DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Affiche le nombre de plantages récents" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Traiter de multiples problèmes" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Répertorier les problèmes non rapportés uniquement" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Afficher le rapport détaillé" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Répertorier uniquement les problèmes plus récents que la date indiquée" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Répertorier uniquement les incidents plus anciens que la date indiquée" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2176,55 +2402,65 @@ msgstr "" - "Veuillez envisager de l'activer en effectuant\n" - "la commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Un texte plus grand que ce qui suit sera abrégé" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Répertoire d'incidents « %s » inconnu" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Affiche uniquement le nombre d'incident sans autre message" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Suppression de « %s »" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Supprimer PROBLEM_DIR après le rapport" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Suppression de « %s »" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" -@@ -2236,27 +2472,182 @@ msgstr "" - "Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Rapporter « %s »" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Sans l'argument --since, réitère tous les problèmes détectés." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/gl.po b/po/gl.po -index 16b716a..61bd784 100644 ---- a/po/gl.po -+++ b/po/gl.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/gl/)\n" - "Language: gl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,102 +29,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Non é posíbel asumir a propiedade sobre «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Non é posíbel abrir o directorio para escribir «%s»" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Non é posíbel fechar a notificación: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Informe" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Non é posíbel mostrar a notificación: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Non é posíbel ler da canle gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Non é posíbel definir a codificación da canle gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Non é posíbel activar o modo sen bloqueo para a canle gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -134,6 +134,17 @@ msgstr "" - "\n" - "Applet que notifica o usuario cando o ABRT detecta problemas novos\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -155,7 +166,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -188,30 +201,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notificar os problemas incompletos" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Pechar" -@@ -237,14 +262,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -256,11 +281,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Directorio de problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Ficheiro de configuración" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -274,24 +299,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcións]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Empregar NUM como identificador de usuario do cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Rexistrar en syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Engadir os nomes dos programas ao rexistro" - -@@ -299,63 +325,53 @@ msgstr "Engadir os nomes dos programas ao rexistro" - msgid "Unknown error" - msgstr "Produciuse un erro descoñecido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "«%s» non é un directorio de problemas válido" -+msgid "'%s' is not a valid element name" -+msgstr "«%s» non é un nome válido para un elemento" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Non é posíbel modificar o elemento «%s»" -+msgid "'%s' is not a valid problem directory" -+msgstr "«%s» non é un directorio de problemas válido" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Non autorizado " - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Non é posíbel acceder ao problema para modificar" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Non é posíbel modificar o elemento «%s»" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Fallou a execución de chown no directorio. Comprobe os rexistros do sistema " - "para máis detalles." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "«%s» non é un nome válido para un elemento" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Non é posíbel obter o tamaño de «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Non fica espazo para os problemas" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -365,12 +381,12 @@ msgstr "" - "Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en " - "execución.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Saír despois de NUM segundos de inactividade" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa débese executar como administrador." - -@@ -397,18 +413,22 @@ msgstr "Non converter en daemon" - msgid "Log to syslog even with -d" - msgstr "Rexistrar en syslog mesmo con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event DIR DE EVENTO..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Executar EVENTO en DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunicar directamente ao usuario" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -438,73 +458,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "O número de argumentos é incorrecto" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -516,68 +537,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -601,18 +622,26 @@ msgstr "Non é posíbel cambiar o propietario de «%s»: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Fallou a eliminación do directorio de problemas: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Non é posíbel obter a lista do problema de abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -661,7 +690,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Fallou a análise do trazado inverso de %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -763,12 +792,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -881,14 +942,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1103,7 +1193,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1113,16 +1204,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1131,8 +1224,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1152,6 +1249,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1175,11 +1273,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1193,16 +1293,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1210,18 +1313,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1240,14 +1346,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1256,70 +1365,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1819,64 +1978,64 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de identificadores dos fallos" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "A buscar actualizacións" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Non se atopou ningunha actualización para este paquete" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "A versión do paquete local é máis recente que as actualizacións dispoñíbeis" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1900,65 +2059,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostrar un informe detallado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1966,49 +2126,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Imprimir só o número de problemas sen ningunha mensaxe" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Imprimir só os problemas anteriores á marca temporal indicada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2017,24 +2187,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/gu.po b/po/gu.po -index 7f25c54..a95b17f 100644 ---- a/po/gu.po -+++ b/po/gu.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -23,7 +23,7 @@ msgstr "" - "language/gu/)\n" - "Language: gu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -33,102 +33,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ની માલિકી લઇ શકાતી નથી" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' ને લખવા માટે ડિરેક્ટરીને ખોલી શકાતી નથી" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "સૂચનાને બંધ કરી શકાતી નથી: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "અહેવાલ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "સૂચનાને બતાવી શકાતુ નથી: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ચેનલમાંથી વાંચી શકાતુ નથી: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ચેનલ પર એનકોડીંગ સુયોજિત કરી શકાતુ નથી: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ચેનલ માટે બ્લોક ન થાય તેવી સ્થિતિને ચાલુ કરી શકાતી નથી: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -139,6 +139,17 @@ msgstr "" - "એપલેટ કે જે વપરાશકર્તાને સૂચન કરે છે જ્યારે નવી સમસ્યાઓ ABRT દ્દારા શોધાયેલ " - "છે\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ડિરેક્ટરીની ચોરી પહેલાં પૂછો" -@@ -160,12 +171,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"coredump ફાઇલ સ્ટેક ટ્રેસને પેદા કરવા માટે જરૂરી છે કે જે સમય અને જગ્યા " --"વપરાશ ક્રિયા છે. ABRT સેવાને પૂરુ પાડે છે કે જે coredump માંથી સ્ટેક ટ્રેસને " --"પેદા કરે છે, પરંતુ તમે આ સેવા માટે coredump ને અપલોડ કરવુ જ પડશે. નિષ્ક્રિય " --"થયેલ ABRT આ વિકલ્પ સાથે તેમને પૂછ્યા વગર coredump ને અપલોડ કરશે." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -211,10 +220,6 @@ msgstr "" - "અસર થાય છે જો ટૂંકી થયેલ અહેવાલીકરણ સક્રિય થયેલ હોય." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Coredump અપલોડ કરતા પહેલા પૂછો " -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -222,15 +227,15 @@ msgstr "" - "સક્રિય થયેલ ABRT આ વિકલ્પ સાથે મર્યાદિત થયેલ પ્રવેશ સાથે હંમેશા ભૂલ ટિકીટ " - "બનાવે છે જો શક્ય સંવેદનશીલ માહિતી બનાવેલ હોય." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "સંવેદનશીલ માહિતી માટે ખાનગી ટિકિટની વિનંતી" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "અપૂર્ણ સમસ્યાઓ સૂચિત" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -240,6 +245,22 @@ msgstr "" - "વપરાશકર્તા બહાર નીકળી રહ્યા હોય. કિંમતી સમસ્યા અહેવાલને પૂરુ પાડવા માટે " - "ક્રમમાં, ABRT એ આ સમસ્યાઓને મોકલવા માટે તમને પરવાનગી આપશે નહિં." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "બંધ કરો (_C)" -@@ -265,14 +286,14 @@ msgstr "વિશે" - msgid "Quit" - msgstr "બહાર નીકળો" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -284,11 +305,11 @@ msgstr "" - msgid "Problem directory" - msgstr "સમસ્યા ડિરેક્ટરી" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "રૂપરેખાંકન ફાઇલ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -302,24 +323,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ક્લાયન્ટ uid તરીકે NUM ને વાપરો" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog માં લૉગ લો" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "લૉગ રાખવા માટે કાર્યક્રમ નામો ઉમેરો" - -@@ -327,60 +349,50 @@ msgstr "લૉગ રાખવા માટે કાર્યક્રમ ન - msgid "Unknown error" - msgstr "અજ્ઞાત ભૂલ" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ઘટકને બદલી શકાતુ નથી" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "અધિકૃત નથી" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "સૂચના માટે સમસ્યાને વાપરી શકાતુ નથી" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" -+msgid "'%s' element can't be modified" -+msgstr "'%s' ઘટકને બદલી શકાતુ નથી" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' નું માપ મેળવી શકાતુ નથી" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "સમસ્યાની જગ્યા બાકી રહેલ નથી" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "સમસ્યા ડિરેક્ટરી '%s' માંથી ઘટક '%s' ને કાઢી શકાતુ નથી" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -390,12 +402,12 @@ msgstr "" - "નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી " - "સેવા ચાલી રહી નથી.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "નિષ્ક્રિયતાની NUM સેકંડ પછી બહાર નીકળો" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "આ કાર્યક્રમ રુટ તરીકે જ ચલાવવો જોઇએ." - -@@ -422,18 +434,22 @@ msgstr "ડિમોનાઇઝ કરો નહિં" - msgid "Log to syslog even with -d" - msgstr "-d સાથે પણ syslog નો લૉગ લો" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR પર EVENT ચલાવો" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "સીધુ વપરાશકર્તા સાથે વાર્તાલાપ કરો" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -472,88 +488,89 @@ msgstr "સહવર્તી કામદારો સંખ્યા. મૂ - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB માં મહત્તમ કેશ માપ. મૂળભૂત છે" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "સત્તાધિકરણને બંધ કરો" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support વપરાશકર્તા નામ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support પાસવર્ડ, જો આપેલ ન હોય તો, તેની માટે પ્રોમ્પ્ટ કરવામાં આવશે" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL પ્રમાણપત્ર પાથ અથવા પ્રમાણપત્ર પ્રકાર" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "તમારે --password માટે --username ને પણ સ્પષ્ટ કરવુ જ જોઇએ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "તમારે ક્યાંતો --username અથવા --certificate ને વાપરી શકો છો" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "તમે ક્યાંતો --username અથવા --anonymous ને વાપરી શકો છો" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "તમે ક્યાંતો --anonymous અથવા --certificate વાપરી શકો છો" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "દલીલોની અયોગ્ય સંખ્યા" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "અજ્ઞાત વિકલ્પ કિંમત: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "પાસવર્ડ:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "પાસવર્ડ વગર ચાલુ કરી શકાતુ નથી\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL ક્લાયન્ટ સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author sweta --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "અનામિક આપોઆપ અહેવાલીકરણ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -573,83 +590,83 @@ msgstr "" - " FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ડિરેક્ટરી નથી: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "છોડી રહ્યા છે: '{0}' (સ્લેશ સાથે શરૂ કરે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "છોડી રહ્યા છે: '{0}' (બિંદુ સાથે શરૂ કરે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "છોડી રહ્યા છે: '{0}' (સમાવે છે ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "છોડી રહ્યા છે: '{0}' (જગ્યાને સમાવે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "છોડી રહ્યા છે: '{0}' (ટૅબને સમાવે છે)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' માટે ડિરેક્ટરીને બદલી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "અજ્ઞાત ફાઇલ પ્રકાર: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' માં કાર્ય કરવાની ડિરેક્ટરીને બનાવી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' થી '{1}' ને ખસેડી શકાતુ નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' થી '{1}' માં નકલ કરી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' પર ચકાસણી ભૂલ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' ને ખોલી રહ્યા છે" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ડિરેક્ટરીને બનાવી શકાતી નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ને ખોલી શકાતુ નથી" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' પ્રક્રિયા સફળતાપૂર્વક થઇ" - -@@ -673,18 +690,26 @@ msgstr "'%s' નું chown કરી શકાતુ નથી: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ડિરેક્ટરીની સમસ્યાને કાઢી નાંખવામાં નિષ્ફળતા: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus માંથી સમસ્યા યાદીને મેળવી શકાતી નથી: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -732,7 +757,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s બેકટ્રેસ પાર્સિંગ નિષ્ફળ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ભંગાણ થ્રેડ મળ્યુ નથી" - -@@ -838,7 +863,7 @@ msgstr "oops સંદેશાને કાઢી શકાતુ નથી: '{ - msgid "Oops text extracted successfully" - msgstr "Oops લખાણને સફળતાપૂર્વક કાઢી નાંખેલ છે" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -846,6 +871,38 @@ msgstr "" - "કર્નલ લૉગ સૂચવે છે કે હાર્ડવેર ભૂલો મળી આવી હતી.\n" - "આ મોટે ભાગે સોફ્ટવેર સમસ્યા નથી.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -963,7 +1020,36 @@ msgstr "ગેરહાજર debuginfo ફાઇલ: {0}" - msgid "All debuginfo files are available" - msgstr "બધી ડિબગ જાણકારી ફાઇલો ઉપલબ્ધ છે" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -973,7 +1059,7 @@ msgstr "" - "જો તમારો જવાબ 'ના' હોય તો, સ્ટેક ટ્રેસ સ્થાનિક રીતે ઉત્પન્ન કરાશે. (તે વિશાળ " - "પ્રમાણમાં માહિતીને ડાઉનલોડ કરી શકે છે)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1210,7 +1296,8 @@ msgstr "મળેલ દરેક oops માટે DIR માં નવી સ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation નાં જેવી, DumpLocation એ abrt.conf માં સ્પષ્ટ થયેલ છે" - -@@ -1220,16 +1307,18 @@ msgstr "PROBLEM માં કાઢી નાંખેલ જાણકારી - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "સમસ્યા ડિરેક્ટરીને દુનિયામાં વાંચી શકાય એ રીતે બનાવો" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "દરેક 1 સેકંડે થ્રોટલ સમસ્યા ડિરેક્ટરી નિર્માણ" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છાપો અને બહાર નીકળો" - -@@ -1239,9 +1328,13 @@ msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છ - msgid "Failed to compile regex" - msgstr "regex ને કમ્પાઇલ કરવામાં નિષ્ફળતા" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "સમસ્યાને સુધારી શકાતી નથી: એક કરતા વધારે oops મળ્યુ" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1260,6 +1353,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1283,11 +1377,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1301,16 +1397,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1318,18 +1417,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1348,14 +1450,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1364,12 +1469,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1379,58 +1530,62 @@ msgstr "" - "\n" - "FILE માંથી Xorg ભંગાણને કાઢો (અથવા મૂળભૂત ઇનપુટ)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "મૂળભૂત આઉટપુટ પર મળેલ ભંગાણ માહિતીને છાપો" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "મળેલ દરેક ભંગાણ માટે DIR માં સમસ્યા ડિરેક્ટરીને બનાવો" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1971,7 +2126,7 @@ msgstr "NSS ને બંધ કરવામાં નિષ્ફળતા." - msgid "Sleeping for %d seconds" - msgstr "%d સેકંડ માટે નિષ્ક્રિય" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1979,7 +2134,7 @@ msgstr "" - "બગડેલા BIOS ના કારણે કર્નલ સમસ્યા ઉદ્ભવી. કમનસીબે, આવી સમસ્યાઓ કર્નલના " - "માલિકોથી સુધારી શકાતી નથી." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1987,7 +2142,7 @@ msgstr "" - "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારું હાર્ડવેર આધારભૂત નથી, તેથી કર્નલ માલિકો આ " - "સમસ્યા સુધારવામાં અસમર્થ છે." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1996,24 +2151,24 @@ msgstr "" - "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારુ કર્નલને દૂષિત કરવામાં આવ્યુ છે (ફ્લેગ:%s). " - "કર્નલ સંચાલકો દૂષિત થયેલ અહેવાલોનું નિદાન કરવા માટે અસક્ષમ છે." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " લાઇસન્સ વગરનાં મોડ્યુલો: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ભૂલ ids ની યાદી" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "bodhi સર્વર url સ્પષ્ટ કરો" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "પ્રકાશન સ્પષ્ટ કરો" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2023,20 +2178,20 @@ msgstr "" - "\n" - "bodhi સર્વર પર સુધારાઓ માટે શોધો" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "સુધારા માટે શોધી રહ્યા છે" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "આ પેકેજ માટે સુધારો મળ્યો નથી" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "પેકેજની સ્થાનિક આવૃત્તિ ઉપલબ્ધ સુધારા કરતા નવી છે" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2065,66 +2220,67 @@ msgstr "મળેલ oopses ને છાપો" - msgid "Delete files with found oopses" - msgstr "મળેલ oopses સાથે ફાઇલોને કાઢી નાંખો" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' એ એક કરતા વધારે સમસ્યા ડિરેક્ટરીને ઓળખે છે" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "વપરાશ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "સમસ્યાઓની યાદી કરો [DIRs માં]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "સમસ્યા ડિરેક્ટરી DIR ને દૂર કરો" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR માં સમસ્યા માહિતીનું વિશ્ર્લેષણ અને અહેવાલ કરો" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR વિશે જાણકારીને છાપો" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "તાજેતરનાં ભંગાણોની ગણતરીને છાપો" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "ઘણી સમસ્યાઓની પ્રક્રિયા" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --help' જુઓ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "માત્ર નહિં-અહેવાલ અપાયેલ સમસ્યાઓની જ યાદી આપો" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "વિગત થયેલ અહેવાલને બતાવો" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા વધારે તાજેતરની સમસ્યાઓની યાદી કરો" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા જૂની સમસ્યાઓની ફક્ત યાદી કરો" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2135,54 +2291,64 @@ msgstr "" - "કરવાનું ધ્યાન રાખો\n" - "'abrt-auto-reporting enabled' ને રુટ હકોવાળા વપરાશકર્તા તરીકે ચલાવીને\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "આનાં કરતા વધારે લખાણને સંક્ષિપ્ત બતાવવામાં આવશે" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "આવી સમસ્યા ડિરેક્ટરી '%s' નથી" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "કોઇપણ સંદેશા વગર ફક્ત સમસ્યાની ગણતરીને છાપો" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા ફક્ત વધારે તાજેતની સમસ્યાઓને છાપો" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT એ %u સમસ્યા(ઓ) ને શોધી. વધારે જાણકારી માટે ચલાવો: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' ને કાઢી રહ્યા છે" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "અહેવાલ થયા પછી PROBLEMDIR ને દૂર કરો (_D)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' ને કાઢી રહ્યા છે" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "ક્રિયાઓ: remove(rm), info(i), skip(s):" -@@ -2193,27 +2359,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "ક્રિયાઓ: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' નો અહેવાલ કરી રહ્યા છે" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "આગળની સમસ્યા માટે ENTER ને દબાવો:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since દલીલ વગર, બધી શોધાયેલ સમસ્યાઓ પર પુનરાવર્તિત થાય છે." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "ટાઇમસ્ટેમ્પ પછી ફક્ત શોધાયેલ સમસ્યાઓને પસંદ કરે છે" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/he.po b/po/he.po -index a020d49..d6b6a71 100644 ---- a/po/he.po -+++ b/po/he.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "language/he/)\n" - "Language: he\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,108 +30,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "דווח" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -153,7 +164,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -186,30 +199,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -235,14 +260,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -254,11 +279,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -272,24 +297,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "רשום ליומן המערכת" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -297,60 +323,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "Do not daemonize" - msgid "Log to syslog even with -d" - msgstr "Log to syslog even with -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "ניתוח מידע הקריסה נכשל עבור %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1785,63 +1944,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1863,65 +2022,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1929,49 +2089,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1980,24 +2150,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/hi.po b/po/hi.po -index 7065a3f..0ec276c 100644 ---- a/po/hi.po -+++ b/po/hi.po -@@ -18,7 +18,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -28,7 +28,7 @@ msgstr "" - "language/hi/)\n" - "Language: hi\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -38,102 +38,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' का स्वामित्व नहीं ले सकता है" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "लिखने के लिए निर्देशिका नहीं खोल सकते हैं '% s' " - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "अधिसूचना बंद नहीं कर सकता है: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "रिपोर्ट" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "अधिसूचना नहीं दिखा सकता है: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio चैनल से पढ़ा नहीं जा सकता: '% s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "जिओ चैनल पर एन्कोडिंग सेट नहीं कर सकता है: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "जिओ चैनल के लिए गैर ब्लॉकिंग पर चालू नहीं कर सकता है: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -144,6 +144,17 @@ msgstr "" - "एप्प्लेट जो उपयोक्ता को अधिसूचित करता है जब नई समस्या ABRT द्वारा पायी जाती " - "है\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -164,18 +175,15 @@ msgstr "संक्षिप्त रिपोर्टिंग" - msgid "Silent shortened reporting" - msgstr "मौन संक्षिप्त रिपोर्टिंग" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"कोरडंप फाइल स्टैक ट्रैस जनित करने के लिए जरूरी है जो कि समय और स्थान की खपत " --"करने वाला काम है. ABRT ऐसी सेवा प्रदान करता है कोरडंप से स्टैक ट्रैस जनित " --"करता है लेकिन आपको इस सेवा में कोरडंप को अपलोड करना है. इस विकल्प के साथ " --"निष्क्रिय ABRT बिना पूछे कोरडंप को अपलोड करेगा." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -223,29 +231,24 @@ msgstr "" - " इस विकल्प के साथ सक्रिय ABRT रिपोर्ट किए गए समस्या को कभी नहीं दिखाता है. " - "यह तभी प्रभावी होता है जब संक्षिप्त रिपोर्टिंग सक्रिय किया जाता है." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "कोरडंप अपलोड के पहले पूछें" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "संवेदनशील सूचना के लिए निजी टिकट का निवेदन करें" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "अपूर्ण समस्या अधिसूचित करें" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -255,6 +258,22 @@ msgstr "" - "आउट है. मूल्यवान समस्या रिपोर्ट देने के क्रम में, ABRT आपको इन समस्याओं के " - "सुपुर्द करने की छूट नहीं देगा." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -281,14 +300,14 @@ msgstr "परिचय" - msgid "Quit" - msgstr "बाहर" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -300,11 +319,11 @@ msgstr "" - msgid "Problem directory" - msgstr "समस्या निर्देशिका" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "विन्यास फाइल" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -318,24 +337,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [विकल्प]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM को बतौर क्लायंट uid उपयोग करें" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "सिसलॉग में लॉग करेंसिस्टल" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "लाग करने के लिए अधिक प्रोग्राम नाम" - -@@ -343,61 +363,51 @@ msgstr "लाग करने के लिए अधिक प्रोग् - msgid "Unknown error" - msgstr "अज्ञात त्रुटि" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" -+msgid "'%s' is not a valid element name" -+msgstr "'% s' एक वैध तत्व का नाम नहीं है" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "प्राधिकृत नहीं" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "संशोधन के लिए समस्या का उपयोग नहीं कर सकते है" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' तत्व रूपांतरित नहीं हो सकता है" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chowning डायरेक्टरी विफल. अधिक जानकारी के लिए सिस्टम लॉग की जाँच करें." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'% s' एक वैध तत्व का नाम नहीं है" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' का आकार पा नहीं सकता है" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "कोई समस्या स्थान नहीं छोड़ दिया है" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "तत्व '%s' को समस्या निर्देशिका '%s' से मिटा नहीं सकता है" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -407,12 +417,12 @@ msgstr "" - "नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व " - "रखती है नहीं चल रहा हो.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM सेकेंड की निष्क्रियता के बाद बाहर निकलें" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "इस प्रोग्राम को जरूर बतौर रूट चलाया जाना चाहिए." - -@@ -438,18 +448,22 @@ msgstr "डेमॉनाइज मत करें" - msgid "Log to syslog even with -d" - msgstr "-d के साथ सिसलॉग घटना में लॉग-d के साथ सिस्" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT को DIR पर चलाएँ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "उपयोक्ता से सीधे संचार करें" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -487,89 +501,90 @@ msgstr "सहवर्ती वर्कर की संख्या. तय - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB में अधिकतम कैश आकार. तयशुदा है " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "सत्यापन बंद करें" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat समर्थन उपयोक्ता नाम" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat समर्थन कूटशब्द, यदि नहीं दिया हुआ है तो इसके लिए कोई प्रांप्ट निर्गत " - "किया जाएगा" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL प्रमाणपत्र पथ या प्रमाणपत्र प्रकार" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "आपको --username को --password के लिए निर्दिष्ट करने की जरूरत होगी" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "आप या तो --username या --certificate का प्रयोग कर सकते हैं" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "आप या तो --username या --anonymous का प्रयोग कर सकते हैं" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "आप या तो --anonymous या --certificate का प्रयोग कर सकते हैं" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "तर्क की अवैध संख्या" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "अज्ञात विकल्प मान '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "कूटशब्द:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "कूटशब्द के बिना जारी नहीं रख सकते हैं\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP सत्यापन स्वचालित रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL क्लायंट सत्यापन स्वचालित रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Rajesh Ranjan --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "अनाम स्वचालित रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -589,83 +604,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "निर्देशिका नहीं है: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "छोड़ रहा है: '{0}' (starts with slash)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "छोड़ रहा है: '{0}' (starts with dot)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "छोड़ रहा है: '{0}' (contains ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "छोड़ रहा है: '{0}' (contains space)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "छोड़ रहा है: '{0}' (contains tab)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' में निर्देशिका बदल नहीं सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "अज्ञात फाइल प्रकार: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' में कार्यशील निर्देशिका नहीं बना सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' को '{1}' में खिसका नहीं सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' को '{1}' में नहीं नक़ल ले सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' पर सत्यापन त्रुटि" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' को खोला जा रहा है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' निर्देशिका नहीं बना सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' खोल नहीं सकता है" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' को सफलतापूर्वक प्रक्रिया किया गया" - -@@ -689,18 +704,26 @@ msgstr "chown '%s' नहीं कर सकता है: %s" - msgid "Deleting problem directory failed: %s" - msgstr "समस्या निर्देशिका को मिटाना विफल रहा: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus से समस्या सूची पा नहीं सकता है: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -747,7 +770,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s के लिए बैकट्रैस विश्लेषण विफल" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "क्रैश लड़ी नहीं मिला" - -@@ -854,7 +877,7 @@ msgid "Oops text extracted successfully" - msgstr "वूप्स पाठ सफलतापूर्वक निकाले गए" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -862,6 +885,38 @@ msgstr "" - "कर्नेल लॉग बताता है कि हार्डवेयर त्रुटि का पता चला.\n" - "यह अधिक संभव है कि सॉफ्टवेयर समस्या नहीं है.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -977,7 +1032,36 @@ msgstr "अनुपस्थित डिबगइंफो फ़ाइल: {0 - msgid "All debuginfo files are available" - msgstr "सभी डिबगइंफो फ़ाइलें उपलब्ध हैं" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -987,7 +1071,7 @@ msgstr "" - "आपका उत्तर 'नहीं' है, तो एक स्टैक ट्रैस स्थानीय रूप से बनाया जाएगा. (यह बड़ी " - "मात्रा में आँकड़ा डाउनलोड कर सकता है)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1224,7 +1308,8 @@ msgstr "DIR में हर वूप्स क्षण के लिए न - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation की तरह, DumpLocation को abrt.conf में निर्दिष्ट है" - -@@ -1234,16 +1319,18 @@ msgstr "समस्या में निकाले सूचना को - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "समस्या निर्देशिका को सभी के लिए लिखने योग्य बनाएँ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "1 प्रति सेकेंड से थ्रोटल समस्या निर्देशिका निर्माण" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout में खोज स्ट्रिंग छापें और बाहर निकलें" - -@@ -1253,9 +1340,13 @@ msgstr "stdout में खोज स्ट्रिंग छापें औ - msgid "Failed to compile regex" - msgstr "रिजेक्स कंपाइल करने में विफल" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "समस्या नहीं अद्यतन कर सका: एकाधिक वूप्स मिला" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1274,6 +1365,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1297,11 +1389,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1315,16 +1409,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1332,18 +1429,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1362,14 +1462,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1378,12 +1481,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1393,58 +1542,62 @@ msgstr "" - "\n" - "फ़ाइल से Xorg क्रैश निकालें (या मानक इनपुट)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "मानक आउटपुट पर छपाई में क्रैश आँकड़ा मिला" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "DIR में हर क्रैश के लिए नयी समस्या निर्देशिका बनाएँ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1978,7 +2131,7 @@ msgstr "NSS शटडाउन करने में विफल." - msgid "Sleeping for %d seconds" - msgstr "%d सेकेंड से लिए सुप्त" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1986,7 +2139,7 @@ msgstr "" - "कर्नेल समस्या आयी, टूट बीआईओएस के कारण. दुर्भाग्य से,ऐसे समस्या देखभालकर्ता " - "ठीक करने में असमर्थ हैं." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1994,7 +2147,7 @@ msgstr "" - "कर्नेल समस्या आयी, लेकिन आपका हार्डवेयर असमर्थित है, इसलिए कर्नेल " - "देखभालकर्ता इस समस्या के निदान में असमर्थ हैं." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2003,24 +2156,24 @@ msgstr "" - "कर्नेल समस्या आयी, लेकिन आपका कर्नेल टेंट किया गया है (फ्लैग:%s). कर्नेल " - "देखभाल कर्ता टेंट किया रिपोर्ट के निदान में असमर्थ है." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " टेंटेड मॉड्यूल: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "बग आईडी की सूची" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "बोधि सर्वर यूआरएल निर्दिष्ट करें" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "किसी रिलीज को निर्दिष्ट करें" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2030,20 +2183,20 @@ msgstr "" - "\n" - "बोधि सर्वर पर अद्यतन के लिए खोजें" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "अद्यतन के लिए खोजा जा रहा है" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "इस संकुल के लिए कोई अद्यतन नहीं मिला" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "संकुल का स्थानीय संस्करण उपलब्ध अद्यतन के बनिस्बत नया है" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2071,67 +2224,68 @@ msgstr "छपाई में वूप्स मिले" - msgid "Delete files with found oopses" - msgstr "मिले वूप्स से फ़ाइल मिटाएँ" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ने एकाधिक समस्या निर्देशिका की पहचान की" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "उपयोग: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "[in DIRs] में समस्या की सूची दें" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "समस्या निर्देशिका DIR को हटाएँ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR में समस्या आँकड़े को विश्लेषित और रिपोर्ट करें" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR के बारे में प्रिंट सूचना" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "हालिया क्रैश की गिनती छापें" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "एकाधिक समस्या की प्रक्रिया करें" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "'abrt-cli COMMAND --help' को अधिक सूचना के लिए देखें" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "बिना रिपोर्ट की गई समस्या को सूचीबद्ध करें" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "विस्तृत विवरण देखें" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत केवल समस्याओं की सूची दें" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "निर्दिष्ट समयस्टैंप से पुराने समस्या की केवल सूची दें" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2142,55 +2296,65 @@ msgstr "" - "'abrt-auto-reporting enabled' को बतौर उपयोक्ता रूट अधिकार चलाकर निर्गत " - "करके\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "इससे बड़ा पाठ संक्षिप्त कर दिया जाएगा" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "कोई ऐसी समस्या निर्देशिका '%s' नहीं" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "बिना किसी संदेश के केवल समस्या गिनती छापें" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत हालिय समस्याओं को केवल छापें" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ने %u समस्या का पता किया है. अधिक जानकारी के लिए चलाएँ: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' मिटा रहा है" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "रिपोर्टिंग के बाद PROBLEM_DIR हटाएँ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' मिटा रहा है" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "क्रिया: remove(rm), info(i), skip(s):" -@@ -2201,27 +2365,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "क्रिया: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' की रिपोर्टिंग" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "ENTER को अगली समस्या के लिए दबाएँ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "बिना --since argumen के, सभी पता किए समस्या पर बार-बार आता है." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "टाइमस्टैंप के बाद पता चली समस्या को केवल दिखाता है" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/hu.po b/po/hu.po -index c0e3d06..bdb34ab 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -12,127 +12,142 @@ - # teknos.ferenc , 2013-2014 - # Zoltan Hoppár , 2011-2013 - # Zoltan Hoppár , 2014 -+# Kardos László , 2015. #zanata - # Szűcs Kornél Géza , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-31 05:23-0500\n" -+"PO-Revision-Date: 2015-12-16 06:53-0500\n" - "Last-Translator: Szűcs Kornél Géza \n" - "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/" - "language/hu/)\n" - "Language: hu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Hibajelentés" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Alkalmazás összeomlás megtekintés és jelentés" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' tulajdona nem átvehető" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Mappa nem megnyitható írásra: '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Jelzés nem bezárható: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Hoppá!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Jelentés" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Újraindítás" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " -+"automatikusan bejelentésre került." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. A probléma " -+"bejelentésre kerül, amint lesz internetkapcsolat. " - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Kérjük vegye " -+"fel a kapcsolatot a fejlesztővel, ha szeretné bejelenteni a hibát" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy a(z) %s csomag összeomlott. Ha szeretne " -+"segíteni a hiba megoldásában, kérjük küldjön egy hibajelentést." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " -+"A probléma automatikusan bejelentésre került. " - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel egy összetevőben. " -+"A probléma bejelentésre kerül, amint lesz internetkapcsolat." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Elnézést kérünk, úgy néz ki, hogy egy probléma lépett fel. Ha szeretne " -+"segíteni a probléma megoldásában, kérjük küldjön egy hibajelentést." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Jelzés nem megjeleníthető: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "GIO csatorna nem olvasható: %s" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "GIO csatorna kódolása nem beállítása: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "GIO nonblocking módja nem beállítható: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -143,6 +158,17 @@ msgstr "" - "Alkalmazás amely képes jelezni az ABRT-n keresztül a felhasználó felé ha új " - "probléma történne\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Kérdezzen a mappa kisajátítása előtt" -@@ -164,12 +190,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"A coredump fájl fontos a stack trace generálása érdekében. Mivel ez egy idő- " --"és erőforrás-igényes folyamat, az ABRT ad szolgáltatást ehhez, ami ezt " --"elvégzi, de előtte fel kell tölteni a coredump fájlt. Ezzel az opcióval " --"természetesen az ABRT fel fogja tölteni őket kérdés nélkül." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -217,10 +241,6 @@ msgstr "" - "Rövidített jelentés opció be van kapcsolva." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Kérdezzen a coredump feltöltése előtt" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -228,15 +248,15 @@ msgstr "" - "Ha ez az opció engedélyezve van, akkor az ABRT mindig korlátozott " - "hozzáféréssel jelenti a hibát, ha az bizalmas adatot tartalmaz." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Privát bejegyzés kérése érzékeny információk miatt" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Jelezze a hiányos problémákat" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -246,6 +266,22 @@ msgstr "" - "felhasználó kiléptetése zajlik. Mivel az ABRT célja, hogy hasznos hiba " - "jelentéseket küldjön, így ezeket nem tudjuk elküldeni." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Kilépés" -@@ -271,14 +307,14 @@ msgstr "Rólunk" - msgid "Quit" - msgstr "Kilépés" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -290,11 +326,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Probléma könyvtár" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurációs fájl" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -308,24 +344,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opciók]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Alkalmazza a NUM számot mint kliens UID-t" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Jelentés a rendszernaplóba" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Programnevek hozzáadása a log-hoz" - -@@ -333,62 +370,52 @@ msgstr "Programnevek hozzáadása a log-hoz" - msgid "Unknown error" - msgstr "Ismeretlen hiba" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' nem egy érvényes hibamappa" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' nem érvényes elem név" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' elemek nem módosíthatóak" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' nem egy érvényes hibamappa" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Nincs engedélyezve" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Módosításhoz a probléma nem elérhető" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' elemek nem módosíthatóak" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer " - "logfájljait a további részletekért." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' nem érvényes elem név" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' mérete nem megállapítható" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nem maradt hibagyűjtő terület" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "A probléma mappából '%s' nem törölhető '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -398,12 +425,12 @@ msgstr "" - "A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp " - "ezzel a névvel aktív-e vagy sem.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Kilépés NUM másodperc inaktivitás után" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Ennek a programnak root jogokkal kell futnia." - -@@ -430,18 +457,22 @@ msgstr "Ne automatizálja" - msgid "Log to syslog even with -d" - msgstr "Jelentés a rendszernaplóba akkor is, ha -d opcióval ellátott" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT futtatása a DIR könyvtáron" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Közvetlen kommunikáció a felhasználóval" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -480,73 +511,74 @@ msgstr "Egyidejűleg elérhető dolgozók. Alapértelmezésben " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Red Hat támogatás felhasználónév" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Érvénytelen számú paraméter" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Ismeretlen opcionális érték: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Jelszó:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Jelszó megadása nélkül nem folytatható\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -558,74 +590,74 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Nem egy könyvtár: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Átugrás: '{0}' (perjellel kezdődik)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Átugrás: '{0}' (ponttal kezdődik)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - #, fuzzy - msgid "Skipping: '{0}' (contains ..)" - msgstr "Átugrás: '{0}' (.. tartalmaz)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Átugrás: '{0}' (szóközt tartalmaz)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Átugrás: '{0}' (tabulátort tartalmaz)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - #, fuzzy - msgid "Can't change directory to '{0}'" - msgstr "Sikertelen könyvtár váltás ide: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Ismeretlen fájltípus: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - #, fuzzy - msgid "Can't create working directory in '{0}'" - msgstr "Munkakönyvtár létrehozása sikertelen itt: '{0}' " - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - #, fuzzy - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' nem helyezhető át ide: '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - #, fuzzy - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' nem másolható ide: '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - #, fuzzy - msgid "Verification error on '{0}'" - msgstr "Hitelesítési hiba '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Kicsomagolás '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' könyvtár létrehozása sikertelen" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Kicsomagolás sikertelen '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - #, fuzzy - msgid "'{0}' processed successfully" - msgstr "'{0}' feldolgozása sikeres" -@@ -650,18 +682,26 @@ msgstr "Sikertelen chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Hibagyüjtő mappa törlése sikertelen: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Problémák listája em elérhetőek az abrt-dbus szolgáltatásból: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -709,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s, nyomkövetési értelmezés sikertelen" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Az összeomlás szálja nem található" - -@@ -814,7 +854,7 @@ msgstr "Oops üzenet nem kibontható: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Oops szöveg sikeresen kibontva" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -822,6 +862,38 @@ msgstr "" - "A kernelnapló szerint hardver hiba történt.\n" - "Ez valószínűleg nem egy szoftver hiba.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -941,7 +1013,36 @@ msgstr "Hiányzó debuginfo fájl: {0}" - msgid "All debuginfo files are available" - msgstr "MInden debuginfo fájl elérhető" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -951,7 +1052,7 @@ msgstr "" - "tartalmazhat) Ha a válasza 'Nem', a nyomkövetési adatokat helyben állítjuk " - "elő. (Ezzel nagy mennyiségű adat kerülhet letöltésre)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1186,7 +1287,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Ugyanaz mint a -d DumpLocation, a DumpLocation-t pedig az abrt.conf " -@@ -1198,16 +1300,18 @@ msgstr "Mentse a kivonatolt információkat PROBLÉMA gyüjtőbe" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "A dump könyvtár környezetének olvashatóvá tétele" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Aktiválja a probéma mappa létrehozását 1 másodpercenként" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" - -@@ -1216,9 +1320,13 @@ msgstr "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Probléma nem frissíthető: több mint egy oops található" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1237,6 +1345,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1260,11 +1369,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1278,16 +1389,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1295,18 +1409,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1325,14 +1442,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1341,12 +1461,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1356,59 +1522,63 @@ msgstr "" - "\n" - "Bontsa ki az Xorg összeomlást a FILE-ból (vagy szabványos bemenetről)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Nyomtassa ki az összeomlási adatokat a szabványos kimenetre" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Készítsen mindig új mappát DIR mappában minden egyes ütközéshez amit talál" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1942,7 +2112,7 @@ msgstr "NSS leállítása sikertelen." - msgid "Sleeping for %d seconds" - msgstr "Kivárás %d másodpercig" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1950,7 +2120,7 @@ msgstr "" - "Kernelhiba történt egy hibás BIOS miatt. Sajnálatos módon, az ilyen " - "problémákat nem tudják a kernel programozók kijavítani." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1958,7 +2128,7 @@ msgstr "" - "Kernelhiba történt és a hardvere nem támogatott, ezért a kernel programozók " - "nem tudják megjavítani ezt a problémát." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1967,24 +2137,24 @@ msgstr "" - "Kernelhiba történt, de a kernele összekeveredett más kóddal (flags: %s). A " - "kernel karbantartói képtelenek analizálni ezeket a jelentéseket." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Tainted állapotú modulok: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Hibaazonosítók listája" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Adjon meg egy bodhi kiszolgáló URL-t" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Adja a meg a kiadást" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1994,20 +2164,20 @@ msgstr "" - "\n" - "Keressen frissítéseket bodhi szervereken" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Frissítések keresése" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ehhez a csomaghoz frissítések nem találhatóak" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "A helyben lévő csomag verziója frissebb mint a frissítésekben levő" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2037,70 +2207,71 @@ msgstr "A nyomtatás során talált oops " - msgid "Delete files with found oopses" - msgstr "Fájlok törlése közben oops történt" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - "'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Használat: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Listázza a még be nem jelentett hibákat [DIR könyvtárakban]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Hibagyűjtő DIR könyvtár eltávolítása" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Elemzi és bejelenti a hibaadatokat a DIR könyvtárban" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Információk nyomtatása DIR könyvtárról" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Írja ki a legutóbbi összeomlások számát" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Tekintse meg az 'abrt-cli PARANCS --help' a további információkért" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Csak a nem jelentett problémákat listázza" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Részletes jelentés megjelenítése" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Csak azoknak az esetek számát jelenítse meg ami frissebb, mintt a " - "meghatározott időbélyeg" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Csak azokat a megadott eseteket jelenítse meg amik régebbiek mint az " - "időbélyeg" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2111,55 +2282,65 @@ msgstr "" - "engedélyezze root jogú felhasználóként a 'abrt-auto-reporting enabled' " - "paranccsal.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opciók] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Szöveg nagyobb, ezért így fog megjelenni rövidített szövegként" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Nincs ilyen problémát tartalmazó könyvtár '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - "Jelenítse meg csak azoknak az eseteknek a számát ahol minden üzenet nélkül " - "történt" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt időbélyeg " - "óta történt" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-" - "cli list %s parancsot\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2168,24 +2349,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ia.po b/po/ia.po -index 8249e12..4eabf14 100644 ---- a/po/ia.po -+++ b/po/ia.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "language/ia/)\n" - "Language: ia\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +29,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Reportar" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +163,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +198,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +259,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +278,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "File de configuration" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +296,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registrar in syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Adder nomines de programma in registro" - -@@ -296,60 +322,50 @@ msgstr "Adder nomines de programma in registro" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +373,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +399,22 @@ msgstr "Non lancear como demone" - msgid "Log to syslog even with -d" - msgstr "Registrar in syslog mesmo con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +444,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +523,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +608,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +668,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Error durante le analyse del retraciamento de %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +757,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +903,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1154,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Identic a \"-d locodelinstantaneo\"; le loco del instantaneo es specificate " -@@ -1076,16 +1167,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1094,8 +1187,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1115,6 +1212,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1138,11 +1236,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1156,16 +1256,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1173,18 +1276,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1203,14 +1309,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1219,70 +1328,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1807,63 +1966,63 @@ msgstr "Fallimento de arrestar NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1885,65 +2044,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Monstrar un reporto detaliate" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1951,49 +2111,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2002,24 +2172,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/id.po b/po/id.po -index ec554cf..38f9d34 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -22,7 +22,7 @@ msgstr "" - "language/id/)\n" - "Language: id\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,108 +32,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Laporan" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -155,7 +166,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -188,30 +201,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -237,14 +262,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -256,11 +281,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Direktori masalah" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Berkas konfigurasi" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -274,24 +299,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Catat ke syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Menambahkan nama program untuk log" - -@@ -299,60 +325,50 @@ msgstr "Menambahkan nama program untuk log" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -360,12 +376,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -386,18 +402,22 @@ msgstr "Jangan dibuat daemon" - msgid "Log to syslog even with -d" - msgstr "Log ke syslog meskipun dengan -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -427,73 +447,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -505,68 +526,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -590,18 +611,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -642,7 +671,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Parsing backtrace gagal untuk %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -731,12 +760,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -845,14 +906,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1067,7 +1157,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1077,16 +1168,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1095,8 +1188,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1116,6 +1213,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1139,11 +1237,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1157,16 +1257,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1174,18 +1277,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1204,14 +1310,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1220,70 +1329,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1784,63 +1943,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1862,65 +2021,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1928,49 +2088,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1979,24 +2149,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/it.po b/po/it.po -index c4be184..41d3d18 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -21,7 +21,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -31,7 +31,7 @@ msgstr "" - "language/it/)\n" - "Language: it\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -41,102 +41,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Impossibile ottenere la proprietà di '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Impossibile aprire la directory per la scrittura: '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Impossibile chiudere la notifica: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Segnala" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Impossibile mostrare la notifica: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Impossibile eseguire la lettura dal canale gio: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Impossibile impostare la codifica sul canale gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Impossibile abilitare la modalità nonblocking per il canale gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -147,6 +147,17 @@ msgstr "" - "Applet che notifica all'utente il rilevamento di un nuovo problema da parte " - "di ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -167,19 +178,15 @@ msgstr "Notifica abbreviata" - msgid "Silent shortened reporting" - msgstr "Notifica abbreviata silenziosa" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Il file coredump è necessario per la generazione degli stack trace. Questa " --"operazione richiederà tempo e spazio. ABRT fornisce un servizio in grado di " --"generare uno stack trace da coredump, e a tal proposito sarà necessario " --"caricare coredump per il suddetto servizio. Con questa opzione disabilitata, " --"ABRT caricherà coredump senza richiederlo all'utente." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -230,29 +237,24 @@ msgstr "" - "problemi riportati. Questa impostazione è effettiva solo se è stata " - "abilitata la Notifica abbreviata." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Chiedi prima di caricare coredump" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Richiedi un ticket privato per le informazioni sensibili" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifica problemi incompleti" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -262,6 +264,22 @@ msgstr "" - "durante l'operazione di logout di un utente. Al fine di fornire notifiche " - "utili, ABRT non permetterà l'invio di questi problemi." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Chiudi" -@@ -287,14 +305,14 @@ msgstr "Informazioni" - msgid "Quit" - msgstr "Esci" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -306,11 +324,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Directory del problema" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "File di configurazione" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -324,24 +342,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opzioni]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilizzare NUM per l'uid del client" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log su syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Aggiungi i nomi dei programmi sul log" - -@@ -349,63 +368,53 @@ msgstr "Aggiungi i nomi dei programmi sul log" - msgid "Unknown error" - msgstr "Errore sconosciuto" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' non è una directory di problema valida" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' non è un nome di elemento valido" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Impossibile modificare l'elemento '%s' " -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' non è una directory di problema valida" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Non Autorizzato" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Impossibile accedere al problema per la modifica" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Impossibile modificare l'elemento '%s' " - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Modifica proprietario della directory fallita. Controllare i log del sistema " - "per maggiori informazioni." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' non è un nome di elemento valido" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Impossibile ottenere la dimensione di '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nessuno spazio del problema rimasto" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -415,12 +424,12 @@ msgstr "" - "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano " - "questo nome non siano in esecuzione.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Esci dopo NUM secondi di inattività" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Questo programma deve essere eseguito come root." - -@@ -446,18 +455,22 @@ msgstr "Non rendere demone" - msgid "Log to syslog even with -d" - msgstr "Log su syslog anche con -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Esegui EVENT su DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunica direttamente all'utente" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -498,89 +511,90 @@ msgstr "Numero di thread di lavoro simultanei. L'impostazione predfinita è" - msgid "Maximal cache size in MiB. Default is " - msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr " Disabilita l'autenticazione" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nome utente per il Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Password per il Red Hat Support, se non specificata verrà richiesto di " - "inserirne una" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Tipo di certificato o percorsi per il certificato SSL uReport" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Specificare --username per --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Usare --username o --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Usare --username o --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Usare --anonymous o --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Numero non valido di argomenti" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valore opzione sconosciuto: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Password:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Impossibile continuare senza password\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Auto reporting autenticato con HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Auto reporting autenticato con client SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Francesco Valente --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "auto reporting anonimo" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -602,83 +616,83 @@ msgstr "" - " FILENAME - Nome del file dell'archivio caricato\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Non è una directory: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Saltato: '{0}' (inizia con barra)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Saltato: '{0}' (inizia con un punto)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Saltato: '{0}' (contiene ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Saltato: '{0}' (presenta uno spazio)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Saltato: '{0}' (presenta un tab)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Impossibile modificare la directory su '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipo di file sconosciuto: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Impossibile creare una directory operativa in '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Impossibile spostare '{0}' su '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Impossibile copiare '{0}' su '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Errore di verifica su '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Estrazione '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Impossibile creare la directory '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Impossibile estrarre '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' processato con successo" - -@@ -702,18 +716,26 @@ msgstr "Impossibile ottenere la proprietà '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Cancellazione directory del problema non riuscita: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Impossibile ottenere la lista problemi da abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -762,7 +784,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Fallita analisi del backtrace per %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Thread di crash non trovato" - -@@ -870,7 +892,7 @@ msgstr "Impossibile estrarre il messaggio oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Estratto con successo il testo oops" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -878,6 +900,38 @@ msgstr "" - "Il log del kernel indica che sono stati rilevati errori hardware.\n" - "Questo molto probabilmente non è un errore software.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -994,7 +1048,36 @@ msgstr "File debuginfo mancante: {0}" - msgid "All debuginfo files are available" - msgstr "Tutti i file contenenti le informazioni di debug sono disponibili" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1004,7 +1087,7 @@ msgstr "" - "risponde 'No', uno stack trace sarà generato localmente. (Può scaricare una " - "grande quantità di dati)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1244,7 +1327,8 @@ msgstr "Crea una nuova directory del problema in DIR per ogni oops rilevato" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Uguale a -d DumpLocation, DumpLocation viene specificato in abrt.conf" - -@@ -1254,16 +1338,18 @@ msgstr "Salva l'informazione estratta in PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Rendi la directory del problema leggibile a tutti" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Aumenta la creazione della directory del problema a 1 per secondo" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" - -@@ -1273,9 +1359,13 @@ msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" - msgid "Failed to compile regex" - msgstr "Impossibile compilare regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Impossibile aggiornare il problema: trovati più di un oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1294,6 +1384,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1317,11 +1408,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1335,16 +1428,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1352,18 +1448,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1382,14 +1481,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1398,12 +1500,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1413,58 +1561,62 @@ msgstr "" - "\n" - "Estrae il crash di Xorg da FILE (o da standard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Stampa i dati trovati relativi al crash sullo standard output" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Crea una nuova directory del problema in DIR per ogni crash rilevato" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2002,7 +2154,7 @@ msgstr "Arresto NSS fallito." - msgid "Sleeping for %d seconds" - msgstr "In sospensione per %d secondi" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2011,7 +2163,7 @@ msgstr "" - "Sfortunatamente questi problemi non possono essere risolti dai manutentori " - "del kernel." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2020,7 +2172,7 @@ msgstr "" - "per questo motivo i manutentori del kernel non sono in grado di risolvere " - "questo problema." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2030,24 +2182,24 @@ msgstr "" - "%s). I manutentori del kernel non sono in grado di effettuare diagnosi dei " - "rapporti inquinati." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Moduli corrotti: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista dei bug ids" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Specificare un url di un server bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Specificare una release" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2057,22 +2209,22 @@ msgstr "" - "\n" - "Ricerca aggiornamenti disponibili su un server bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Ricerca di aggiornamenti" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Non sono stati trovati aggiornamenti per questo pacchetto" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "La versione locale del pacchetto è più recente rispetto a quella disponibile " - "negli aggiornamenti" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2100,67 +2252,68 @@ msgstr "Stampa gli errori trovati" - msgid "Delete files with found oopses" - msgstr "Cancella file con errori trovati" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' identifica più di una directory del problema" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Utilizzo: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Elenca i problemi [in DIR]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Rimuovi la directory del problema DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizza e riporta i dati del problema in DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Stampa le informazioni sulla DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Stampa il contatore dei crash recenti" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Elabora problemi multipli" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Elenca solo problemi non riportati" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostra i dettagli della segnalazione" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Elenca solo i problemi più recenti della data specificata" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Elenca solo i problemi più vecchi della data specificata" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2170,55 +2323,65 @@ msgstr "" - "La funzione di auto-reporting è disabilitata. Abilitarla con il comando\n" - "'abrt-auto-reporting enabled' come utente con privilegi root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opzioni] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "I testi con dimensioni maggiori di questo verranno mostrati ridotti" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Directory '%s' del problema non trovata" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Stampa solo il contatore del problema senza nessun messaggio" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Stampa solo i problemi più recenti di un timestamp specificato" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Rimozione '%s'" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Rimuovi PROBLEM_DIR dopo la notifica" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Rimozione '%s'" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Azioni: remove(rm), info(i), skip(s):" -@@ -2229,27 +2392,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Azioni: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Notifica '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Per il problema successivo premere ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Senza l'argomento --since, ripetere su tutti i problemi rilevati." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Seleziona solo i problemi rilevati dopo il timestamp" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ja.po b/po/ja.po -index de6991a..4a59702 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -16,126 +16,127 @@ - # Tomoyuki KATO , 2012-2013 - # carrotsoft , 2011, 2012 - # Noriko Mizumoto , 2015. #zanata -+# Ooyama Yosiyuki , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-08 11:11-0500\n" --"Last-Translator: Noriko Mizumoto \n" -+"PO-Revision-Date: 2015-08-23 07:49-0400\n" -+"Last-Translator: Ooyama Yosiyuki \n" - "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ja/)\n" - "Language: ja\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "問題の報告" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "アプリケーションクラッシュの表示とレポート" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' の所有権を取得できません" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' を書き込むためのディレクトリを開くことができません" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "通知を閉じることができません: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "おっと!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "報告する" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "再開" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題は自動的に報告されています。" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題はインターネット利用可能時に自動的に報告されます。" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を報告したい場合は、開発者に連絡してください。" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." --msgstr "" -+msgstr "申し訳ございません、 %s がクラッシュしたようです。問題を解決したい場合は、報告を送ってください。" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." --msgstr "" -+msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題は自動的に報告されています。" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." --msgstr "" -+msgstr "申し訳ございません、コンポーネント内で問題が発生したようです。問題はインターネット利用可能時に自動的に報告されます。" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." --msgstr "" -+msgstr "申し訳ございません、 問題が発生したようです。問題を解決したい場合は、報告を送ってください。" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "通知を表示できません: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio チャネルからの読み込みができません: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio チャネルでエンコーディングを設定できません: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio チャネルのノンブロッキングモードを有効にできません: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -144,6 +145,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "新しい問題が ABRT で検出されるとユーザーに通知するアプレットです\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -161,17 +173,15 @@ msgstr " " - msgid "Silent shortened reporting" - msgstr " " - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"coredump ファイルは、時間がかかりスペースを消費する操作であるスタックトレースの生成に必要です。ABRT は、coredump " --"からスタックトレースを生成するサービスを提供しますが、coredump " --"をこのサービスにアップロードする必要があります。このオプションを無効にすると、ABRT は尋ねることなく coredump をアップロードします。" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -214,29 +224,24 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "このオプションを有効にすると、ABRT は報告された問題の通知を表示しません。短縮形レポーティングが有効な場合にのみ、実行されます。" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump をアップロードする前に尋ねる" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "機密情報のプライベートチケットを要求する" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "完了していない問題を通知する" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -245,6 +250,22 @@ msgstr "" - "コンピューターのシャットダウン中またはユーザーのログアウト中に完了していない問題が検出されました。価値のある問題レポートを提出するため、ABRT " - "はユーザーによるこれらの問題の提出を許可しません。" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "閉じる (_C)" -@@ -270,14 +291,14 @@ msgstr "ABRT について" - msgid "Quit" - msgstr "終了" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -289,11 +310,11 @@ msgstr "" - msgid "Problem directory" - msgstr "問題ディレクトリ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "設定ファイル" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -307,24 +328,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [オプション]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM をクライアントの uid として使用する" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog にログする" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ログにプログラム名を追加する" - -@@ -332,60 +354,50 @@ msgstr "ログにプログラム名を追加する" - msgid "Unknown error" - msgstr "不明なエラーです" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "「%s」は有効な問題ディレクトリではありません" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' は有効なエレメント名ではありません" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' エレメントを修正できません" -+msgid "'%s' is not a valid problem directory" -+msgstr "「%s」は有効な問題ディレクトリではありません" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "権限がありません" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "問題にアクセスして修正できません" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' は有効なエレメント名ではありません" -+msgid "'%s' element can't be modified" -+msgstr "'%s' エレメントを修正できません" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' の容量を取得できません" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "残っている問題領域はありません" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "「%s」エレメントを問題ディレクトリの「%s」から削除できません" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -393,12 +405,12 @@ msgid "" - "is not running.\n" - msgstr "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "休止状態が NUM 秒以上続いた場合は終了します" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "このプログラムは root で実行しなければなりません" - -@@ -421,18 +433,22 @@ msgstr "デーモン化しない" - msgid "Log to syslog even with -d" - msgstr "-d オプションを使用するとログを syslog へ書き込みます" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT を DIR で実行する" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ユーザーと直接通信する" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -470,87 +486,88 @@ msgstr "同時実行ワーカー数。規定値は次のとおりです。" - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB 単位の最大キャッシュ容量。規定値は次のとおりです。" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "認証をオフにする" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat サポートユーザー名" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support パスワード、入力しないとあとで入力が求められます" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL 証明書パスまたは証明書タイプ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password には --username も指定してください" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "--username または --certificate のいずれかを使用します" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "--username または --anonymous のいずれかを使用します" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "--anonymous または --certificate のいずれかを使用します" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "引数の数が無効な数です" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "不明なオプション値です: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "パスワード:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "パスワードを入力しないと先に進めません\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP 認証の自動報告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL クライアント認証の自動報告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Noriko Mizumoto --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonymous 自動報告" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -570,83 +587,83 @@ msgstr "" - " FILENAME - アップロード済みアーカイブファイル名\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ディレクトリではありません: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "スキップ中: '{0}' (スラッシュで開始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "スキップ中: '{0}' (ドットで開始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "スキップ中: '{0}' (.. を含む)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "スキップ中: '{0}' (空白を含む)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "スキップ中: '{0}' (タブを含む)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' にディレクトリを変更できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "不明なファイルタイプ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' に作業ディレクトリを作成できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' を '{1}' に移動できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' を '{1}' にコピーできません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' で確認エラー" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' を解凍中" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ディレクトリを作成できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' を解凍できません" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' が正常に処理されました" - -@@ -670,21 +687,29 @@ msgstr "'%s の chown ができません: %s" - msgid "Deleting problem directory failed: %s" - msgstr "問題ディレクトリの削除に失敗しました: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus から問題のデータを取り込めません: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus から問題の一覧を取りこめません: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus から問題のデータを取り込めません: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "abrt-dbus でエレメントが存在しているかどうかのテストができません : %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -727,7 +752,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s のバックトレース構文解析に失敗しました" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "クラッシュスレッドは見つかりませんでした" - -@@ -832,13 +857,45 @@ msgstr "ウップスメッセージを抽出できません: '{0}'" - msgid "Oops text extracted successfully" - msgstr "ウップステキストが正常に抽出されました" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "カーネルログではハードウェア関連のエラーが検出されたことが示されているため、\n" - "これはおそらくソフトウェアに関する問題ではないでしょう。\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -952,7 +1009,36 @@ msgstr "debuginfo ファイルがありません: {0}" - msgid "All debuginfo files are available" - msgstr "すべての debuginfo ファイルが利用可能です" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -961,7 +1047,7 @@ msgstr "" - "コアダンプをアップロードしてもよいですか (これには機密情報が含まれている可能性があります) " - "?「いいえ」の場合にはスタックトレースがローカルに生成されます (これにより大量のデータがダウンロードされる可能性があります)。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1029,7 +1115,7 @@ msgstr "uReport はすでに送信されているので、再送信されませ - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "既知のBugzilla バグの CC リストにあなたを追加する" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1194,7 +1280,8 @@ msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation と同じです、 DumpLocation は abrt.conf で指定します" - -@@ -1204,16 +1291,18 @@ msgstr "抽出した情報を PROBLEM に保存します" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "問題ディレクトリを誰でも見れるようにします" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "問題のディレクトリの作成を毎秒 1 個に制限" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "検索文字列を標準出力に表示して終了" - -@@ -1223,9 +1312,13 @@ msgstr "検索文字列を標準出力に表示して終了" - msgid "Failed to compile regex" - msgstr "regex のコンパイルに失敗しました" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "問題を更新できません: 複数のウップスが見つかりました" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1244,6 +1337,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1263,15 +1357,17 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "検出されるコアダンプごと DIR 内に新規の問題ディレクトリを作成します" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1285,37 +1381,43 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "systemd-journal を開けません" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "ジャーナルの最後までシークできません" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "" -+msgstr "systemd-journal cursor '%s' を設定できませんでした" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "ジャーナルデータを読めません" - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1332,14 +1434,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1348,12 +1453,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1362,58 +1513,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "FILE (または標準入力) から Xorg クラッシュを抽出します" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "発見したクラッシュデータを標準出力に表示する" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "検出されるクラッシュごと DIR 内に問題ディレクトリを作成します" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1500,7 +1655,7 @@ msgstr "Retrace サーバーを使用するには '%s' が普通のファイル - msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." --msgstr "" -+msgstr "クラッシュサイズは %s ですが、リトレースサーバーで受け取れるクラッシュサイズは %s か、それ以下のサイズになります。" - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." -@@ -1528,12 +1683,12 @@ msgstr "アップロードするアーカイブを準備中" - msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." --msgstr "" -+msgstr "アーカイブのサイズは %s ですが、リトレースサーバーで受け取れるアーカイブのサイズは %s か、それ以下のサイズになります。" - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "%s をアップロードしようとしています。継続しますか?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" -@@ -1542,7 +1697,7 @@ msgstr "ユーザーにより取り消されました" - #: ../src/plugins/abrt-retrace-client.c:683 - #, c-format - msgid "Uploading %s\n" --msgstr "" -+msgstr "%s をアップロード中 \n" - - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format -@@ -1927,19 +2082,19 @@ msgstr "NSS のシャットダウンに失敗しました。" - msgid "Sleeping for %d seconds" - msgstr "%d 秒スリープします" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "BIOS が破損しているためカーネル関連の問題が発生しました。残念ながら、このような問題はカーネルのメンテナーでは修正できません。" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "カーネル関連の問題が発生しましたが、お使いのハードウェアはサポートされていないため、カーネルメンテナーは問題の修正ができません。" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1947,24 +2102,24 @@ msgid "" - msgstr "" - "カーネル関連の問題が発生しましたが、カーネル自体が破損しています (フラグ:%s)。破損したレポートの診断はカーネルメンテナーでは行なえません。" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "破損モジュール: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "バグ id の一覧" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "bodhi サーバーの url を指定する" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "リリースを指定する" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1974,20 +2129,20 @@ msgstr "" - "\n" - "bodhi サーバー上で更新を検索します" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "更新の検索中" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "このパッケージ用の更新は見つかりませんでした" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "このパッケージは、利用可能な更新よりローカルバージョンの方が新しいものになります" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2012,67 +2167,68 @@ msgstr "検出した oops を表示" - msgid "Delete files with found oopses" - msgstr "検出した oops を含んでいるファイルを削除" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' が複数の問題ディレクトリを確認しました" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "使い方: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "問題を一覧表示する [in DIRs]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "DIR 問題ディレクトリを削除する" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR 内の問題データを分析、 報告する" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR に関する情報を出力する" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "最新のクラッシュ回数を表示する" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "複数の問題を処理する" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "詳細については abrt-cli COMMAND --help を参照してください" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "報告されていない問題のみを表示する" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "詳細報告を表示する" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "指定したタイムスタンプより新しい問題のみを表示します" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "指定したタイムスタンプよりも古い問題のみを表示します" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2082,53 +2238,63 @@ msgstr "" - "自動報告機能は無効になっています。root の特権を持つユーザーで\n" - "'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [オプション] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "これより大きなテキストは要約して表示されます" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "そのような問題ディレクトリ '%s' はありません" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "問題の件数のみを表示し、メッセージは表示しません" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "指定されたタイムスタンプよりも新しい問題のみを表示する" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRT により %u 件の問題が検出されました。次を実行して詳細を確認してください: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' を削除中" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "レポート後に PROBLEM_DIR を削除します" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' を削除中" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" -@@ -2139,27 +2305,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "アクション: 削除(rm), レポート(e), 情報(i), スキップ(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' をレポート中" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "次の問題に移るには、ENTER を押します:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since 引数がないと、すべての検出済み問題を繰り返します。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "タイムスタンプ後に検出された問題のみを選択します" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ka.po b/po/ka.po -index 3c168a1..76c2da6 100644 ---- a/po/ka.po -+++ b/po/ka.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/ka/)\n" - "Language: ka\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ანგარიში" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "კონფიგურაციის ფაილი" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "ჟურნალირება syslog-ში" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "მიუთითეთ bodhi სერვერის url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "მიუთითეთ რელიზი" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "განახლებების მოძებნა" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ამ პაკეტისთვის განახლებები არ არის" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "დეტალური ანგარიშის ჩვენება" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/km.po b/po/km.po -index 3af0d2e..84bb1b1 100644 ---- a/po/km.po -+++ b/po/km.po -@@ -1,220 +1,179 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: -+# Leap Sok , 2015. #zanata - msgid "" - msgstr "" --"Project-Id-Version: ABRT\n" -+"Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2014-10-06 13:44+0200\n" --"PO-Revision-Date: 2014-10-06 11:45+0000\n" --"Last-Translator: Jakub Filak \n" --"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2015-11-01 12:29-0400\n" -+"Last-Translator: Leap Sok \n" -+"Language-Team: Khmer\n" - "Language: km\n" --"Plural-Forms: nplurals=1; plural=0;\n" -+"X-Generator: Zanata 3.8.2\n" -+"Plural-Forms: nplurals=1; plural=0\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 --msgid "Automatic Bug Reporting Tool" --msgstr "" -+msgid "Problem Reporting" -+msgstr "រាយការណ៍អំពីបញ្ហា" - - #: ../src/applet/abrt-applet.desktop.in.h:2 --msgid "ABRT notification applet" --msgstr "" -- --#: ../src/applet/applet.c:129 --msgid "" --"The report which will be sent does not contain any security sensitive data. " --"Therefore it is not necessary to bother you next time and require any " --"further action by you. \n" --msgstr "" -- --#: ../src/applet/applet.c:135 --msgid "Do you want to enable automatically submitted crash reports?" --msgstr "" -+msgid "View and report application crashes" -+msgstr "មើលនិងរាយការណ៍ពីកម្មវិធី​ដែលបានគាំង" - --#: ../src/applet/applet.c:140 --msgid "Do you want to enable automatically submitted anonymous crash reports?" --msgstr "" -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 -+#, c-format -+msgid "Can't take ownership of '%s'" -+msgstr "មិនអាចយកភាពជាម្ចាស់នៃ'%s'" - --#. The NetworkManager DBus service is not available. --#: ../src/applet/applet.c:241 -+#: ../src/applet/applet.c:268 - #, c-format --msgid "Can't connect to NetworkManager over DBus: %s" --msgstr "" -+msgid "Can't open directory for writing '%s'" -+msgstr "​កញ្ចប់ឯកសារមិនអាចអានបាន'%s'" - --#: ../src/applet/applet.c:265 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format --msgid "Can't determine network status via NetworkManager: %s" --msgstr "" -+msgid "Can't close notification: %s" -+msgstr "មិនអាចបិទការជូនដំណឹង:'%s'" - --#: ../src/applet/applet.c:384 --msgid "A problem has been detected" --msgstr "" -+#: ../src/applet/applet.c:598 -+msgid "Oops!" -+msgstr "អូ!" - --#: ../src/applet/applet.c:386 --#, c-format --msgid "A problem in the %s package has been detected" --msgstr "" -+#: ../src/applet/applet.c:616 -+msgid "Report" -+msgstr "របាយការណ៍" - --#: ../src/applet/applet.c:396 --#, c-format --msgid "%s and the diagnostic data has been submitted" --msgstr "" -+#: ../src/applet/applet.c:625 -+msgid "Restart" -+msgstr " ការចាប់ផ្តើមសារឡើងវិញ" - --#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 --#: ../src/plugins/abrt-retrace-client.c:168 -+#: ../src/applet/applet.c:694 - #, c-format --msgid "Can't execute '%s'" -+msgid "" -+"We're sorry, it looks like %s crashed. The problem has been automatically " -+"reported." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" - --#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 -+#: ../src/applet/applet.c:699 - #, c-format --msgid "Can't close notification: %s" --msgstr "" -- --#: ../src/applet/applet.c:675 - msgid "" --"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" --"\n" --"Do you want to continue?" -+"We’re sorry, it looks like %s crashed. The problem will be reported when the " -+"internet is available." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" - --#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 --msgid "Warning" --msgstr "" -- --#: ../src/applet/applet.c:803 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 -+#, c-format - msgid "" --"Notification area applet that notifies users about issues detected by ABRT" --msgstr "" -- --#: ../src/applet/applet.c:819 --msgid "translator-credits" --msgstr "" -- --#: ../src/applet/applet.c:827 --msgid "_Quit" -+"We're sorry, it looks like %s crashed. Please contact the developer if you " -+"want to report the issue." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ " -+"សូមទាក់ទងអ្នកបង្កើតកម្មវិធីបើអ្នកចង់រាយការណ៍ពីបញ្ហានេះ។" - --#: ../src/applet/applet.c:829 --msgid "Hide" --msgstr "" -- --#: ../src/applet/applet.c:831 --msgid "_About" --msgstr "" -- --#: ../src/applet/applet.c:899 --msgid "Problem detected" --msgstr "" -- --#: ../src/applet/applet.c:949 --msgid "Ignore forever" --msgstr "" -- --#. Problem has been 'autoreported' and is considered as KNOWN --#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 --msgid "Open" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "The Problem has already been Reported" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "A Known Problem has Occurred" --msgstr "" -- --#. Problem has not yet been 'autoreported' and can be --#. * 'autoreported' on user request. --#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 --msgid "Report" -+#: ../src/applet/applet.c:713 -+#, c-format -+msgid "" -+"We're sorry, it looks like %s crashed. If you'd like to help resolve the " -+"issue, please send a report." - msgstr "" -+"យើងសូមទោស, កម្មវិធី​% sដូចជាបានគាំង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " -+"សូមផ្ញើរបាយការណ៍។" - --#: ../src/applet/applet.c:989 --msgid "A Problem has Occurred" -+#: ../src/applet/applet.c:732 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"has been automatically reported." - msgstr "" -+"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។​​​​​​​​ " -+"បញ្ហានេះត្រូវបានរាយការណ៍ដោយស្វ័យប្រវត្តិ។" - --#: ../src/applet/applet.c:1015 --msgid "A Problem has been Reported" -+#: ../src/applet/applet.c:736 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"will be reported when the internet is available." - msgstr "" -+"យើងសូមទោស, បញ្ហាដូចជាបានកើតឡើងនៅក្នុងផ្នែកណាមួយ។ " -+"បញ្ហានេះនឹងត្រូវបានរាយការណ៍នៅពេលដែលអ៊ីនធឺណិតអាចប្រើបាន។" - --#: ../src/applet/applet.c:1023 --msgid "A New Problem has Occurred" -+#: ../src/applet/applet.c:741 -+msgid "" -+"We're sorry, it looks like a problem occurred. If you'd like to help resolve " -+"the issue, please send a report." - msgstr "" -+"យើងសូមទោស, បញ្ហាដូចជាត្រូវបានកើតឡើង។ ប្រសិនបើអ្នកចង់ជួយដោះស្រាយបញ្ហានេះ, " -+"សូមផ្ញើរបាយការណ៍។" - --#: ../src/applet/applet.c:1033 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "មិនអាចផ្តល់ការជូនដំណឹង: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "" -+msgstr "មិនអាចអានពីឆានែលgio: '%s'" - --#: ../src/applet/applet.c:1151 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" --msgstr "" -+msgstr "មិនអាចកំណត់ការបម្លែងកូដនៅលើឆានែលgio: '%s'" - --#: ../src/applet/applet.c:1155 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" --msgstr "" -- --#: ../src/applet/applet.c:1189 --#, c-format --msgid "Can't take ownership of '%s'" --msgstr "" -+msgstr "មិនអាចបើក nonblocking mode សម្រាប់ឆានែលgio: %s" - --#: ../src/applet/applet.c:1198 --#, c-format --msgid "Can't open directory for writing '%s'" -+#: ../src/applet/applet.c:1186 -+msgid "" -+"& [-v] [DIR]...\n" -+"\n" -+"Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" -+"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" - --#: ../src/applet/applet.c:1481 --#, c-format -+#: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" --"Failed to open connection to session manager: '%s', notification may " --"reappear on the next login" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." - msgstr "" - --#: ../src/applet/applet.c:1622 --msgid "" --"& [-v] [DIR]...\n" --"\n" --"Applet which notifies user when new problems are detected by ABRT\n" -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "សួរមុនពេលបានយកកញ្ចប់ឯកសារ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "ទទួលផ្ញើ uReport ដោយស្វ័យប្រវត្តិ" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "របាយការណ៍សង្ខេបឱ្យខ្លី" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "" -+msgstr "របាយការណ៍គ្មានសំលេងសង្ខេបខ្លី" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " --"space consuming operation. ABRT provides a service which generates the stack" --" trace from the coredump but you have to upload the coredump to this " --"service. With this option disabled ABRT will upload the coredump without " --"asking." -+"space consuming operation. ABRT provides a service which generates the stack " -+"trace from the coredump but you have to upload the coredump to this service. " -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -228,15 +187,15 @@ msgstr "" - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" - "uReport is short and completely anonymous description of a problem. ABRT " --"uses uReports for fast global duplicate detection. In default configuration" --" uReport is sent at beginning of reporting process. With this option enabled" --" uReports are sent automatically immediately after problem detection." -+"uses uReports for fast global duplicate detection. In default configuration " -+"uReport is sent at beginning of reporting process. With this option enabled " -+"uReports are sent automatically immediately after problem detection." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" --"With this option enabled reporting process started by click on Report button" --" in problem notification bubble will be interrupted after uReport is sent. " -+"With this option enabled reporting process started by click on Report button " -+"in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" - -@@ -247,30 +206,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -296,16 +267,17 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:388 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:400 -+#: ../src/daemon/abrt-action-save-package-data.c:406 -+#: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 --#: ../src/plugins/abrt-action-analyze-c.c:78 -+#: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 - #: ../src/plugins/abrt-action-analyze-xorg.c:84 - #: ../src/plugins/abrt-action-analyze-python.c:47 -@@ -314,123 +286,143 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:401 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 --#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 -+#: ../src/daemon/abrt-action-save-package-data.c:408 -+msgid "Use this directory as RPM root" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:199 -+msgid "& [-v] -d DIR\n" -+"\n" -+"Save container metadata" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:211 -+msgid "Root directory for running container commands" -+msgstr "" -+ -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 --#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 --#: ../src/plugins/abrt-dump-journal-oops.c:302 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 -+#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-oops.c:219 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:123 -+#: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:188 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:223 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 --#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:256 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:461 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:559 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:580 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:595 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:627 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 -+#: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 --#: ../src/daemon/abrtd.c:499 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - --#: ../src/daemon/abrtd.c:451 -+#: ../src/daemon/abrtd.c:389 - msgid "" - "The problem data are incomplete. This usually happens when a problem is " --"detected while computer is shutting down or user is logging out. In order to" --" provide valuable problem reports, ABRT will not allow you to submit this " --"problem. If you have time and want to help the developers in their effort to" --" sort out this problem, please contact them directly." -+"detected while computer is shutting down or user is logging out. In order to " -+"provide valuable problem reports, ABRT will not allow you to submit this " -+"problem. If you have time and want to help the developers in their effort to " -+"sort out this problem, please contact them directly." - msgstr "" - --#: ../src/daemon/abrtd.c:497 -+#: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" - msgstr "" - --#: ../src/daemon/abrtd.c:498 -+#: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -460,20 +452,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:81 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:113 -+#: ../src/daemon/abrt-auto-reporting.c:233 -+msgid "Turns the authentication off" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:234 -+msgid "Red Hat Support user name" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:235 -+msgid "Red Hat Support password, if not given, a prompt for it will be issued" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:236 -+msgid "uReport SSL certificate paths or certificate type" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:252 -+msgid "You also need to specify --username for --password" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:258 -+msgid "You can use either --username or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:264 -+msgid "You can use either --username or --anonymous" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:270 -+msgid "You can use either --anonymous or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:138 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-auto-reporting.c:336 -+msgid "Password:" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:339 -+msgid "Cannot continue without password\n" -+msgstr "" -+ -+#. Print only the part before ':' of a string like "username:password" -+#: ../src/daemon/abrt-auto-reporting.c:380 -+msgid "HTTP Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:382 -+msgid "SSL Client Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:384 -+msgid "anonymous auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -485,68 +531,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -570,16 +616,30 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 -+#, c-format -+msgid "Can't test whether the element exists over abrt-dbus: %s" -+msgstr "" -+ - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" -@@ -606,19 +666,21 @@ msgid "" - "and identifies crash function in problem directory DIR" - msgstr "" - -+#. - #. * The parser failed. Compute the duphash from the executable - #. * instead of a backtrace. - #. * and component only. This is not supposed to happen often. -+#. - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-c.c:67 -+#: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" - "& [-v] -d DIR\n" - "\n" -@@ -691,8 +753,7 @@ msgid "Extracting the oops text from core" - msgstr "" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 --msgid "" --"Can't process {0}:\n" -+msgid "Can't process {0}:\n" - "{1}" - msgstr "" - -@@ -704,12 +765,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -727,6 +820,7 @@ msgstr "" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -+#. - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" -@@ -761,60 +855,99 @@ msgstr "" - msgid "Exiting on user command" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:88 -+#: ../src/plugins/abrt-action-install-debuginfo.in:89 - #, c-format - msgid "" --"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" - " [-e, --exact=PATH[:PATH]...]\n" - "\n" - "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" - "to CACHEDIR, using TMPDIR as temporary staging area.\n" - "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" - "\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" - " -v Be verbose\n" - " -y Noninteractive, assume 'Yes' to all questions\n" - " --ids Default: build_ids\n" --" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" -+" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" - " --cache Default: /var/cache/abrt-di\n" - " --size_mb Default: 4096\n" -+" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:169 -+#: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:206 -+#: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:209 -+#: ../src/plugins/abrt-action-install-debuginfo.in:215 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:223 -+#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#, c-format -+msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:228 -+#: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:231 -+#: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -824,7 +957,8 @@ msgstr "" - msgid "" - "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" - "\n" --"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" -+"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " -+"SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" - -@@ -840,38 +974,38 @@ msgstr "" - msgid "Preserve this directory" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:40 -+#: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:51 -+#: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:80 -+#: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:100 -+#: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:128 -+#: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:138 -+#: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:159 -+#: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:164 -+#: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" - msgstr "" -@@ -1005,116 +1139,168 @@ msgstr "" - msgid "Don't run PROG if STRs aren't found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:76 -+#: ../src/plugins/abrt-dump-oops.c:77 - msgid "" - "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract oops from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-oops.c:303 -+#: ../src/plugins/abrt-dump-oops.c:98 -+#: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" - msgstr "" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users --#: ../src/plugins/abrt-dump-oops.c:101 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#. -+#: ../src/plugins/abrt-dump-oops.c:102 -+#: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:102 --#: ../src/plugins/abrt-dump-journal-oops.c:308 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-oops.c:225 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-oops.c:104 - msgid "Save the extracted information in PROBLEM" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:104 --#: ../src/plugins/abrt-dump-journal-oops.c:309 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-oops.c:105 -+#: ../src/plugins/abrt-dump-journal-oops.c:226 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:105 --#: ../src/plugins/abrt-dump-journal-oops.c:310 -+#: ../src/plugins/abrt-dump-oops.c:106 -+#: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:126 --#: ../src/plugins/abrt-dump-journal-oops.c:214 -+#: ../src/plugins/abrt-dump-oops.c:127 -+#: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:185 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:43 --msgid "Cannot read journal data." -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - --#. Only notice because this is expected --#: ../src/plugins/abrt-dump-journal-oops.c:125 --#, c-format --msgid "Not restoring journal watch's position: file '%s' does not exist" -+#: ../src/plugins/abrt-dump-journal-core.c:341 -+#: ../src/plugins/abrt-dump-journal-core.c:377 -+msgid "Failed to obtain all required information from journald" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:129 -+#. We don't want to update the counter here. -+#: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format --msgid "Cannot restore journal watch's position form file '%s'" -+msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:135 --#, c-format --msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+#: ../src/plugins/abrt-dump-journal-core.c:407 -+msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:141 --#, c-format -+#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 -+msgid "Failed to initialize systemd-journal watch" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" --"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extract coredumps from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:149 --#, c-format --msgid "Cannot restore journal watch's position: open('%s')" -+#: ../src/plugins/abrt-dump-journal-core.c:478 -+msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:158 --#, c-format --msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 -+msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:170 --#, c-format --msgid "Failed to move the journal to a cursor from file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 -+msgid "Start reading systemd-journal from the end" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:185 --msgid "Cannot save journal watch's position" -+#: ../src/plugins/abrt-dump-journal-core.c:482 -+msgid "Throttle problem directory creation to 1 per INT second" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:483 -+msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 -+msgid "Follow systemd-journal from the last seen position (if available)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 -+msgid "You need to specify either -c CURSOR or -e" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 -+msgid "Cannot open systemd-journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:544 -+msgid "Cannot filter systemd-journal to systemd-coredump data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 -+msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:195 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format --msgid "Cannot save journal watch's position: open('%s')" -+msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:251 --msgid "Failed to initialize systemd-journal watch" -+#: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 -+msgid "Cannot read journal data." - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:272 -+#: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" - "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" - "\n" -@@ -1128,59 +1314,144 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:311 --msgid "Start reading systemd-journal from the CURSOR position" -+#: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 -+msgid "Read journal files from all machines" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:312 --msgid "Start reading systemd-journal from the end" -+#: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 -+msgid "Read all journal files from directory at PATH" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:313 --msgid "Follow systemd-journal from the last seen position (if available)" -+#: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 -+#, c-format -+msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:327 --msgid "You need to specify either -c CURSOR or -e" -+#: ../src/plugins/abrt-dump-journal-oops.c:288 -+msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:356 --msgid "Cannot open systemd-journal" -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 -+#, c-format -+msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:359 --msgid "Cannot filter systemd-journal to kernel data only" -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:362 --msgid "Cannot seek to the end of journal" -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:369 --#, c-format --msgid "Failed to start watch from cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:378 --#, c-format --msgid "Failed to set systemd-journal cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:274 -+msgid "Cannot save journal watch's position" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:284 -+#, c-format -+msgid "Cannot save journal watch's position: open('%s')" -+msgstr "" -+ -+#. Only notice because this is expected -+#: ../src/plugins/abrt-journal.c:302 -+#, c-format -+msgid "Not restoring journal watch's position: file '%s' does not exist" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:304 -+#, c-format -+msgid "Cannot restore journal watch's position form file '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:311 -+#, c-format -+msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:317 -+#, c-format -+msgid "" -+"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:325 -+#, c-format -+msgid "Cannot restore journal watch's position: open('%s')" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:334 -+#, c-format -+msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:346 -+#, c-format -+msgid "Failed to move the journal to a cursor from file '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " -@@ -1189,12 +1460,19 @@ msgstr "" - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -+#. - #: ../src/plugins/abrt-retrace-client.c:103 - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " - msgstr "" - -+#: ../src/plugins/abrt-retrace-client.c:131 -+#: ../src/plugins/abrt-retrace-client.c:168 -+#, c-format -+msgid "Can't execute '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 - #: ../src/plugins/abrt-retrace-client.c:677 -@@ -1211,8 +1489,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:1011 - #: ../src/plugins/abrt-retrace-client.c:1070 - #, c-format --msgid "" --"Unexpected HTTP response from server: %d\n" -+msgid "Unexpected HTTP response from server: %d\n" - "%s" - msgstr "" - -@@ -1281,8 +1558,8 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:628 - #, c-format - msgid "" --"The size of your archive is %s, but the retrace server only accepts archives" --" smaller or equal to %s." -+"The size of your archive is %s, but the retrace server only accepts archives " -+"smaller or equal to %s." - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:640 -@@ -1343,8 +1620,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format --msgid "" --"Task Id: %s\n" -+msgid "Task Id: %s\n" - "Task Password: %s\n" - msgstr "" - -@@ -1354,8 +1630,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format --msgid "" --"Task Status: %s\n" -+msgid "Task Status: %s\n" - "%s\n" - msgstr "" - -@@ -1471,8 +1746,8 @@ msgstr "" - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" - "Needs to downloads debuginfo packages, which might take significant time, " --"and take up disk space. However, unlike RetraceServer, doesn't send coredump" --" to remote machines." -+"and take up disk space. However, unlike RetraceServer, doesn't send coredump " -+"to remote machines." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 -@@ -1481,11 +1756,11 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" --"Uploads coredump to a server, which generates backtrace and returns it. " --"Pros: no need for debuginfo downloads. Retrace server's database of " --"debuginfos is more complete. Retrace server may generate better backtraces. " --"Cons: coredump you upload contains all the data from the crashed program, " --"including your private data, if any." -+"Uploads coredump to a server, which generates backtrace and returns it. Pros:" -+" no need for debuginfo downloads. Retrace server's database of debuginfos is " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " -+"private data, if any." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 -@@ -1506,9 +1781,9 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" --"Write \"insecure\" to allow insecure connection <a " --"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" --" >(warning)</a>" -+"Write \"insecure\" to allow insecure connection <a href=\"https://" -+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(warning)</a>" - msgstr "" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 -@@ -1596,133 +1871,140 @@ msgstr "" - msgid "Failed to wrap TCP socket by SSL." - msgstr "" - --#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 --#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 -+#: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:223 -+#: ../src/plugins/https-utils.c:220 -+msgid "Failed to enable SSL3." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:222 -+msgid "Failed to enable TLS." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:232 -+#: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:240 -+#: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." - msgstr "" - --#: ../src/plugins/https-utils.c:246 -+#: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." - msgstr "" - --#: ../src/plugins/https-utils.c:250 -+#: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." - msgstr "" - --#: ../src/plugins/https-utils.c:257 -+#: ../src/plugins/https-utils.c:258 - #, c-format - msgid "Failed to complete SSL handshake: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:266 -+#: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:331 -+#: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:368 -+#: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:397 -+#: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." - msgstr "" - --#: ../src/plugins/https-utils.c:422 -+#: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." - msgstr "" - --#: ../src/plugins/https-utils.c:428 -+#: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." - msgstr "" - --#: ../src/plugins/https-utils.c:443 -+#: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." - msgstr "" - --#: ../src/plugins/oops-utils.c:71 -+#: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:205 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:210 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:225 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:233 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" --"An update exists which might fix your problem. You can install it by " --"running: %s. Do you want to continue with reporting the bug?" -+"An update exists which might fix your problem. You can install it by running:" -+" %s. Do you want to continue with reporting the bug?" - msgstr "" - - #: ../src/hooks/abrt-merge-pstoreoops.c:85 -@@ -1740,114 +2022,126 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:91 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:130 --msgid "& list [options] [DIR]..." -+#: ../src/cli/list.c:127 -+msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:139 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:141 ../src/cli/list.c:194 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:142 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:143 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:175 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" --"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" -+"The Autoreporting feature is disabled. Please consider enabling it by " -+"issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:186 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:195 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:215 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:70 --msgid "& status [DIR]..." -+#: ../src/cli/status.c:66 -+msgid "& status" - msgstr "" - --#: ../src/cli/status.c:78 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:79 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:104 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1856,24 +2150,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -@@ -1886,8 +2335,8 @@ msgid "" - "user doesn't want to upload his coredump to anywhere the event performs " - "local analysis. Local analysis is run event if remote analysis fails. Pros: " - "no need for debuginfo downloads. Retrace server's database of debuginfos is " --"more complete. Retrace server may generate better backtraces. Cons: coredump" --" you upload contains all the data from the crashed program, including your " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" - -@@ -1944,8 +2393,8 @@ msgstr "" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:3 - msgid "" --"Checks if there are .vimrc and .gvimrc in your home directory and saves them" --" as user_vimrc and user_gvimrc, respectively." -+"Checks if there are .vimrc and .gvimrc in your home directory and saves them " -+"as user_vimrc and user_gvimrc, respectively." - msgstr "" - - #: ../src/plugins/post_report.xml.in.h:1 -diff --git a/po/kn.po b/po/kn.po -index c122d05..a202a7f 100644 ---- a/po/kn.po -+++ b/po/kn.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "language/kn/)\n" - "Language: kn\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -34,103 +34,103 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ವರದಿ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ಮಾರ್ಗದಿಂದ ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -140,6 +140,17 @@ msgstr "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ಕೋಶವನ್ನು ಕಸಿದುಕೊಳ್ಳುವ ಮೊದಲು ಕೇಳು" -@@ -161,13 +172,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"ಕೋರ್‌ಡಂಪ್ ಕಡತವು ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸಲು ಅಗತ್ಯವಿರುತ್ತದೆ ಆದರೆ ಇದಕ್ಕಾಗಿ " --"ಹೆಚ್ಚಿನ ಸಮಯ ಹಾಗು ಸ್ಥಳವು ಬೇಕಿರುತ್ತದೆ. ABRT ಯು ಕೋರ್‌ಡಂಪ್‌ನಿಂದ ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ " --"ಅನ್ನು ಉತ್ಪಾದಿಸುವ ಒಂದು ಸೇವೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ ಆದರೆ ಈ ಸೇವೆಗಾಗಿ ನೀವು ಕೋರ್‌ಡಂಪ್ " --"ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT " --"ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -215,10 +223,6 @@ msgstr "" - "ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಲ್ಲಿ ಮಾತ್ರ ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರುತ್ತದೆ." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ನನ್ನನ್ನು ಕೇಳು" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -226,15 +230,15 @@ msgstr "" - "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು, ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯು ಕಂಡುಬಂದಲ್ಲಿ " - "ಯಾವಾಗಲೂ ಸಹ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಹೊಂದಿರುವ ದೋಷದ ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಗಾಗಿ ಖಾಸಗಿ ಟಿಕೆಟ್‌ಗಾಗಿನ ಮನವಿ" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "ಅಪೂರ್ಣವಾದ ಸಮಸ್ಯೆಗಳನ್ನು ಸೂಚಿಸು" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -244,6 +248,22 @@ msgstr "" - "ಸಮಸ್ಯೆಗಲು ಕಂಡುಬರಬಹುದು. ಮೌಲ್ಯಯುತವಾದ ಸಮಸ್ಯೆಯ ವರದಿಗಳನ್ನು ಒದಗಿಸಲು, ABRT ಈ " - "ಸಮಸ್ಯೆಗಳನ್ನು ಸಲ್ಲಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "ಮುಚ್ಚು (_C)" -@@ -269,14 +289,14 @@ msgstr "ಕುರಿತು" - msgid "Quit" - msgstr "ನಿರ್ಗಮಿಸು" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -288,11 +308,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ತೊಂದರೆಯ ಕೋಶ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ಸಂರಚನಾ ಕಡತ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -306,24 +326,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ಆಯ್ಕೆಗಳು]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM ಅನ್ನು ಕ್ಲೈಂಟ್ uid ಆಗಿ ಬಳಸು" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ಗೆ ದಾಖಲಿಸು" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು ದಾಖಲೆಗೆ ಸೇರಿಸು" - -@@ -331,62 +352,52 @@ msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು - msgid "Unknown error" - msgstr "ಗೊತ್ತಿರದ ದೋಷ" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ಅಧಿಕಾರವಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ಮಾರ್ಪಡಿಸುವ ಸಲುವಾಗಿ ತೊಂದರೆಯನ್ನು ತಲುಪಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' ಘಟಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "ಕೋಶವನ್ನು chown ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ವ್ಯವಸ್ಥೆಯ " - "ದಾಖಲೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ಗಾತ್ರವನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ಯಾವುದೆ ತೊಂದರೆ ಸ್ಥಳವು ಉಳಿದಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "'%s' ಘಟಕವನ್ನು '%s' ತೊಂದರೆಯ ಕೋಶದಿಂದ ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -396,12 +407,12 @@ msgstr "" - "'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು " - "ಪರೀಕ್ಷಿಸಿ.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM ಸೆಕೆಂಡುಗಳ ನಿಷ್ಕ್ರಿಯತೆಯ ನಂತರ ನಿರ್ಗಮಿಸು" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ಈ ಪ್ರೊಗ್ರಾಮ್ ಅನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ಚಲಾಯಿಸಬೇಕು." - -@@ -427,18 +438,22 @@ msgstr "ಡೆಮನ್‌ ಆಗಿ ಮಾಡಬೇಡ" - msgid "Log to syslog even with -d" - msgstr "-d ಯೊಂದಿಗೂ ಸಹ syslog ಗೆ ದಾಖಲಿಸಿ" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR ನಲ್ಲಿ EVENT ಅನ್ನು ಚಲಾಯಿಸಿ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ಬಳಕೆದಾರರೊಂದಿಗೆ ನೇರವಾಗಿ ವ್ಯವಹರಿಸು" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -479,89 +494,90 @@ msgstr "ಏಕಕಾಲದ ಕೆಲಸಗಾರರ ಸಂಖ್ಯೆ. ಪೂ - msgid "Maximal cache size in MiB. Default is " - msgstr "ಕ್ಯಾಶೆಯ ಗರಿಷ್ಟ ಗಾತ್ರ, MiB ಯಲ್ಲಿ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ದೃಢೀಕರಣವನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat ಸಪೋರ್ಟ್‌ನ ಬಳಕೆದಾರ ಹೆಸರು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat ಸಪೋರ್ಟ್‌ಗಾಗಿನ ಗುಪ್ತಪದ, ನೀಡಲಾಗಿರದೆ ಇದ್ದರೆ, ಒಂದು ಪ್ರಾಂಪ್ಟ್ ಅನ್ನು " - "ನೀಡಲಾಗುತ್ತದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL ಪ್ರಮಾಣಪತ್ರದ ಮಾರ್ಗಗಳು ಅಥವ ಪ್ರಮಾಣಪತ್ರದ ಬಗೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password ಕ್ಕಾಗಿ ನೀವು --username ಅನ್ನೂ ಸಹ ಒದಗಿಸಬೇಕು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "ನೀವು --username ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "ನೀವು --username ಮತ್ತು --anonymous ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "ನೀವು --anonymous ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳ ಸಂಖ್ಯೆ" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "ಗುಪ್ತಪದ:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "ಗುಪ್ತಪದವಿಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ಯು ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL ಕ್ಲೈಂಟ್‌ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shankar Prasad --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "ಅನಾಮಧೇಯವಾಗಿ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -582,83 +598,83 @@ msgstr "" - " FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ಒಂದು ಕೋಶವಲ್ಲ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಚುಕ್ಕಿಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (.. ಅನ್ನು ಹೊಂದಿದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಖಾಲಿಸ್ಥಳವನ್ನು ಹೊಂದಿದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಟ್ಯಾಬ್ ಅನ್ನು ಹೊಂದಿದೆ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ಕೋಶವನ್ನು '{0}' ಗೆ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "ಗೊತ್ತಿರದ ಕಡತದ ಬಗೆ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' ನಲ್ಲಿ ಕೆಲಸ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಸ್ಥಳಾಂತರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಪ್ರತಿಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' ನಲ್ಲಿ ಪರಿಶೀಲನಾ ದೋಷ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' ಅನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ನಲ್ಲಿ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ಅನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸಂಸ್ಕರಿಸಲಾಗಿದೆ" - -@@ -682,18 +698,26 @@ msgstr "'%s' ಅನ್ನು chown ಮಾಡಲಾಗಿಲ್ಲ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ತೊಂದರೆಯ ಕೋಶವನ್ನು ಅಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -742,7 +766,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s ಗಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಪಾರ್ಸಿಂಗ್ ವಿಫಲಗೊಂಡಿದೆ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ಕುಸಿತದ ಎಳೆಯು (ತ್ರೆಡ್‌) ಕಂಡುಬಂದಿಲ್ಲ" - -@@ -850,7 +874,7 @@ msgstr "ಸಂದೇಶವನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ - msgid "Oops text extracted successfully" - msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊರತೆಗೆಯಲಾಗಿದೆ" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -858,6 +882,38 @@ msgstr "" - "ಯಂತ್ರಾಂಶ ದೋಷಗಳು ಕಂಡುಬಂದಿವೆ ಎಂದು ಕರ್ನಲ್ ಲಾಗ್ ಸೂಚಿಸಿದೆ.\n" - "ಇದು ಬಹುಷಃ ತಂತ್ರಾಂಶದ ತೊಂದರೆಯಾಗಿಲ್ಲ.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -975,7 +1031,36 @@ msgstr "debuginfo ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" - msgid "All debuginfo files are available" - msgstr "debuginfo ಕಡತಗಳಿಗಾಗಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -985,7 +1070,7 @@ msgstr "" - "ನಿಮ್ಮ ಉತ್ತರವು 'ಇಲ್ಲ' ಆಗಿದ್ದಲ್ಲಿ, ಸ್ಥಳೀಯವಾಗಿ ಒಂದು ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್‌ ಅನ್ನು " - "ಉತ್ಪಾದಿಸಲಾಗುತ್ತದೆ. (ಇದು ದೊಡ್ಡ ಮೊತ್ತದ ದತ್ತಾಂಶವನ್ನು ಇಳಿಸಿಕೊಳ್ಳಬಹುದು)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1227,7 +1312,8 @@ msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation ನಂತೆಯೆ, abrt.conf ನಲ್ಲಿ DumpLocation ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" -@@ -1238,16 +1324,18 @@ msgstr "ಹೊರತೆಗೆಯಲಾದ ಮಾಹಿತಿಯನ್ನು PROB - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ದೋಷದ ಕೋಶವನ್ನು ಜಗತ್ತು ಓದುವ ರೀತಿಯಲ್ಲಿ ಮಾಡಿ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "ತೊಂದರೆ ಕೋಶದ ರಚನೆಯು ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ 1 ಇರುವಂತೆ ಹತೋಟಿಯಲ್ಲಿಡು" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ನು) stdout ಗೆ ಮುದ್ರಿಸು ಮತ್ತು ನಿರ್ಗಮಿಸು" - -@@ -1257,10 +1345,13 @@ msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ - msgid "Failed to compile regex" - msgstr "regex ಅನ್ನು ಕಂಪೈಲ್ ಮಾಡಲು ವಿಫಲಗೊಂಡಿದೆ" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1279,6 +1370,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1302,11 +1394,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1320,16 +1414,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1337,18 +1434,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1367,14 +1467,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1383,12 +1486,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1398,58 +1547,62 @@ msgstr "" - "\n" - "Xorg ಕುಸಿತವನ್ನು FILE (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್‌) ಇಂದ ಹೊರತೆಗೆ" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "ಕಂಡು ಬಂದ ಕುಸಿತದ ದತ್ತಾಂಶವನ್ನು ಶಿಷ್ಟವಾದ ಔಟ್‌ಪುಟ್‌ಗೆ ಮುದ್ರಿಸು" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಕುಸಿತ ಕೋಶವನ್ನು ರಚಿಸು" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1991,7 +2144,7 @@ msgstr "NSS ಅನ್ನು ಸ್ಥಗಿತಗೊಳಿಸಲು ವಿಫಲ - msgid "Sleeping for %d seconds" - msgstr "%d ಸೆಕೆಂಡುಗಳವರೆಗೆ ಜಡವಾಗಿರುತ್ತದೆ" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1999,7 +2152,7 @@ msgstr "" - "ಹಾಳಾಗಿರುವ BIOS ಕಾರಣದಿಂದಾಗಿ ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಕಾಣಿಸಿಕೊಂಡಿದೆ. ದುರದೃಷ್ಟವಶಾತ್, " - "ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2007,7 +2160,7 @@ msgstr "" - "ಕರ್ನಲ್ ತೊಂದರೆ ಉಂಟಾಗಿದೆ, ಆದರೆ ನಿಮ್ಮ ಯಂತ್ರಾಂಶವು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ, ಆದ್ದರಿಂದ ಆ " - "ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2016,24 +2169,24 @@ msgstr "" - "ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಎದುರಾಗಿದೆ, ಆದರೆ ಕರ್ನಲ್‌ಗೆ ಸೋಂಕು ಹಿಡಿದಿದೆ (flags:%s). " - "ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕರಿಂದ ಸೋಂಕು ವರದಿಗಳನ್ನು ತಪಾಸಣೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " ಪರವಾನಗಿ ಸರಿ ಇರದ ಮಾಡ್ಯೂಲ್‌ಗಳು: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ದೋಷದ idಗಳ ಪಟ್ಟಿ" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ಒಂದು ಬೋಧಿ ಪೂರೈಕೆಗಣಕ url ಅನ್ನು ಸೂಚಿಸಿ" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ಒಂದು ಬಿಡುಗಡೆಯನ್ನು ಸೂಚಿಸಿ" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2043,22 +2196,22 @@ msgstr "" - "\n" - "ಬೋಧಿ ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ಈ ಪ್ಯಾಕೇಜಿಗೆ ಯಾವುದೆ ಅಪ್‌ಡೇಟ್‌ಗಳಿಲ್ಲ" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "ಪ್ಯಾಕೇಜಿನ ಸ್ಥಳೀಯ ಆವೃತ್ತಿಯು ಲಭ್ಯವಿರುವ ಅಪ್‌ಡೇಟ್‌ನ ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗಿಂತ " - "ಹೊಸತಾಗಿದೆ" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2087,69 +2240,70 @@ msgstr "ಕಂಡುಬಂದ oopses ಅನ್ನು ಮುದ್ರಿಸು" - msgid "Delete files with found oopses" - msgstr "ಕಂಡುಬಂದ oopses ಗಳಿಂದ ಕಡತಗಳನ್ನು ಅಳಿಸು" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ತೊಂದರೆ ಕೋಶವನ್ನು ಗುರುತಿಸುತ್ತದೆ" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ಬಳಕೆ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "ತೊಂದರೆಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು [DIR ಗಳಲ್ಲಿ]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "ತೊಂದರೆಯ ಕೋಶ DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "ತೊಂದರೆಯ ಮಾಹಿತಿಯನ್ನು DIR ನಲ್ಲಿ ವಿಶ್ಲೇಷಿಸು ಹಾಗು ವರದಿ ಮಾಡು" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಮುದ್ರಿಸು" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯನ್ನು ಮುದ್ರಿಸಲಾಗುತ್ತಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "ಅನೇಕ ತೊಂದರೆಗಳನ್ನು ಸಂಸ್ಕರಿಸಿ" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "ವರದಿ-ಮಾಡದೆ ಇರುವ ತೊಂದರೆಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "ವಿವರವಾದ ವರದಿಯನ್ನು ತೋರಿಸು" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ " - "ತೋರಿಸು" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2160,57 +2314,67 @@ msgstr "" - "ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\n" - "ಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ಇದಕ್ಕಿಂತ ದೊಡ್ಡದಾದ ಪಠ್ಯವನ್ನು ಸಂಕ್ಷೇಪವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "ಅಂತಹ ಯಾವುದೆ ತೊಂದರೆ ಕೋಶ'%s' ಇಲ್ಲ" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "ಯಾವುದೆ ಸಂದೇಶವಿಲ್ಲದೆ ಕೇವಲ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ ಮುದ್ರಿಸು" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ " - "ಮುದ್ರಿಸು" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ಗೆ %u ತೊಂದರೆ(ಗಳು) ಕಂಡುಬಂದಿದೆ. (ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಇದನ್ನು ಚಲಾಯಿಸಿ: abrt-" - "cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "ಮತ್ತು ವರದಿ [ಆಯ್ಕೆಗಳು] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "ವರದಿ ಮಾಡಿದ ನಂತರ PROBLEM_DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), info(i), skip(s):" -@@ -2221,28 +2385,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' ಅನ್ನು ವರದಿ ಮಾಡಲಾಗುತ್ತಿದೆ" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "ಮುಂದಿನ ಸಮಸ್ಯೆಗಾಗಿ ENTER ಅನ್ನು ಒತ್ತಿ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "ಈ ಸಮಯಮುದ್ರೆಯ ನಂತರ ಕಂಡುಬಂದ ಸಮಸ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಆರಿಸು" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ko.po b/po/ko.po -index 340ca29..ab62425 100644 ---- a/po/ko.po -+++ b/po/ko.po -@@ -9,126 +9,127 @@ - # Jiří Moskovčák , 2011 - # , 2011-2012 - # , 2011-2012, 2013 -+# MinWoo Joh , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2015-07-30 11:38-0400\n" -+"Last-Translator: MinWoo Joh \n" - "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ko/)\n" - "Language: ko\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "문제 보고" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "애플리케이션 충돌을 확인 및 보고합니다" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s'의 소유 권한을 갖을 수 없음 " - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "통지를 종료할 수 없음: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "보고 " - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "재시작" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 문제는 자동으로 보고됩니다." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 문제를 보고하려면 개발자에게 문의하십시오." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." --msgstr "" -+msgstr "죄송합니다. %s 가 충돌했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." --msgstr "" -+msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 문제는 자동으로 보고되었습니다." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." --msgstr "" -+msgstr "죄송합니다. 내부 구성에 문제가 발생하였습니다. 인터넷 연결이 활성화되면 문제는 자동으로 보고됩니다." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." --msgstr "" -+msgstr "죄송합니다. 문제가 발생했습니다. 문제 보고서를 전송하시면, 문제 해결에 도움이 됩니다." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "통지를 표시할 수 없음: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio 채널에서 읽을 수 없음: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio 채널에서 인코딩을 설정할 수 없음: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio 채널의 비 차단 모드를 활성화할 수 없습니다: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +138,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "ABRT가 새로운 문제를 감지할 경우 사용자에게 통지하는 애플릿\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -157,17 +169,15 @@ msgstr "단축형 보고서 " - msgid "Silent shortened reporting" - msgstr "자동 단축형 보고서 " - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"코어 덤프 파일은 시간 및 공간을 많이 사용하는 작업인 스택 트레이스 생성에 필요합니다. ABRT는 코어덤프에서 스택 트레이스를 생성하는 " --"서비스를 제공하지만 이 서비스에 코어 덤프를 업로드해야 합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 코어 덤프를 업로드합니다." --" " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -208,29 +218,24 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "이 옵션을 사용하면 ABRT는 보고된 문제에 대해 알림을 표시하지 않습니다. 단축형 보고가 유효한 경우에만 실행됩니다. " - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump를 업로드하기 전 묻습니다 " -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." --msgstr "" -+msgstr "이 옵션이 적용되면 ABRT는 민감한 데이터가 감지되었을 경우 항상 엑세스가 제한된 버크 티켓을 생성합니다." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "민감한 정보에 대해 비공개 티켓을 요청합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "완료하지 않은 문제를 알려줍니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -239,6 +244,22 @@ msgstr "" - "컴퓨터 종료시 또는 사용자 로그 아웃 시에 완료하지 않은 문제가 감지되었습니다. 정확한 문제 보고서를 제출하기 위해 ABRT는 이러한 " - "문제에 대해 보고 허용하지 않습니다." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -270,14 +291,17 @@ msgstr "ABRT에 대해 " - msgid "Quit" - msgstr "종료 " - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"패키지 데이터베이스를 쿼리하고 패키지 및 구성요소의 이름을 저장합니다." - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -289,42 +313,45 @@ msgstr "" - msgid "Problem directory" - msgstr "문제가 있는 디렉토리 " - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "설정 파일 " - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "이 디렉토리를 RPM Root로 사용합니다." - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"저장소의 메타데이터를 저장합니다." - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "저장소 명령을 실행하기 위한 루트 디렉토리" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM을 클라이언트 uid로 사용 " - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog에 로그 " - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "로그에 프로그램 이름 추가 " - -@@ -332,60 +359,50 @@ msgstr "로그에 프로그램 이름 추가 " - msgid "Unknown error" - msgstr "알 수 없는 오류" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" -+msgid "'%s' is not a valid element name" -+msgstr "'%s'은 유효한 요소 이름이 아닙니다 " - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' 요소를 수정할 수 없습니다 " -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "권한이 없습니다 " - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "수정하기 위해 문제에 액세스할 수 없습니다 " -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s'은 유효한 요소 이름이 아닙니다 " -+msgid "'%s' element can't be modified" -+msgstr "'%s' 요소를 수정할 수 없습니다 " -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' 용량을 얻을 수 없습니다 " - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "남은 문제 공간이 없음 " - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "문제 디렉토리 '%s'에서 요소 '%s'를 삭제할 수 없습니다 " - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -393,12 +410,12 @@ msgid "" - "is not running.\n" - msgstr "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "이 프로그램은 root로 실행해야 합니다." - -@@ -423,18 +440,22 @@ msgstr "데몬화하지 않습니다 " - msgid "Log to syslog even with -d" - msgstr "-d를 사용하여 syslog에 로그 " - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR에서 EVENT 실행 " - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "사용자에게 직접 통신 " - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -478,76 +499,77 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "인증을 해제합니다." - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Red Hat Support 사용자 이름" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" --msgstr "" -+msgstr "Red Hat Support 암호, 지정하지 않은 경우, 이를 요청하는 메세지가 나타납니다." - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "uReport SSL 인증서 경로 또는 인증서 유형" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "--password에 대한 --username을 지정하십시오." - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "--username 또는 --certificate 중 하나를 사용할 수 있습니다." - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "--username 또는 --anonymous 중 하나를 사용할 수 있습니다" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "--anonymous 또는 --certificate 중 하나를 사용할 수 있습니다" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "잘못된 인수 개수 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "알 수 없는 옵션 값: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "암호:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "암호없이 계속 진행할 수 없습니다\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "HTTP 인증 자동 보고" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "SSL 클라이언트 인증 자동 보고" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "익명으로 자동 보고" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -567,83 +589,83 @@ msgstr "" - " FILENAME - 업로드된 아카이브 파일 이름 \n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "디렉토리가 아닙니다: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "생략 중: '{0}' (슬래시로 시작)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "생략 중: '{0}' (점으로 시작)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "생략 중: '{0}' (.. 포함)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "생략 중: '{0}' (공백 포함)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "생략 중: '{0}' (탭 포함)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}'로 디렉토리를 변경할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "알 수 없는 파일 형식: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}'에 작업 디렉토리를 생성할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}'을 '{1}'로 이동할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}'을 '{1}'에 복사할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}'에서 확인 오류 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' 압축 해제 중 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' 디렉토리를 생성할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}'을 압축 해제할 수 없습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}'이 성공적으로 처리되었습니다 " - -@@ -667,21 +689,29 @@ msgstr "'%s'의 chown할 수 없음: %s" - msgid "Deleting problem directory failed: %s" - msgstr "문제 디렉토리 삭제 실패: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus에서 문제 목록을 가져올 수 없음: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr " abrt-dbus에서 요소가 존재하는지 여부를 검증할 수 없습니다: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -724,7 +754,7 @@ msgid "Backtrace parsing failed for %s" - msgstr "%s 용 백트레이스 구문 분석 실패 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "충돌 스레드를 찾을 수 없습니다 " - -@@ -830,13 +860,45 @@ msgid "Oops text extracted successfully" - msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "커널 로그에 하드웨어 관련 오류가 발견된 것으로 표시됩니다.\n" - "이는 소프트웨어 문제는 아닌것 같습니다.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -923,6 +985,28 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"사용법: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" \n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"TMPDIR을 임시 준비 영역으로 사용하여 CASHEDIR에 BUILD_IDS_FILE에 나열된 모든 빌드 ID의 디버그 정보를 " -+"설치합니다. \n" -+"CACHEDIR에 있는 오래된 파일은 SIZE보다 작게될 때 까지 삭제됩니다.\n" -+"\n" -+"/etc/abrt/plugins/CCpp.conf 로부터 설정을 읽어들입니다.\n" -+"\n" -+" -v 대화식으로 실행합니다.\n" -+" -y 비 대화식으로, 모든 옵션에 대해 '예'라고 가정합니다.\n" -+" --ids 기본ID: build_id들\n" -+" --tmpdir 기본위치: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" -+" --cache 기본위치: /var/cache/abrt-di\n" -+" --size_mb 기본크기: 4096\n" -+" --pkgmgr 기본: PackageManager from CCpp.conf or 'dnf'\n" -+" -e,--exact 지정된 파일만 다운로드 합니다.\n" -+" --repo 리포지터리 검색시 사용할 규칙\n" -+" 기본: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" -@@ -940,7 +1024,7 @@ msgstr "{0} debuginfo 파일이 설치되어 있지 않습니다 " - #: ../src/plugins/abrt-action-install-debuginfo.in:234 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" --msgstr "" -+msgstr "CCpp 애드온의 잘못된 설정, 지원되지 않는 패키지 관리자 : '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-install-debuginfo.in:249 -@@ -955,7 +1039,36 @@ msgstr "debuginfo 파일이 누락되어 있습니다: {0}" - msgid "All debuginfo files are available" - msgstr "모든 debuginfo 파일이 사용 가능합니다" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -964,7 +1077,7 @@ msgstr "" - "코어 덤프를 업로드해도 되겠습니까? (민감한 데이터가 포함되어 있을 수 있습니다). '아니요'로 대답할 경우 스택 추적이 로컬에 " - "생성됩니다. (이는 거대한 용량의 데이터를 다운로드할 수 있습니다)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1032,7 +1145,7 @@ msgstr "uReport가 이미 전송되어 있기때문에 다시 전송되지 않 - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "존재하는 Bugzilla bug 의 CC목록에 추가합니다. " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-ureport:193 -@@ -1226,7 +1339,8 @@ msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 " - -@@ -1237,17 +1351,19 @@ msgstr "추출한 정보를 PROBLEM에 저장합니다 " - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " - -@@ -1257,15 +1373,18 @@ msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " - msgid "Failed to compile regex" - msgstr "regex 컴파일에 실패했습니다 " - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 " -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "journald로부터 필요한 모든 정보를 얻는데 실패했습니다." - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 -@@ -1275,10 +1394,11 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "abrt 데이터베이스에 문제 감지 데이터를 저장하는데에 실패했습니다." - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1298,59 +1418,67 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "모든 코어덤프에 대해 DIR에 새로운 문제 디렉토리를 생성" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "CURSOR의 위치에서 systemd-journal을 읽기 시작" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "뒤에서 부터 systemd-journal을 읽기 시작 " - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "-t INT와 같이, INT는 plugins/CCpp.conf에 정의되어 있습니다." - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "-c CURSOR 또는 -e 중 하나를 지정해야 합니다." - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "systemd-journal을 열 수 없습니다." - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "저널 데이터를 읽을 수 없습니다." - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1367,14 +1495,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1383,12 +1514,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1397,58 +1574,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "FILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "검색된 크래시 데이터를 표준 출력에 인쇄 " - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "발견된 모든 크래시에 대해 DIR에 문제 디렉토리를 생성" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1968,44 +2149,44 @@ msgid "Sleeping for %d seconds" - msgstr "%d 초 동안 절전 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "BIOS 손상으로 인해 커널 관련 문제가 발생했습니다. 불행히도 이러한 문제는 커널 관리자에 의해 수정될 수 없습니다." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "커널 관련 문제가 발생했지만 해당 하드웨어가 지원되지 않기 때문에 커널 관리자는 이 문제를 수정할 수 없습니다." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "커널에 문제가 발생했지만 커널 자체가 손상되어 있습니다 (플래그: %s). 커널 관리자는 손상된 보고를 진단할 수 없습니다." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "잘못된 모듈: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "버그 ID 목록" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "bodhi 서버 url 지정" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "릴리즈 지정" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2015,20 +2196,20 @@ msgstr "" - "\n" - "bodhi 서버에서 업데이트 검색" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "업데이트 검색 중" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "이 패키지에 대한 업데이트를 찾을 수 없음" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "패키지의 로컬 버전은 사용 가능한 업데이트 보다 새로운 버전입니다" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2058,72 +2239,73 @@ msgid "Delete files with found oopses" - msgstr "검색된 oopses가 있는 파일을 삭제합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s'가 하나 이상의 문제 디렉토리를 확인했습니다 " - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "사용법: abrt-cli [--version] COMMAND [DIR]... " -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr " [in DIRs]에 문제 나열 " - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "문제 디렉토리 DIR 제거 " - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR에 문제가 있는 데이터를 분석 및 보고 " - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR에 관한 정보 출력 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "최근 충돌 횟수를 출력" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "여러 문제 처리 " - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "보고되지 않는 문제만 나열합니다 " - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "상세 보고를 표시합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "지정된 타임 스탬프 보다 최신의 문제만 나열 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2133,59 +2315,69 @@ msgstr "" - "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n" - "'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "이보다 더 큰 텍스트는 요약하여 표시됩니다" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "이러한 문제 디렉토리 '%s'가 없음 " - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "아무 메세지를 표시하지 않고 문제의 건수만 출력 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT에 의해 '%u' 건의 문제가 발견되었습니다. (다음을 실행하여 보다 자세한 내용을 확인합니다: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' 삭제 중 " -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "보고 후 PROBLEM_DIR 삭제 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' 삭제 중 " -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "동작: 삭제(rm), 정보(i), 생략(s):" -@@ -2196,27 +2388,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "동작: 삭제(rm), 보고 (e), 정보(i), 생략(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' 보고 중 " - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "다음 문제로 이동하려면 ENTER를 누릅니다: " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since 인수가 없으면 감지된 모든 문제를 반복합니다 " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "타임 스탬프 후 감지된 문제만 선택합니다 " - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/lt.po b/po/lt.po -index 09c6e2b..caf1761 100644 ---- a/po/lt.po -+++ b/po/lt.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -21,7 +21,7 @@ msgstr "" - "Language: lt\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "(n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,102 +31,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Nepavyko tapti „%s“ savininku" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Nepavyksta atverti katalogo rašymui „%s“" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nepavyksta užverti pranešimo: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Pranešti" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nepavyksta parodyti pranešimo: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Nepavyksta skaityti iš gio kanalo: „%s“" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nepavyksta nustatyti gio kanalo koduotės: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nepavyksta įjungti neblokuojančios veiksenos gio kanalui: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -136,6 +136,17 @@ msgstr "" - "\n" - "Įtaisas, kuris praneša naudotojui, kai ABRT aptinka naują problemą\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -157,7 +168,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -190,30 +203,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -239,14 +264,14 @@ msgstr "Apie" - msgid "Quit" - msgstr "Išeiti" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -258,11 +283,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemų katalogas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigūracijos failas" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -276,24 +301,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [parinktys]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Naudoti NUM kaip kliento uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Įrašyti į syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Pridėti programų pavadinimus žurnalizavimui" - -@@ -301,62 +327,52 @@ msgstr "Pridėti programų pavadinimus žurnalizavimui" - msgid "Unknown error" - msgstr "Nežinoma klaida" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "„%s“ nėra tinkamas problemų katalogas" -+msgid "'%s' is not a valid element name" -+msgstr "„%s“ nėra tinkamas elemento pavadinimas" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "„%s“ elementas negali būti pakeistas" -+msgid "'%s' is not a valid problem directory" -+msgstr "„%s“ nėra tinkamas problemų katalogas" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Neleista" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nepavyksta prieiti problemos pakeitimui" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "„%s“ elementas negali būti pakeistas" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Nepavyko pakeisti aplanko savininko. Daugiau informacijos rasite sistemos " - "žurnaluose." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "„%s“ nėra tinkamas elemento pavadinimas" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Nepavyko gauti „%s“ dydžio" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nėra likusios problemų vietos" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Nepavyksta ištrinti elemento „%s“ iš problemų katalogo „%s“" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -366,12 +382,12 @@ msgstr "" - "Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo " - "vardu.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Išeiti po NUM sekundžių neaktyvumo" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Šią programą reikia paleisti root naudotojo teisėmis." - -@@ -397,18 +413,22 @@ msgstr "Nedemonizuoti" - msgid "Log to syslog even with -d" - msgstr "Įrašyti į syslog net su -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ĮVYKIO KAT..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Vykdyti ĮVYKĮ KAT" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikuoti tiesiogiai su naudotoju" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -446,73 +466,74 @@ msgstr "Darbininkų skaičius. Numatyta " - msgid "Maximal cache size in MiB. Default is " - msgstr "Didžiausias podėlio dydis MiB. Numatyta " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Neteisingas argumentų skaičius" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Nežinoma parametro vertė: „%s“\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -524,68 +545,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -609,18 +630,26 @@ msgstr "Nepavyko chown „%s“: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Nepavyko ištrinti problemos katalogo: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nepavyko gauti problemų sąrašo iš abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -667,7 +696,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Nepavyko perskaityti %s pėdsako" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Lūžimo gija nerasta" - -@@ -769,12 +798,44 @@ msgstr "Nepavyksta išgauti oops pranešimo: „{0}“" - msgid "Oops text extracted successfully" - msgstr "Oops tekstas sėkmingai išgautas" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -892,7 +953,36 @@ msgstr "Trūksta derinimo informacijos failo: {0}" - msgid "All debuginfo files are available" - msgstr "Yra visi derinimo informacijos failai" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -902,7 +992,7 @@ msgstr "" - "atsakysite „Ne“, steko pėdsakas bus generuojamas vietoje. (Tai gali " - "parsiųsti daug duomenų)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1133,7 +1223,8 @@ msgstr "Sukurti naują problemos katalogą KAT kataloge kiekvienai rastai oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Tas pats kaip -d DumpLocation, DumpLocation yra nurodyta abrt.conf" - -@@ -1143,16 +1234,18 @@ msgstr "Įrašyti išgautą informaciją į PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Padaryti problemų katalogą skaitomą pasauliui" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Nustatyti problemų aplankų kūrimą į 1 per sekundę" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti" - -@@ -1161,9 +1254,13 @@ msgstr "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Nepavyksta atnaujinti problemos: rastas daugiau nei vienas oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1182,6 +1279,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1205,11 +1303,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1223,16 +1323,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1240,18 +1343,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1270,14 +1376,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1286,12 +1395,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1301,59 +1456,63 @@ msgstr "" - "\n" - "Išgauti Xorg lūžimą iš FAILO (arba standartinės įvesties)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Atspausdinti rastus lūžimo duomenis standartinėje išvestyje" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Sukurti naują problemos katalogą KAT kataloge kiekvienam rastam lūžimui" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1886,7 +2045,7 @@ msgstr "Nepavyko išjungti NSS." - msgid "Sleeping for %d seconds" - msgstr "Miegama %d sekundžių" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1894,7 +2053,7 @@ msgstr "" - "Dėl blogo BIOS kilo branduolio problema. Deja, tokių problemų branduolio " - "prižiūrėtojai negali pataisyti." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1902,7 +2061,7 @@ msgstr "" - "Kilo branduolio problema, bet jūsų aparatinė įranga yra nepalaikoma, tad " - "branduolio prižiūrėtojai negali pataisyti šios problemos." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1911,24 +2070,24 @@ msgstr "" - "Kilo branduolio problema, bet jūsų branduolys buvo pakeistas (požymiai:%s). " - "Branduolio prižiūrėtojai negali diagnozuoti pakeistų pranešimų." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Sugadinti moduliai: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Klaidų id sąrašas" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Nurodykite bohdi serverio url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Nurodykite leidimą" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1939,20 +2098,20 @@ msgstr "" - "\n" - "Ieškoti atnaujinimų bodhi serveryje" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Ieškoma atnaujinimų" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nerasta šio paketo atnaujinimų" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Vietinė paketo versija yra naujesnė nei prieinama atnaujinimuose" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1980,65 +2139,66 @@ msgstr "Atspausdinti rastus oops" - msgid "Delete files with found oopses" - msgstr "Ištrinti failus su rastais oops" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "„%s“ nurodo daugiau nei vieną problemos aplanką" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Naudojimas: abrt-cli [--version] KOMANDA [KAT]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Pašalinti problemos katalogą KAT" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizuoti ir pranešti KAT problemos duomenis" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Atspausdinti informaciją apie KAT" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Atspausdinti nesenų lūžimų skaičių" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Išvardinti tik nepraneštas problemas" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Rodyti detalią ataskaitą" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Išvardinti tik problemas, kurios naujesnės nei nurodyta laiko žyma" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Išvardinti tik problemas, kurios senesnės nei nurodyta laiko žymo" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2049,51 +2209,61 @@ msgstr "" - "teisėmis\n" - "„abrt-auto-reporting enabled“\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [parinktys] KAT..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Ilgesnis nei toks tekstas bus rodomas sutrumpintas" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Nėra tokio problemos aplanko „%s“" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Atspausdinti tik problemų skaičių be jokių pranešimų" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Atspausdinti tik problemas, naujesnes nei nurodyta laiko žyma" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2102,24 +2272,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/lv.po b/po/lv.po -index 2c4a453..fd0d22d 100644 ---- a/po/lv.po -+++ b/po/lv.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "Language: lv\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " - "2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +29,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nevar aizvērt paziņojumu: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Ziņot" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +163,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +198,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +259,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +278,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurācijas datne" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +296,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [iespējas]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -296,60 +322,50 @@ msgstr "" - msgid "Unknown error" - msgstr "Nezināma kļūda" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' nav derīgs elementa nosaukums" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' nav derīgs elementa nosaukums" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +373,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +399,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +444,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +523,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +608,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +668,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +757,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +903,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1154,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1074,16 +1165,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1092,8 +1185,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1113,6 +1210,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1136,11 +1234,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1154,16 +1254,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1171,18 +1274,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1201,14 +1307,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1217,70 +1326,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1778,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Šai pakotnei netika atrasts neviens atjauninājums." - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Parādīt detalizētu ziņojumu" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ml.po b/po/ml.po -index 2508892..19da90a 100644 ---- a/po/ml.po -+++ b/po/ml.po -@@ -10,122 +10,127 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-01-08 10:57-0500\n" -+"PO-Revision-Date: 2015-09-25 05:50-0400\n" - "Last-Translator: Ani Peter \n" - "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/" - "language/ml/)\n" - "Language: ml\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 -+#, fuzzy - msgid "Problem Reporting" --msgstr "" -+msgstr "പ്രശ്നം രേഖപ്പെടുത്തുന്ന ക്രമീകരണം" - -+# auto translated by TM merge from project: gnome-abrt, version: master, DocId: gnome-abrt - #: ../src/applet/abrt-applet.desktop.in.h:2 -+#, fuzzy - msgid "View and report application crashes" --msgstr "" -+msgstr "പ്രയോഗത്തിന്റെ തകരാറുകള്‍ രേഖപ്പെടുത്തുക" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "അറിയിപ്പു് അടയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "റിപോര്‍ട്ട്" - --#: ../src/applet/applet.c:523 -+# auto translated by TM merge from project: ibus, version: head, DocId: ibus10 -+#: ../src/applet/applet.c:625 -+#, fuzzy - msgid "Restart" --msgstr "" -+msgstr "വീണ്ടും ആരംഭിക്കുക" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "അറിയിപ്പു് കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ചാനലില്‍ നിന്നും ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ചാനലില്‍ എന്‍കോഡിങ് സജ്ജമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ചാനലിനു് nonblocking മോഡ് ഓണ്‍ ചെയ്യുവാാന്‍ സാധ്യമല്ല: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -136,6 +141,17 @@ msgstr "" - "പുതിയ പ്രശ്നങ്ങള്‍ ABRT കണ്ടുപിടിയ്ക്കുമ്പോള്‍ ഉപയോക്താവിനെ " - "അറിയിയ്ക്കുന്നതിനുള്ള ആപ്ലെറ്റ്\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -156,19 +172,15 @@ msgstr "ചെറിയ രീതിയിലുള്ള റിപോര്‍ - msgid "Silent shortened reporting" - msgstr "നിശബ്ദമായ ചെറിയ റിപോര്‍ട്ടിങ്" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിന് കോര്‍ഡമ്പ് ഫയല്‍ ആവശ്യമാണു്. ഇതിനു് " --"അധികമായ സമയവും സ്ഥലവും ആവശ്യമാണു്. കോര്‍ഡമ്പില്‍ നിന്നും സ്റ്റാക്ക് ട്രെയിസ് " --"ലഭ്യമാക്കുന്നതിനുള്ള സേവനം എബിആര്‍ടി ലഭ്യമാക്കുന്നു, പക്ഷേ ഇതിനായി നിങ്ങള്‍ " --"കോര്‍ഡമ്പ് അപ്‌ലോഡ് ചെയ്യണം. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കിയാല്‍, ഒരു " --"ചോദ്യങ്ങളുമില്ലാതെ എബിആര്‍ടി കോര്‍ഡമ്പ് അപ്‌ലോ‍ഡ് ചെയ്യുന്നു." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -219,29 +231,24 @@ msgstr "" - "അറിയിപ്പ് എബിആര്‍ടി ഒരിക്കലും കാണിക്കില്ല. ലഘുവായി രേഖപ്പെടുത്തുന്നത് " - "സജ്ജമെങ്കില്‍ മാത്രം ഇതു് പ്രാഭല്യത്തിലാകുന്നു." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump അപ്‌ലോഡ് ചെയ്യുന്നതിന് മുമ്പ് ചോദിയ്ക്കുക" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "സെന്‍സിറ്റീവ് വിവരങ്ങള്‍ക്ക് സ്വകാര്യ ടിക്കറ്റ് ആവശ്യപ്പെടുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "പൂര്‍ണ്ണമല്ലാത്ത പ്രശ്നങ്ങള്‍ അറിയിയ്ക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -252,6 +259,22 @@ msgstr "" - "റിപോര്‍ട്ടുകള്‍ ലഭ്യമാക്കുന്നതിനു്, എബിആര്‍ടി ഇവ രേഖപ്പെടുത്തുവാന്‍ " - "അനുവദിക്കുകയില്ല." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -278,14 +301,14 @@ msgstr "സംബന്ധിച്ചു്" - msgid "Quit" - msgstr "പുറത്തു് കടക്കുക" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -297,11 +320,11 @@ msgstr "" - msgid "Problem directory" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ക്രമീകരണ ഫയല്‍" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -315,24 +338,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ക്ലയന്റ് യുഐഡി ആയി NUM ഉപയോഗിയ്ക്കുക" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന്റെ പേരുകള്‍ ചേര്‍ക്കുക" - -@@ -340,63 +364,53 @@ msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന് - msgid "Unknown error" - msgstr "അപരിചിതമായ പിശക്" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "അധികാരമില്ല" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "മാറ്റം വരുത്തുന്നതിനായി പ്രശ്നം കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' എലമെന്റില്‍ മാറ്റം വരുവാന്‍ സാധ്യമല്ല" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "ഡയറക്ടറി ചൌണ്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി " - "സിസ്റ്റം ലോഗുകള്‍ പരിശോധിയ്ക്കുക." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s'-ന്റെ വ്യാപ്തി ലഭ്യമല്ല" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "സ്ഥലം ലഭ്യമല്ല" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - "'%s' എലമെന്റ് വെട്ടി നീക്കുവാന്‍ സാധ്യമല്ല ('%s' ഡയറക്ടറിയില്‍ നിന്നും)" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -406,12 +420,12 @@ msgstr "" - "'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല " - "എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM നിമിഷങ്ങള്‍ നിഷ്ക്രിയമായശേഷം പുറത്തു് കടക്കുക" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ഈ പ്രോഗ്രാം റൂട്ടായി പ്രവര്‍ത്തിപ്പിയ്ക്കണം." - -@@ -438,18 +452,22 @@ msgstr "daemonize ചെയ്യേണ്ടതില്ല" - msgid "Log to syslog even with -d" - msgstr "-d ഉപയോഗിച്ചു് syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR-ല്‍ EVENT പ്രവര്‍ത്തിപ്പിയ്ക്കുക" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ഉപയോക്താവുമായി നേരിട്ടു് ഇടപെടുക" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -494,93 +512,94 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "MiB-ല്‍ ഏറ്റവും കൂടിയ ക്യാഷ് വ്യാപ്തി. സ്വതവേയുള്ളതു്" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ സംവിധാനം ഓഫ് ചെയ്യുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat പിന്തുണയ്ക്കുള്ള ഉപയോക്തൃനാമം" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat പിന്തുണയ്ക്കുള്ള രഹസ്യവാക്ക്, നല്‍കിയിട്ടില്ലെങ്കില്‍, ഇതിനായി " - "ആവശ്യപ്പെടുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - "uReport എസ്എസ്എല്‍ സര്‍ട്ടിഫിക്കേറ്റ് പാഥ് അല്ലെങ്കില്‍ സര്‍ട്ടിഫിക്കേറ്റ് " - "രീതി" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr " --password-നുള്ള --username നല്‍കേണ്ടതുണ്ടു്" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "--username അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "--username അല്ലെങ്കില്‍ --anonymous ഉപയോഗിയ്ക്കാം" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "--anonymous അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ആര്‍ഗ്യുമെന്റുകളുടെ തെറ്റായ എണ്ണം" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "അപരിചിതമായ മൂല്ല്യം: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "രഹസ്യവാക്ക്:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "രഹസ്യവാക്കില്ലാതെ തുടരുവാന്‍ സാധ്യമല്ല\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "എച്ടിടിപി ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "എസ്എസ്എല്‍ ക്ലയന്റ് ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Ani Peter --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "അപരിചിതമായ ഓട്ടോ റിപോര്‍ട്ടിങ്" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -601,83 +620,83 @@ msgstr "" - " FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ഡയറക്ടറിയല്ല: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്ലാഷില്‍ ആരംഭിയ്ക്കുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (കുത്തില്‍ ആരംഭിയ്ക്കുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (.. അടങ്ങുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്പെയിസ് അടങ്ങുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (ടാബ് അടങ്ങുന്നു)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ഡയറക്ടറിയെ '{0}'-ലേക്ക് മാറ്റുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "അപരിചിതമായ ഫയല്‍ രീതി: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}'-ല്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}'-ല്‍ ഉറപ്പാക്കുന്നതില്‍ പിശക്" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' തുറക്കുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' തുറക്കുവാന്‍ സാധ്യമല്ല" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' വിജയകരമായി നടപ്പിലാക്കി" - -@@ -701,20 +720,28 @@ msgstr "'%s' chown ചെയ്യുവാന്‍ സാധ്യമല്ല - msgid "Deleting problem directory failed: %s" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി വെട്ടിനീക്കുന്നതില്‍ പരാജയം: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" --"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -764,7 +791,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s-നുള്ള ബാക്ക്ട്രെയിസ് പാഴ്സിങ് പരാജയപ്പെട്ടു" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ക്രാഷ് ത്രെഡ് ലഭ്യമായില്ല" - -@@ -879,7 +906,7 @@ msgid "Oops text extracted successfully" - msgstr "Oops വാചകം വിജയകരമായി ലഭ്യമാക്കി" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -887,6 +914,38 @@ msgstr "" - "ഹാര്‍ഡ്‌വെയര്‍ പിശകുകള്‍ ഉണ്ടായതായി കേര്‍ണല്‍ ലോഗ് സൂചിപ്പിയ്ക്കുന്നു.\n" - "അതുകൊണ്ടു് ഇതൊരു സോഫ്റ്റ്‌വെയര്‍ പ്രശ്നമല്ല.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -1008,7 +1067,36 @@ msgstr "debuginfo ഫയല്‍ ലഭ്യമല്ല: {0}" - msgid "All debuginfo files are available" - msgstr "എല്ലാ debuginfo ഫയലുകളും ലഭ്യമാണു്" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1018,7 +1106,7 @@ msgstr "" - "ഇതു് ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഒരു സ്റ്റാക്ക് ട്രെയിസ് ലോക്കലായി " - "തയ്യാറാക്കപ്പെടുന്നു. (ഇതൊരു പക്ഷേ വലിയ ഡേറ്റാ ഡൌണ്‍ലോഡ് ചെയ്തേക്കാം)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1262,7 +1350,8 @@ msgstr "എല്ലാ oops-നും DIR-ലുള്ള തകരാറിന - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation പോലെ തന്നെ, abrt.conf-ല്‍ DumpLocation " -@@ -1274,18 +1363,20 @@ msgstr "PROBLEM-ല്‍ ലഭ്യമാക്കിയ വിവരം സ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമാക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - "ത്രോട്ടില്‍ പ്രശ്നം ഡയറക്ടറി തയ്യാറാക്കുന്നതു് ഒരു സെക്കന്‍ഡില്‍ ഒന്നു്" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രിങ് പ്രിന്റ് ചെയ്തു് പുറത്തു് കടക്കുക" - -@@ -1295,11 +1386,13 @@ msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രി - msgid "Failed to compile regex" - msgstr "regex കംപൈല്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1318,6 +1411,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1341,11 +1435,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1359,16 +1455,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1376,18 +1475,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1406,14 +1508,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1422,12 +1527,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1437,58 +1588,62 @@ msgstr "" - "\n" - "FILE-ല്‍ നിന്നും Xorg ക്രാഷ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണ ഇന്‍പുട്ട്)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "സാധാരണ ഔട്ട്പുട്ടിലേക്കു് ലഭ്യമായ ക്രാഷ് ഡേറ്റാ പ്രിന്റ് ചെയ്യുക" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "എല്ലാ ക്രാഷിനും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2040,7 +2195,7 @@ msgid "Sleeping for %d seconds" - msgstr "%d നിമിഷത്തേക്കു് മയങ്ങുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2049,7 +2204,7 @@ msgstr "" - "കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2058,7 +2213,7 @@ msgstr "" - "ലഭ്യമല്ല. അതിനാല്‍, കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് ഇതു് " - "പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2067,24 +2222,24 @@ msgstr "" - "കേര്‍ണലില്‍ ഒരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു (ഫ്ലാഗുകള്‍:%s). കാരണം എന്താണു് " - "എന്നു് കണ്ടുപിടിയ്ക്കുവാന്‍ കേര്‍ണല്‍ പാലകന്‍മാര്‍ക്കു് സാധ്യമായിട്ടില്ല." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " ലൈസന്‍സ് പ്രശ്നങ്ങളുള്ള ഘടകങ്ങള്‍: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ബഗ് ഐഡികള്‍" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ബോധി സര്‍വര്‍ യുആര്‍എല്‍ നല്‍കു" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ഒരു റിലീസ് വ്യക്തമാക്കുക" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2094,21 +2249,21 @@ msgstr "" - "\n" - "ബോധി സര്‍വറില്‍ പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുക" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുന്നു" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ഈ പാക്കേജിനു് പരിഷ്കരണങ്ങള്‍ ലഭ്യമല്ല" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "ലഭ്യമായ പരിഷ്കരണങ്ങളേക്കാള്‍ പുതിയതാണു് നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള പതിപ്പു്" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2138,71 +2293,72 @@ msgid "Delete files with found oopses" - msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകളുള്ള ഫയലുകള്‍ വെട്ടി നീക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ഒന്നില്‍ കൂടുതല്‍ പ്രശ്നമുള്ള ഡയറക്ടറി തിരിച്ചറിയുന്നു" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "പ്രശ്നങ്ങള്‍ ലഭ്യമാക്കുക [DIR-കളില്‍]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി DIR നീക്കം ചെയ്യുക" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR-ല്‍ പ്രശ്നമുള്ള ഡേറ്റാ നിരീക്ഷിച്ചു് രേഖപ്പെടുത്തുക" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR സംബന്ധിച്ചുള്ള വിവരം പ്രിന്റ് ചെയ്യുക" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "പുതിയ തകരാറുകളുടെ എണ്ണം പ്രിന്റ് ചെയ്യുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "അനവധി പ്രശ്നങ്ങള്‍ നടപ്പിലാക്കുക" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'abrt-cli COMMAND --help' കാണുക." - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "രേഖപ്പെടുത്താത്ത പ്രശ്നങ്ങള്‍ മാത്രം ലഭ്യമാക്കുക" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "വിശദമായ രേഖപ്പെടുത്തല്‍ കാണിയ്ക്കുക" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പുതിയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പഴയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2213,59 +2369,69 @@ msgstr "" - "ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\n" - "ഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ഇതിലും വലുതായ വാചകം അബ്രിഡ്ജമായ കാണിയ്ക്കുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "'%s' പോലുള്ള പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമല്ല" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "സന്ദേശമില്ലാതെ പ്രശ്നത്തിന്റെ എണ്ണം മാത്രം പ്രിന്റ് ചെയ്യുക" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "നല്‍കിയിരിയ്ക്കുന്ന ടൈംസ്റ്റാമ്പിനേക്കാള്‍ പുതുതായ പ്രശ്നങ്ങള്‍ മാത്രം " - "പ്രിന്റ് ചെയ്യുക" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ " - "വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' വെട്ടി നീക്കുന്നു" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "രേഖപ്പെടുത്തിയ ശേഷം PROBLEM_DIR നീക്കം ചെയ്യുക" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' വെട്ടി നീക്കുന്നു" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), info(i), skip(s):" -@@ -2276,29 +2442,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' രേഖപ്പെടുത്തുന്നു" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "അടുത്ത പ്രശ്നത്തിന് ENTER അമര്‍ത്തുക:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." - "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "ടൈംസ്റ്റാബിനു് ശേഷം ലഭിച്ച പ്രശ്നങ്ങള്‍ മാത്രം തെരഞ്ഞെടുക്കുന്നു" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/mr.po b/po/mr.po -index 4061beb..badba91 100644 ---- a/po/mr.po -+++ b/po/mr.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "language/mr/)\n" - "Language: mr\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,102 +30,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' लिहण्याकरीता डिरेक्ट्रि उघडणे अशक्य" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "सूचना: %s बंद करणे अशक्य" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "रिपोर्ट" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "सूचना: %s दाखवणे अशक्य" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio वाहिनी: '%s' पासून वाचणे अशक्य" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio वाहिनी: %s वरील एंकोडिंग सेट करणे अशक्य" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio वाहिनी: %s करीता नॉनब्लॉकिंग मोड सुरू करणे अशक्य" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -135,6 +135,17 @@ msgstr "" - "\n" - "ABRT तर्फे नवीन अडचणी आढळल्यास वापरकर्त्याला सूचीत करणारे ॲप्लेट\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "डिरेक्ट्री चोरण्यापूर्वी विचारा" -@@ -156,12 +167,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"स्टॅक ट्रेस निर्माण करण्यासाठी कोरडम्प फाइल आवश्यक आहे ज्यास वेळ आणि जागा " --"आवश्यक आहे. ABRT तुम्हाला सर्व्हिस पुरवते जे कोरडम्पपासून स्टॅक ट्रेस " --"निर्माण करते परंतु तुम्हाला कोरडम्पला ह्या सर्व्हिसकरिता अपलोड करावे लागेल. " --"ह्या पर्यायचा वापर न करता ABRT विना विचारता कोरडम्प अपलोड करेल." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -207,10 +216,6 @@ msgstr "" - "रिपोर्टिंग सुरू केल्यानंतरच प्रभाव पडतो." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "कोरडम्प अपलोड करण्यापूर्वी विचारा" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -218,15 +223,15 @@ msgstr "" - " हा पर्याय सुरू करून संवेदनशील डाटा आढळल्यास, ABRT नेहमी प्रतिबंधीत प्रवेशसह " - "बग तिकिट निर्माण करेल." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "संवेदनशील माहितीकरिता व्यक्तिगत तिकिटकरिता विनंती करा" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "अपूर्ण अडचणी सूचीत करा" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -236,6 +241,22 @@ msgstr "" - "मौल्यावन अडचणीचे अहवाल पुरवण्याकरिता, ABRT तुम्हाला ह्या अडचणी सादर करण्यास " - "परवानगी देणार नाही." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "बंद करा (_C)" -@@ -261,14 +282,14 @@ msgstr "विषयी" - msgid "Quit" - msgstr "बाहेर पडा" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -280,11 +301,11 @@ msgstr "" - msgid "Problem directory" - msgstr "प्रॉब्लेम डिरेक्ट्री" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "संरचना फाइल" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -298,24 +319,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM चा क्लाएंट uid म्हणून वापर करा" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog करीता लॉग" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "लॉगमध्ये कार्यक्रम नावे समाविष्ट करा" - -@@ -323,60 +345,50 @@ msgstr "लॉगमध्ये कार्यक्रम नावे सम - msgid "Unknown error" - msgstr "अपरिचीत त्रुटी" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' वैध एलिमेंट नाव नाही" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' एलिमेंट संपादित करणे अशक्य" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ओळख पटली नाही" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "संपादनकरीता अडचणकरीता प्रवेश अशक्य" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' वैध एलिमेंट नाव नाही" -+msgid "'%s' element can't be modified" -+msgstr "'%s' एलिमेंट संपादित करणे अशक्य" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s'ची आकार प्राप्ति अशक्य" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "प्रॉबलेम जागा बाकी नाही" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "एलिमेंट '%s' ला प्रॉबलेम डिरेक्ट्रि '%s' पासून नष्ट करणे अशक्य" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -386,12 +398,12 @@ msgstr "" - "नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी " - "करा.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "निष्क्रिय झाल्यावर NUM सेकंदानंतर बाहेर पडा" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "हा प्रोग्राम रूट वापरकर्ता म्हणून चालवा." - -@@ -416,18 +428,22 @@ msgstr "डिमन स्वरूपी बनवू नका" - msgid "Log to syslog even with -d" - msgstr "syslog मध्ये -d पर्यायसह लॉग करा" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR वर EVENT चालवा" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "प्रत्यक्षरित्या वापरकर्त्याशी संपर्क करा" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -465,87 +481,88 @@ msgstr "कंकरंट वर्कर्सची संख्या. प - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB मधील कमाल कॅशे आकार. पूर्वनिर्धारित आहे " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ओळख पटवणे बंद करते" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support वापकर्ता नाव" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support पासवर्ड, दिले नसल्यास, त्याकरिता विनंती दिली जाईल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL प्रमाणपत्र मार्ग किंवा प्रमाणपत्र प्रकार" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password करिता --username देखील निर्देशीत करावे लागेल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "एकतर --username किंवा --certificate यांचा वापर शक्य आहे" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "एकतर --username किंवा --anonymous यांचा वापर शक्य आहे" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "एकतर --anonymous किंवा --certificate यांचा वापर शक्य आहे" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "अवैध बाबींची संख्या" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "अपरिचीत पर्याय मूल्य: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "पासवर्ड:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "पासवर्डविना पुढे जाणे अशक्य\n" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ऑथेंटिकेटेड स्व अहवाल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL क्लाएंट ऑथेंटिकेटेड स्व अहवाल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "निनावी स्व अहवाल" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -566,83 +583,83 @@ msgstr "" - " FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "डिरेक्ट्री नाही: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "वगळत आहे: '{0}' (स्लॅशपासून सुरू होते)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "वगळत आहे: '{0}' (डॉटपासून सुरू होते)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "वगळत आहे: '{0}' (समाविष्टीत आहे ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "वगळत आहे: '{0}' (स्पेस समाविष्टीत आहे)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "वगळत आहे: '{0}' (टॅब समाविष्टीत आहे)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "'{0}' करिता डिरेक्ट्री बदलणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "अपरिचीत फाइल प्रकार: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' मध्ये कार्यरत डिरेक्ट्री निर्माण करणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ला '{1}' करिता हलविणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' चे '{1}' मध्ये प्रत करणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' वरील तापसणी त्रुटी" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' खुले करत आहे" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' डिरेक्ट्रीचे निर्माण अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' खुले करणे अशक्य" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' यशस्वीरित्या विश्लेषणीत केले" - -@@ -666,18 +683,26 @@ msgstr "'%s': %s chown करणे अशक्य" - msgid "Deleting problem directory failed: %s" - msgstr "अडचण डिरेक्ट्री: %s नष्ट करण्यास अपयशी" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus: %s पासून अडचण सूची प्राप्त करणे अशक्य" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -724,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s करीता बॅकट्रेस वाचणे अपयशी" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "क्रॅश थ्रेड आढळले नाही" - -@@ -830,7 +855,7 @@ msgstr "ऊप्स संदेश: '{0}' प्राप्ति अशक - msgid "Oops text extracted successfully" - msgstr "ऊप्स मजकूर यशस्वीरित्या प्राप्त केले" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -838,6 +863,38 @@ msgstr "" - "कर्नल लॉग आढळलेल्या हार्डवेअर त्रुटी निर्देशीत.\n" - "हे संभाव्यतया सॉफ्टवेअर अडचण नाही.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -955,7 +1012,36 @@ msgstr "debuginfo फाइल: {0} आढळली नाही" - msgid "All debuginfo files are available" - msgstr "सर्व debuginfo फाइल्स् उपलब्ध आहे" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -965,7 +1051,7 @@ msgstr "" - "असल्यास, स्टॅक ट्रेस् स्थानीयरित्या निर्माण केले जाईल. (कदाचित प्रचंड डाटा " - "डाउनलोड होईल)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1201,7 +1287,8 @@ msgstr "प्रत्येक ऊप्सकरीता DIR मधील - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation प्रमाणेच आहे, DumpLocation ला abrt.conf मध्ये निर्देशीत केले " -@@ -1213,16 +1300,18 @@ msgstr " PROBLEM मध्ये प्राप्य माहिती सा - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "प्रॉब्लेम डिरेक्ट्री जग वाचनजोगी बनवा" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "प्रति १ सेकंदकरिता थ्रॉटल अडचण डिरेक्ट्रीचे निर्माण" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout करीता सर्च स्ट्रिंग्स्ची छपाई करा व बाहेर पडू नका" - -@@ -1232,9 +1321,13 @@ msgstr "stdout करीता सर्च स्ट्रिंग्स्च - msgid "Failed to compile regex" - msgstr "रेगेक्स कंपाइल करण्यास अपयशी" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "अडचण सुधारित करणे अशक्य: एकापेक्षा जास्त ऊप्स आढळले" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1253,6 +1346,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1276,11 +1370,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1294,16 +1390,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1311,18 +1410,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1341,14 +1443,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1357,12 +1462,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1372,59 +1523,63 @@ msgstr "" - "\n" - "FILE (किंवा स्टँडर्ड इंपुट) पासून Xorg क्रॅश प्राप्त करा" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "स्टँडर्ड आउटपुटवर क्रॅश डाटाची छपाई करा" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "प्रत्येक आढळलेल्या क्रॅशकरीता DIR मध्ये प्रॉबलेम डिरेक्ट्रि निर्माण करा" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1951,7 +2106,7 @@ msgstr "NSS शटडाउन करण्यास अपयशी." - msgid "Sleeping for %d seconds" - msgstr "%d सेकंदकरिता निष्क्रीय झाले" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1959,7 +2114,7 @@ msgstr "" - "खंडीत BIOS मुळे कर्नल अडचण आढळली. दुर्दैवाने, अशा अडचणींचे कर्नल " - "मैनटेनर्सतर्फे निवारण केले जात नाही." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1967,7 +2122,7 @@ msgstr "" - "कर्नल अडचण आढळली, परंतु तुमचे हार्डवेअर असमर्थीत आहे, म्हणून ह्या अडचणीचे " - "कर्नल मैनटेनर्सतर्फे निवारण शक्य नाही." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1976,24 +2131,24 @@ msgstr "" - "कर्नल अडचणी आढळली, परंतु कर्नलमध्ये दोष देखील आढळले (फ्लग्स्:%s). कर्नल " - "मैनटेनर्स् दोषीत अहवालांचे विश्लेषण करण्यास अशक्य." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " टैंटेड मॉड्युल्स: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "बग आयडिजची सूची" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "बोधि सर्व्हर url निर्देशीत करा" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "प्रकाशन निर्देशीत करा" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2003,20 +2158,20 @@ msgstr "" - "\n" - "बोधि सर्व्हरवर सुधारणांकरीता शोधा" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "सुधारणांकरीता शोधत आहे" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ह्या संकुलकरीता सुधारणा आढळले नाही" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "संकुलाची स्थानीय आवृत्ती उपलब्ध सुधारणांपेक्षा नवीन आहे" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2043,66 +2198,67 @@ msgstr "आढळलेल्या ऊप्सेसची छपाई कर - msgid "Delete files with found oopses" - msgstr "आढळलेल्या ऊप्सेसपासून फाइल्स नष्ट करा" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' एकापेक्षा जास्त अडचण डिरेक्ट्री ओळखते" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "वापर: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "अडचणींची सूची दाखवा [DIRs मध्ये]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "प्रॉब्लेम डिरेक्ट्री DIR काढून टाका" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR मध्ये प्रॉब्लेम डाटाचे विश्लेषण करा व कळवा" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR विषयी माहितीची छपाई करा" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "नुकतेच क्रॅशच्या प्रमाणची छपाई करा" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "बहु अडणी विश्लेषीत करा" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' पहा" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "फक्त-न कळवलेल्या अडचणींची सूची दाखवा" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "तपशील अहवाल दाखवा" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नवीन अडचणींची सूची दाखवा" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "फक्त निर्देशीत टाइमस्टॅम्पपेक्षा जुण्या अडचणीच दाखवा" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2113,53 +2269,63 @@ msgstr "" - "root परवानगी सक्षम वापरकर्ता नुरूप, 'abrt-auto-reporting enabled' असे यास " - "गृहीत धरा\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "यापेक्षा मोठे मजकूर अब्रिज्ड दाखवले जाईल" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "या प्रकारची अडचण डिरेक्ट्री '%s' नाही" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "कोणत्याही संदेशविना फक्त अडचण प्रमाणाची छपाई करा" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नुकतेच अडचणींची छपाई करा" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRTला %u अडचणी आढळले. अधिक माहितीकरिता: abrt-cli list%s चालवा\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' नष्ट करणे" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [पर्याय] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "कळविल्यानंतर PROBLEM_DIR काढून टाका" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' नष्ट करणे" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "कृती: remove(rm), info(i), skip(s):" -@@ -2170,27 +2336,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "कृती: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' कळविणे" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "पुढील अडचणीकरिता ENTER दाबा:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "--since बाबविना, सर्व आढळलेल्या अडचणींची पुनराकृती करते." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "फक्त टाइमस्टॅम्पनंतर आढळलेल्या अडचणींनाच पसंत करते" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/nb.po b/po/nb.po -index 6ee7aba..30f520e 100644 ---- a/po/nb.po -+++ b/po/nb.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "abrt/language/nb/)\n" - "Language: nb\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -30,102 +30,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan ikke ta eierskap av «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapporter" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -135,6 +135,17 @@ msgstr "" - "\n" - "Panelprogram som varsler bruker når nye problemer oppdages av ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -156,7 +167,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -189,30 +202,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -238,14 +263,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -257,11 +282,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurasjonsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -275,24 +300,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [alternativer]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logg til syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Legg til programnavn i loggen" - -@@ -300,60 +326,50 @@ msgstr "Legg til programnavn i loggen" - msgid "Unknown error" - msgstr "Ukjent feil" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Ikke autorisert" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -361,12 +377,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Avslutt etter NUM sekunder uten aktivitet" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Programmet må kjøres som root" - -@@ -387,18 +403,22 @@ msgstr "Ikke kjør som tjeneste" - msgid "Log to syslog even with -d" - msgstr "Logg til systemlogg selv med -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -428,73 +448,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -506,68 +527,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -591,18 +612,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -643,7 +672,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Tolking av dump feilet for %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -732,12 +761,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -846,14 +907,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1068,7 +1158,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1078,16 +1169,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1096,8 +1189,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1117,6 +1214,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1140,11 +1238,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1158,16 +1258,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1175,18 +1278,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1205,14 +1311,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1221,70 +1330,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1784,63 +1943,63 @@ msgstr "Klarte ikke å stenge ned NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Oppgi en versjon" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Søker etter oppdateringer" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Ingen oppdateringer funnet for denne pakken" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1862,65 +2021,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Vis detaljert rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1928,49 +2088,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1979,24 +2149,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/nds.po b/po/nds.po -index 12531c2..8f3c2e7 100644 ---- a/po/nds.po -+++ b/po/nds.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/nds/)\n" - "Language: nds\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Berichten" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/nl.po b/po/nl.po -index 820892b..5f486a9 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -12,17 +12,17 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-19 12:01-0400\n" -+"PO-Revision-Date: 2015-10-16 10:28-0400\n" - "Last-Translator: Geert Warrink \n" - "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/" - "language/nl/)\n" - "Language: nl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,34 +32,34 @@ msgstr "Probleemrapportage" - msgid "View and report application crashes" - msgstr "Bekijk en rapporteer crashes van toepassingen" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan '%s' niet claimen" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Kan map niet openen voor het schrijven van '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Kan notificatie niet sluiten: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapport" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Opnieuw starten" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -68,7 +68,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem is automatisch " - "gerapporteerd." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -77,8 +77,8 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Het probleem zal " - "gerapporteerd worden zodra het internet beschikbaar is." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -87,7 +87,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Neem contact op met de " - "ontwikkelaar als je het probleem wilt rapporteren." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -96,7 +96,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat %s gecrasht is. Stuur een rapport op als je " - "wilt helpen met het oplossen van het probleem." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -104,7 +104,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " - "probleem is automatisch gerapporteerd." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -112,7 +112,7 @@ msgstr "" - "Sorry, het ziet er naar uit dat er een probleem optrad in een onderdeel. Het " - "probleem zal gerapporteerd worden zodra het internet beschikbaar is." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -120,28 +120,28 @@ msgstr "" - "Sorry, het ziet er naar uit dat er een probleem is opgetreden. Stuur een " - "rapport op als je wilt helpen met het oplossen van het probleem." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Kan notificatie niet tonen: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Kan niet van gio kanaal lezen: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Kan codering op gio kanaal niet instellenl: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Kan niet-blokkerende modus niet instellen voor gio kanaal: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -152,6 +152,17 @@ msgstr "" - "Applet die de gebruiker waarschuwt als nieuwe problemen door ABRT " - "gedetecteerd zijn\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Vraag voordat een map gestolen wordt" -@@ -173,13 +184,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Het coredump bestand is nodig voor het aanmaken van een stack trace, wat een " --"tijd en ruimte spenderende bewerking is. ABRT biedt een service welke de " --"stack trace aanmaakt uit de coredump, maar je moet de coredump uploaden naar " --"deze service. Als deze optie uitgezet is, zal ABRT de coredump uploaden " --"zonder te vragen." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -227,10 +235,6 @@ msgstr "" - "aan gezet is." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Vraag voordat een coredump geüpload wordt " -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -238,15 +242,15 @@ msgstr "" - " Als deze optie aangezet is, zal ABRT altijd een bug ticket aanmaken met " - "beperkte toegang als mogelijk gevoelige data ontdekt is." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Vraag privé ticket aan voor gevoelige informatie" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Geef incomplete problemen aan" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -256,6 +260,22 @@ msgstr "" - "wordt of als een gebruiker uitlogt. Om waardevolle probleemrapporten aan te " - "bieden, zal ABRT je niet toestaan om deze problemen in te dienen." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Sluiten" -@@ -281,7 +301,7 @@ msgstr "Over" - msgid "Quit" - msgstr "Verlaten" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -291,7 +311,7 @@ msgstr "" - "\n" - "Bevraag pakketdatabase en sla pakket en onderdeel naam op" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -303,11 +323,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Probleemmap" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Configuratiebestand" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Gebruik deze map als RPM root" - -@@ -323,24 +343,25 @@ msgstr "& [-v] -d MAP\n" - msgid "Root directory for running container commands" - msgstr "Root map voor het uitvoeren van container commando's" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opties]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Gebruik NUM as cliënt uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Loggen naar syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Voeg programmanamen toe aan de log" - -@@ -348,62 +369,52 @@ msgstr "Voeg programmanamen toe aan de log" - msgid "Unknown error" - msgstr "Onbekende fout" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' is geen geldige probleemmap" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' is geen geldige element naam" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' element kan niet veranderd worden" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' is geen geldige probleemmap" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Niet geauthoriseerd" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Krijg geen toegang tot het probleem om het te veranderen" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' element kan niet veranderd worden" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Veranderen van mapeigenaar mislukte. Controleer systeemlogs voor meer " - "details. " - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Krijg geen toegang tot het probleem om te lezen" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' is geen geldige element naam" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Kan grootte van '%s' niet verkrijgen" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Er is geen probleemruimte meer" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Kan het element '%s' niet verwijderen uit de probleemmap '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -413,12 +424,12 @@ msgstr "" - "De naam '%s' is verloren gegaan, controleer of er geen andere service draait " - "die eigenaar is van de naam.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Afsluiten na NUM seconden van inactiviteit" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Dit programma moet door root worden uitgevoerd" - -@@ -445,18 +456,22 @@ msgstr "Niet instellen als daemon" - msgid "Log to syslog even with -d" - msgstr "Loggen naar syslog zelfs met -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT MAP..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Voer EVENT uit op DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Communiceer rechtstreeks met de gebruiker" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -494,75 +509,76 @@ msgstr "Aantal gelijktijdige werkers. Standaard is " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximale cachegrootte in MiB. Standaard is " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Zet de authenticatie uit" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support gebruikersnaam" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support wachtwoord, als deze niet opgegeven wordt, zal een prompt " - "uitgegeven worden" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL certificaatpaden of certificaattype" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Je moet voor --password ook --username specificeren" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Je kunt --username of --certificate gebruiken" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Je kunt --username of --anonymous gebruiken" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Je kunt --anonymous of --certificate gebruiken" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Ongeldig aantal argumenten" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Onbekende optiewaarde: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Wachtwoord:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Kan niet verdergaan zonder wachtwoord\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Automatisch rapporteren met HTTP authenticatie" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Automatisch rapporteren met SSL Cliënt authenticatie" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Automatisch anoniem rapporteren" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -581,68 +597,68 @@ msgstr "" - " UPLOAD_MAP - Map waarin geüploade archieven opgeslagen worden\n" - " BESTANDSNAAM - Naam van geüploade archief\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Geen map: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Wordt overgeslagen: '{0}' (begint met een slash)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Wordt overgeslagen: '{0}' (begint met een punt)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Wordt overgeslagen: '{0}' (bevat ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Wordt overgeslagen: '{0}' (bevat een spatie)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Wordt overgeslagen: '{0}' (bevat een tab)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Kan de map niet veranderen naar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Onbekend bestandstype: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Kan de werkmap niet veranderen naar '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Kan '{0}' niet verplaatsen naar '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Kan '{0}' niet kopiëren naar '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Verificatiefout bij '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' wordt uitgepakt" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Kan map '{0}' niet aanmaken" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Kan '{0}' niet uitpakken" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' is met succes verwerkt" - -@@ -666,21 +682,29 @@ msgstr "Kan niet chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Verwijderen probleemmap mislukt: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Kan geen probleemlijst verkrijgen van abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Kan met abrt-dbus niet testen of het element bestaat: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -725,7 +749,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Backtrace ontleden mislukte voor %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Crash thread werd niet gevonden" - -@@ -832,7 +856,7 @@ msgstr "Kan de oops boodschap niet extraheren: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Oops tekst met succes geextraheerd" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -840,6 +864,38 @@ msgstr "" - "De kernel log geeft aan dat hardwarefouten zijn ontdekt.\n" - "Dit is waarschijnlijk geen softwareprobleem.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -981,7 +1037,36 @@ msgstr "Ontbrekend debuginfo-bestand: {0}" - msgid "All debuginfo files are available" - msgstr "Alle debuginfo-bestanden zijn beschikbaar" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -991,7 +1076,7 @@ msgstr "" - "antwoord 'Nee' is , zal lokaal een stacktrace aangemaakt worden. (Dit kan " - "een grote hoeveelheid data gaan downloaden.)" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1224,7 +1309,8 @@ msgstr "Maak nieuwe probleem map aan in MAP voor elke gevonden oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Hetzelfde als -d DumpLocation, DumpLocation wordt gespecificeerd in abrt." -@@ -1236,16 +1322,18 @@ msgstr "Sla de geextraheerde informatie op in PROBLEEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Maak de probleemmap leesbaar voor iedereen" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Beperk het aanmaken van probleemmappen tot 1 per seconde" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Print zoekstring(s) naar stdout en sluit af" - -@@ -1254,9 +1342,13 @@ msgstr "Print zoekstring(s) naar stdout en sluit af" - msgid "Failed to compile regex" - msgstr "Reguliere expressie kon niet gecompileerd worden" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Kan het probleem niet vernieuwen: meer dan een oops gevonden" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1275,6 +1367,7 @@ msgstr "Opslaan gedetecteerde probleemdata in abrt database mislukte" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Kan de systemd-journal waarneming niet initialiseren" - -@@ -1311,11 +1404,13 @@ msgstr "Maak nieuwe probleemmap aan in MAP voor elke coredump" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Begin met lezen van systemd-journal op de CURSOR positie" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Begin met lezen van systemd-journal vanaf het einde" - -@@ -1329,17 +1424,20 @@ msgstr "Zelfde als -t INT, INT wordt gespecificeerd in plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Volg systemd-journal vanaf de laatst bekeken positie (indien beschikbaar)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Je moet -c CURSOR of -e specificeren" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Kan systemd-journal niet openen" - -@@ -1347,18 +1445,21 @@ msgstr "Kan systemd-journal niet openen" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Kan systemd-journal niet filteren naar alleen systemd-coredump data" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Kan niet zoeken tot aan het end van het journaal" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Instellen van systemd-journal cursor '%s' mislukte" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Kan geen journaaldata lezen" - -@@ -1390,28 +1491,77 @@ msgstr "" - "De laatst bekeken positie wordt opgeslagen in " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Lees journaalbestanden van alle machines" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Lees alle journaalbestanden uit de map op PAD" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Kan systemd-journal niet initialiseren in de map '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Kan systemd-journal niet filteren naar alleen kernel data" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Starten van waarneming vanaf cursor '%s' mislukte" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1421,46 +1571,50 @@ msgstr "" - "\n" - "Extraheer Xorg crash van FILE (of standaard input)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Print vond crashdata bij standaard output" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Maak probleem map aan in MAP voor elke gevonden crash" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Kan de positie van de journaalwaarneming niet opslaan" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Kan de positie van de journaalwaarneming niet opslaan: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "De positie van de journaalwaarneming wordt niet hersteld: bestand '%s' " - "bestaat niet" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - "Kan de positie van de journaalwaarneming niet herstellen van bestand '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Kan de positie van de journaalwaarneming niet herstellen: pad '%s' is geen " - "gewoon bestand" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1468,12 +1622,12 @@ msgstr "" - "Kan de positie van de journaalwaarneming niet herstellen: bestand '%s' " - "overschrijdt de %dB groottelimiet" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Kan de positie van de journaalwaarneming niet herstellen: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1481,7 +1635,7 @@ msgstr "" - "bestand '%s' niet lezen" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2022,7 +2176,7 @@ msgstr "Afsluiten van NSS mislukte." - msgid "Sleeping for %d seconds" - msgstr "In slaap voor %d seconden" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2030,7 +2184,7 @@ msgstr "" - "Er is een kernelprobleem opgetreden wegens een BIOS defect. Zulke problemen " - "kunnen helaas niet opgelost worden met kernelonderhoud." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2038,7 +2192,7 @@ msgstr "" - "Een kernelprobleem trad op, maar jouw hardware wordt niet ondersteund, " - "daarom kunnen kernelmaintainers dit probleem niet repareren." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2047,24 +2201,24 @@ msgstr "" - "Een kernelprobleem trad op, maar de kernel werd aangetast (flags:%s). " - "Kernelmaintainers kunnen geen diagnose stellen bij aangetaste rapporten." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Aangetaste modules: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lijst van bug ids" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Geef een bodhi-server-url op" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Geef een release op" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2074,20 +2228,20 @@ msgstr "" - "\n" - "Zoek naar updates op bodhi server" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Updates zoeken" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Geen updates voor dit pakket gevonden" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "De locale versie van het pakket is nieuwer dan de beschikbare updates" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2116,68 +2270,69 @@ msgstr "Print gevonden oopses" - msgid "Delete files with found oopses" - msgstr "Verwijder bestanden met gevonden oopses" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' identificeert meer dan een probleemmap" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Gebruik: abrt-cli [--version] COMMANDO [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Toon problemen [in MAPpen]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Verwijder probleemmap DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyseer en rapporteer probleemdata in DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Print informatie over DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Print de telling van de recente crashes" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Verwerk meerdere problemen" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opties]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Toon alleen niet-gerapporteerde problemen" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Toon gedetailleerd rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Toon alleen de problemen die recenter zijn dan de gespecificeerde " - "tijdstempel" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Toon alleen de problemen die ouder zijn dan de gespecificeerde tijdstempel" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2189,51 +2344,61 @@ msgstr "" - "als een gebruiker met root rechten 'abrt-auto-reporting enabled' uit te " - "voeren.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Tekst groter dan dit zal verkort getoond worden" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Geen probleemmap '%s' bekend" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Print alleen de probleem telling zonder een boodschap" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Print alleen de problemen recenter is dan opgegeven tijdstempel" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-" - "cli list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [opties] MAP..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Verwijder PROBLEM_DIR na het rapporteren" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "'%s' wordt verwijderd" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [opties] MAP..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Verwijder PROBLEM_DIR na het rapporteren" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Acties: remove(rm), info(i), skip(s):" -@@ -2242,26 +2407,181 @@ msgstr "Acties: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Acties: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' wordt gerapporteerd" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Duw voor het volgende probleem op ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Zonder het --since argument, wordt over alle gedetecteerde problemen " - "geïtereerd." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Selecteert alleen problemen die na het tijdstempel gedetecteerd zijn." - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/or.po b/po/or.po -index da975ec..7e64244 100644 ---- a/po/or.po -+++ b/po/or.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -21,7 +21,7 @@ msgstr "" - "language/or/)\n" - "Language: or\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,102 +31,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' କୁ ଲେଖିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଖୋଲି ପାରିବେ ନାହିଁ" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ବିଜ୍ଞପ୍ତିକୁ ବନ୍ଦ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ରିପୋର୍ଟ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ବିଜ୍ଞପ୍ତି ଦର୍ଶାଇପାରିବେ ନାହିଁ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio ଚ୍ୟାନେଲରୁ ପଢ଼ିପାରିବେ ନାହିଁ: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ଚ୍ୟାନେଲରେ ସାଙ୍କେତିକରଣକୁ ସେଟ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ଚ୍ୟାନେଲ ପାଇଁ ଅଟକ ରଖିପାରୁନଥିବା ଧାରାକୁ ଅନ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -137,6 +137,17 @@ msgstr "" - "ABRT ଦ୍ଵାରା ନୂତନ ସମସ୍ଯାଗୁଡ଼ିକ ଚିହ୍ନା ପଡ଼ିବା ସମୟରେ ଯେଉଁ ଚାଳକ ଆପଲେଟକୁ " - "ପରିବର୍ତ୍ତନ କରିଥାଏ\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -157,19 +168,15 @@ msgstr "ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" - msgid "Silent shortened reporting" - msgstr "ନିରବରେ ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"କୋରଡମ୍ପ ଫାଇଲଟି ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆବଶ୍ୟକ ଯାହାକି ସମୟ ଏବଂ ସ୍ଥାନ " --"ଆବଶ୍ୟକ କରିଥିବା ପ୍ରୟୋଗ। ABRT ଏକ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ ଯାହାକି କୋର ଡମ୍ପରୁ ଷ୍ଟାକ " --"ଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ କିନ୍ତୁ ଆପଣଙ୍କୁ ଏହି ସର୍ଭିସରେ କୋର ଡମ୍ପକୁ ଧାରଣ କରିବାକୁ ହେବ। " --"ABRT କୁ ନିଷ୍କ୍ରିୟ କରିଥିବା ଏହି ବିକଳ୍ପ ସହିତ ତାହା ନପଚାରି କୋର ଡମ୍ପକୁ ଧାରଣ " --"କରିଥାଏ।" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -219,29 +226,24 @@ msgstr "" - "ସମସ୍ୟାଗୁଡ଼ିକର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ଦର୍ଶାଇବ ନାହିଁ। ସକ୍ଷିପ୍ତ ଖବରକାରୀ ସକ୍ରିୟ " - "ହୋଇଥିଲେ ହିଁ କାର୍ଯ୍ଯକାରୀ ହୋଇଥାଏ।" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "coredump ଧାରଣ କରିବା ପୂର୍ବରୁ ପଚାରନ୍ତୁ" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ସମ୍ବେଦନଶୀଳ ସୂଚନା ପାଇଁ ବ୍ୟକ୍ତିଗତ ଟିକଟ ଅନୁରୋଧ କରନ୍ତୁୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ସୂଚାନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -251,6 +253,22 @@ msgstr "" - "ବ୍ୟବହାରକାରୀ ଲଗଆଉଟ ହେଉଛି। ମୂଲ୍ୟବାନ ସମସ୍ୟା ବିବରଣୀ ପ୍ରଦାନ କରିବା ପାଇଁ, ABRT " - "ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟାଗୁଡ଼ିକୁ ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେବ ନାହିଁ।" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "ବନ୍ଦ କରନ୍ତୁ (_C)" -@@ -276,14 +294,14 @@ msgstr "ବିବରଣୀ" - msgid "Quit" - msgstr "ବିଦାୟ ନିଅନ୍ତୁ" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -295,11 +313,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ସମସ୍ଯାବହୁଳ ଡିରେକ୍ଟୋରୀ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "କନଫିଗରେସନ ଫାଇଲ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -313,24 +331,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ବିକଳ୍ପଗୁଡିକ]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM କୁ କ୍ଲାଏଣ୍ଟ uid ଭାବରେ ବ୍ୟବହାର କରନ୍ତୁ" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ପାଇଁ ଲଗ" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯୋଗ କରନ୍ତୁ" - -@@ -338,61 +357,51 @@ msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯ - msgid "Unknown error" - msgstr "ଅଜଣା ତ୍ରୁଟି" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "କ୍ଷମତା ସମ୍ପନ୍ନ ନୁହେଁ" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ପରିବର୍ତ୍ତନ ପାଇଁ ସମସ୍ୟାକୁ ଅଭିଗମ୍ୟ କରିପାରିବେ ନାହିଁ" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' ଉପାଦାନକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chowning ଡିରେକ୍ଟୋରୀ ବିଫଳ ହୋଇଛି। ଅଧିକ ବିବରଣୀ ପାଇଁ ତନ୍ତ୍ର ଲଗ ଯାଞ୍ଚ କରନ୍ତୁ।" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ର ଆକାର ପାଇବେ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "କୌଣସି ସମସ୍ୟା ସ୍ଥାନ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "ଉପାଦାନ '%s' କୁ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ '%s' ରୁ ଅପସାରଣ କରିପାରିବେ ନାହିଁ" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -402,12 +411,12 @@ msgstr "" - "'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ " - "କରନ୍ତୁ।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM ସେକଣ୍ଡ ନିଷ୍କ୍ରିୟ ହେବା ପରେ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ଏହି ପ୍ରଗ୍ରାମକୁ ମୂଖ୍ଯ ଚାଳକ ଭାବରେ ଚଲାଇବା ଉଚିତ।" - -@@ -434,18 +443,22 @@ msgstr "daemonize କରନ୍ତୁ ନାହିଁ" - msgid "Log to syslog even with -d" - msgstr "-d ସହିତ ମଧ୍ଯ syslog ଘଟଣାକୁ ଲଗ କରନ୍ତୁ" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR ରେ EVENT କୁ ଚଲାନ୍ତୁ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ବ୍ୟବହାରକାରୀଙ୍କ ସହିତ ସିଧାସଳଖ ଭାବରେ ଯୋଗାଯୋଗ କରନ୍ତୁ" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -484,89 +497,90 @@ msgstr "ସହକାରୀ କର୍ମଚାରୀ ସଂଖ୍ୟା। ପୂ - msgid "Maximal cache size in MiB. Default is " - msgstr "ସର୍ବାଧିକ କ୍ୟାଶେ ଆକାର MiB ରେ। ପୂର୍ବନିର୍ଦ୍ଧାରିତଟି ହେଉଛି" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ବୈଧିକରଣକୁ ଅଫ୍‌ କରନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat ସହାୟତା ବ୍ୟବହାରକାରୀ ନାମ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat ସହାୟତା ପ୍ରବେଶ ସଂକେତ, ଯଦି ଦିଆଯାଇ ନାହିଁ, ତେବେ ଏହା ପାଇଁ ଏକ ପ୍ରମ୍ପ୍‌ଟ୍ " - "ଦିଆଯିବ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL ପ୍ରମାଣପତ୍ର ପଥ କିମ୍ବା ପ୍ରମାଣପତ୍ର ପ୍ରକାର" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "ଆପଣଙ୍କୁ --password ପାଇଁ --username ମଧ୍ଯ ଉଲ୍ଲେଖ କରିବା ଆବଶ୍ୟକ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "ଆପଣ --username କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "ଆପଣ --username କିମ୍ବା --anonymous ବ୍ୟବହାର କରିପାରିବେ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "ଆପଣ --anonymous କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ଅବୈଧ ସଂଖ୍ୟକ ସ୍ୱତନ୍ତ୍ରଚର" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ଅଜଣା ବିକଳ୍ପ ମୂଲ୍ୟ: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "ପ୍ରବେଶ ସଂକେତ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ \n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL କ୍ଲାଏଣ୍ଟ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Manoj Kumar Giri --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonymous ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବା" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -586,83 +600,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ଗୋଟିଏ ଡିରେକ୍ଟୋରୀ ନୁହଁ: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ସ୍ଲାଶ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ଡଟ୍‌ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଧାରଣ କରିଥାଏ ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଖାଲିସ୍ଥାନ ଧାରଣ କରିଥାଏ )" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଟ୍ୟାବ୍‌ ଧାରଣ କରିଥାଏ )" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "ଡିରୋକ୍ଟୋରୀକୁ '{0}' ଭାବରେ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "ଅଜଣା ଫାଇଲ ପ୍ରକାର: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' ରେ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' କୁ '{1}' କୁ ଘୁଞ୍ଚାଇପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' କୁ '{1}' କୁ ନକଲ କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' ରେ ଯାଞ୍ଚ ତୃଟି" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' କୁ ଖୋଲୁଅଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' କୁ ଖୋଲିପାରିବେ ନାହିଁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' କୁ ସଫଳତାର ସହିତ କାର୍ଯ୍ୟକାରୀ ହୋଇଛି" - -@@ -686,18 +700,26 @@ msgstr "chown '%s' କରିପାରିବେ ନାହିଁ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଅପସାରଣ ବିଫଳ ହୋଇଛି: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତାଲିକା ପାଇପାରିବେ ନାହିଁ: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -745,7 +767,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s ପାଇଁ ବ୍ୟାକଟ୍ରାସ ବିଶ୍ଳେଷଣ ବିଫଳ ହୋଇଛି" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "କ୍ରାସ ଥ୍ରେଡ଼ ମିଳୁ ନାହିଁ" - -@@ -853,7 +875,7 @@ msgstr "oops ସନ୍ଦେଶକୁ ବାହାର କରିପାରିବ - msgid "Oops text extracted successfully" - msgstr "Oops ପାଠ୍ୟ ସଫଳତାର ସହିତ ବାହାର କରାଯାଇଛି" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -861,6 +883,38 @@ msgstr "" - "ହାର୍ଡୱେର ତୃଟିଗୁଡ଼ିକ ଚିହ୍ନଟ ହୋଇଛି ବୋଲି କର୍ଣ୍ଣଲ ଲଗ ସୂଚାଇଥାଏ।\n" - "ଏହା ସମ୍ଭବତଃ ଏକ ସଫ୍ଟୱେର ସମସ୍ୟା ନୁହଁ।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -978,7 +1032,36 @@ msgstr "ଅନୁପସ୍ଥିତ ତ୍ରୁଟିନିବାରଣ ଫା - msgid "All debuginfo files are available" - msgstr "ସମସ୍ତ ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ ଉପଲବ୍ଧ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -988,7 +1071,7 @@ msgstr "" - "ଆପଣଙ୍କର ଉତ୍ତର 'ନାଁ' ତେବେ, ସ୍ଥାନୀୟ ଭାବରେ ଏକ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି ହେବ। (ଏହା " - "ହୁଏତଃ ବହୁ ପରିମାଣର ତଥ୍ୟ ଆହରଣ କରିପାରେ)।" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1229,7 +1312,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d ଡମ୍ପ ଅବସ୍ଥାନ ପରି ସମାନ, ଡମ୍ପ ଅବସ୍ଥାନକୁ abrt.conf ରେ ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" -@@ -1240,16 +1324,18 @@ msgstr "ବାହାର କରାଯାଇଥିବା ସୂଚନାକୁ ସ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ବିଶ୍ୱ ପଠନଯୋଗ୍ୟ କରନ୍ତୁ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣକୁ ପ୍ରତି ସେକେଣ୍ଡରେ 1କୁ ତ୍ୱରିତ କରନ୍ତୁ" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ଼ିକୁ) ମୁଦ୍ରଣ କରନ୍ତୁ ଏବଂ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" - -@@ -1259,9 +1345,13 @@ msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ - msgid "Failed to compile regex" - msgstr "regex କୁ ସଙ୍କଳନ କରିବାରେ ବିଫଳ" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "ଏହି ସମସ୍ୟାକୁ ଅଦ୍ୟତନ କରିପାରିବେ ନାହିଁ: ଗୋଟିଏରୁ ଅଧିକ oops ମିଳିଛି" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1280,6 +1370,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1303,11 +1394,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1321,16 +1414,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1338,18 +1434,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1368,14 +1467,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1384,12 +1486,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1399,59 +1547,63 @@ msgstr "" - "\n" - "Xorg ନଷ୍ଟକୁ FILE (ଅଥବା ମାନକ ନିବେଶ) ରୁ ବାହାର କରନ୍ତୁ" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "ମାନକ ଫଳାଫଳ ଉପରେ ମୁଦ୍ରଣୀ ନଷ୍ଟ ତଥ୍ୟ ପାଇଛି" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "ମିଳିଥିବା ପ୍ରତ୍ୟେକ ନଷ୍ଟ ବିବରଣୀ ପାଇଁ DIR ରେ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1986,7 +2138,7 @@ msgstr "NSS କୁ ବନ୍ଦ କରିବାରେ ବିଫଳ।" - msgid "Sleeping for %d seconds" - msgstr "%d ସେକେଣ୍ଡ ପାଇଁ ସୁପ୍ତ ଅଛି" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1994,7 +2146,7 @@ msgstr "" - "ଖରାପ BIOS ହେତୁ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି। ଦୁର୍ଭାଗ୍ୟ ବଶତଃ, ଏପରି ସମସ୍ୟାଗୁଡ଼ିକୁ " - "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନଙ୍କ ଦ୍ୱାରା ସମାଧାନ ହୋଇପାରିବ ନାହିଁ।" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2002,7 +2154,7 @@ msgstr "" - "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି, କିନ୍ତୁ ଆପଣଙ୍କର ହାର୍ଡୱେର ସହାୟତା ପ୍ରାପ୍ତ ନୁହଁ, " - "ତେଣୁ କର୍ଣ୍ଣଲ ପରିଚାଳକ ମାନେ ଏହି ସମସ୍ୟାର ସମାଧାନ କରିବାରେ ଅସମର୍ଥ।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2011,24 +2163,24 @@ msgstr "" - "ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଘଟିଛି, କିନ୍ତୁ ଆପଣଙ୍କର କର୍ଣ୍ଣଲ ଖରାପ ହୋଇଯାଇଛି (ସୂଚକ:%s). " - "କର୍ଣ୍ଣଲ ପରିଚାଳକମାନେ ତ୍ରୁଟି ବିବରଣୀଗୁଡ଼ିକୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " ଦୂଷିତ ମଡ୍ୟୁଲଗୁଡ଼ିକ: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ତ୍ରୁଟି id ଗୁଡ଼ିକର ତାଲିକା" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ଏକ ବୋଧି ସର୍ଭର url ଉଲ୍ଲେଖ କରନ୍ତୁ" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ଏକ ପ୍ରକାଶନୀ ଉଲ୍ଲେଖ କରନ୍ତୁ" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2038,20 +2190,20 @@ msgstr "" - "\n" - "ବୋଧି ସର୍ଭର ଉପରେ ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରନ୍ତୁ" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରୁଅଛି" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ଏହି ପ୍ୟାକେଜ ପାଇଁ କୌଣସି ଅଦ୍ୟତନ ନାହିଁ" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "ପ୍ୟାକେଜର ସ୍ଥାନୀୟ ସଂସ୍କରଣ ଉପଲବ୍ଧ ଅଦ୍ୟତନଗୁଡ଼ିକ ଠାରୁ ନୂଆ ଅଟେ" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2079,68 +2231,69 @@ msgstr "ମୁଦ୍ରଣୀ oopses ପାଇଛି" - msgid "Delete files with found oopses" - msgstr "ମିଳିଥିବା oopses ସହିତ ଫାଇଲଗୁଡ଼ିକୁ ଅପସାରଣ କରନ୍ତୁ" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ଗୋଟିଏରୁ ଅଧିକ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଚିହ୍ନିଟ କରିଛି" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ବ୍ୟବହାର ବିଧି: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "ତାଲିକା ସମସ୍ୟା [DIRs ରେ]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "ସମସ୍ଯା ଡିରେକ୍ଟୋରୀ DIRରୁ ଫାଇଲଗୁଡ଼ିକୁ ବାହାର କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR ରେ ସମସ୍ୟା ତଥ୍ୟକୁ ବିଶ୍ଳେଷଣ କରନ୍ତୁ ଏବଂ ଖବର କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ବିଷୟରେ ସୂଚନାକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ନିକଟରେ ହୋଇଥିବା ନଷ୍ଟର ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "ଏକାଧିକ ସମସ୍ୟାଗୁଡ଼ିକୁ କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' କୁ ଦେଖନ୍ତୁ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "କେବଳ ଖବର କରାଯାଇନଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "ବିସ୍ତୃତ ବିବରଣୀ ଦର୍ଶାନ୍ତୁ" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମାର ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମା ଠାରୁ ପୁରୁଣା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2151,55 +2304,65 @@ msgstr "" - "କୁ ନ୍ୟସ୍ତ କରି\n" - "ଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ଏହାଠାରୁ ବଡ଼ ପାଠ୍ୟକୁ ସଂକ୍ଷିପ୍ତରେ ଦର୍ଶାଯିବ" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "ଏପରି କୌଣସି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନାହିଁ '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "କୌଣସି ସନ୍ଦେଶ ବିନା କେବଳ ସମସ୍ୟା ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟ ସୀମା ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u ସମସ୍ୟା(ଗୁଡ଼ିକୁ) ଚିହ୍ନଟ କରିଛି। ଅଧିକ ସୂଚନା ପାଇଁ ଏହାକୁ ଚଲାନ୍ତୁ: abrt-" - "cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& ବିବରଣୀ [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "ଖବର କରିସାରିବା ପରେ PROBLEM_DIR କୁ ବାହାର କରନ୍ତୁ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "କାର୍ଯ୍ୟ: (rm), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" -@@ -2210,28 +2373,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "କାର୍ଯ୍ୟ: (rm),report(e), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' କୁ ଖବର କରା ସରିଛି" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "ପରବର୍ତ୍ତୀ ସମସ୍ୟା ପାଇଁ ENTER ଦବାନ୍ତୁ:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "କେବଳ timestamp ପରେ ଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ବାଛନ୍ତୁ" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/pa.po b/po/pa.po -index 4a9d600..15a960a 100644 ---- a/po/pa.po -+++ b/po/pa.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -23,7 +23,7 @@ msgstr "" - "abrt/language/pa/)\n" - "Language: pa\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -33,102 +33,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਖੋਲ ਸਕਿਆ" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ਸੂਚਨਾ ਬੰਦ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "ਰਿਪੋਰਟ" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ਸੂਚਨਾ ਨਹੀਂ ਵੇਖਾ ਸਕਿਆ: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "'%s' ਤੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio ਚੈਨਲ ਤੇ ਇੰਕੋਡਿੰਗ ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio ਚੈਨਲ ਲਈ ਨਾਨ-ਬਲਾਕਿੰਗ ਮੋਡ ਨਹੀਂ ਚਾਲੂ ਕਰ ਸਕਿਆ: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -138,6 +138,17 @@ msgstr "" - "\n" - "ਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੀ ਨਵੀਂ ਸਮੱਸਿਆ ਬਾਰੇ ਦੱਸਦਾ ਹੈ\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" -@@ -156,18 +167,15 @@ msgstr "" - msgid "Silent shortened reporting" - msgstr "" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"ਸਟੈਕ ਪੈਦਾ ਕਰਨ ਲਈ ਕੋਰਡੰਪ ਫਾਈਲ ਜਰੂਰੀ ਹੈ ਜਿਹੜੀ ਕਿ ਸਮਾਂ ਅਤੇ ਜਗ੍ਹਾ ਲੈਣ ਵਾਲੀ " --"ਕਾਰਵਾਈ ਹੈ। ABRT ਇੱਕ ਸੇਵਾ ਮੁਹੱਈਆ ਕਰਵਾਉਂਦਾ ਹੈ ਜਿਹੜੀ ਕੋਰਡੰਪ ਤੋਂ ਸਟੈਕ ਟਰੇਸ ਪੈਦਾ " --"ਕਰਦੀ ਹੈ ਪਰ ਤੁਹਾਨੂੰ ਇਸ ਸੇਵਾ ਨੂੰ ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨਾ ਪੈਂਦਾ ਹੈ। ਇਸ ਚੋਣ ਨੂੰ ਅਯੋਗ " --"ਕਰਨ ਨਾਲ ABRT ਕੋਰਡੰਪ ਨੂੰ ਬਿਨਾਂ ਪੁੱਛੇ ਹੀ ਅੱਪਲੋਡ ਕਰ ਦੇਵੇਗਾ।" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -198,34 +206,45 @@ msgid "" - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪੁੱਛੋ" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ਸੰਵੇਦਨਸ਼ੀਲ ਜਾਣਕਾਰੀ ਲਈ ਨਿੱਜੀ ਟਿਕਟ ਦੀ ਬੇਨਤੀ ਕਰੋ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "ਅਧੂਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਲਈ ਸੂਚਿਤ ਕਰੋ" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -252,14 +271,14 @@ msgstr "ਬਾਰੇ" - msgid "Quit" - msgstr "ਨਿੱਕਲੋ" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -271,11 +290,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -289,24 +308,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ਚੋਣਾਂ]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM ਨੂੰ ਕਲਾਂਈਟ uid ਤੌਰ ਤੇ ਵਰਤੋ" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog ਵਿੱਚ ਲਾਗ ਕਰੋ" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" - -@@ -314,60 +334,50 @@ msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" - msgid "Unknown error" - msgstr "ਅਣਜਾਣੀ ਗਲਤੀ" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ਪਰਮਾਣਤ ਨਹੀਂ" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ਸੁਧਾਰ ਲਈ ਸਮੱਸਿਆ ਨਹੀਂ ਵੇਖ ਸਕਦਾ" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" -+msgid "'%s' element can't be modified" -+msgstr "'%s' ਐਲੀਮੈਂਟ ਸੋਧੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' ਦਾ ਆਕਾਰ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ਕੋਈ ਸਮੱਸਿਆ ਸਪੇਸ ਨਹੀਂ ਬਚੀ" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "ਐਲੀਮੈਂਟ '%s' ਨੂੰ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ '%s' ਤੋਂ ਹਟਾ ਨਹੀਂ ਸਕਦਾ" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -377,12 +387,12 @@ msgstr "" - "ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ " - "ਰਿਹਾ।\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM ਸਕਿੰਟਾਂ ਦੀ ਕਾਰਵਾਈ ਤੋਂ ਬਾਅਦ ਬੰਦ ਕਰੋ" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ਇਹ ਪਰੋਗਰਾਮ ਪਰਬੰਧਕ(root) ਦੇ ਤੌਰ ਤੇ ਚਲਾਉਣਾ ਜਰੂਰੀ ਹੈ।" - -@@ -408,18 +418,22 @@ msgstr "ਡੈਮਨਾਈਜ਼ ਨਾ ਕਰੋ" - msgid "Log to syslog even with -d" - msgstr "syslog ਵਿੱਚ ਭਾਵੇਂ -d ਚੋਣ ਨਾਲ ਲਾਗ ਕਰੋ" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT ਨੂੰ DIR ਉੱਪ ਚਲਾਓ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "ਯੂਜ਼ਰ ਨੂੰ ਸਿੱਧਾ ਸੰਪਰਕ ਕਰੋ" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -461,75 +475,76 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਕੈਚੇ ਆਕਾਰ MiB ਵਿੱਚ। ਮੂਲ ਹੈ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "ਅਢੁਕਵੀਂ ਗਿਣਤੀ ਦੇ ਆਰਗੂਮੈਂਟ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ਅਣਪਛਾਤਾ ਚੋਣ ਮੁੱਲ: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -541,68 +556,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -626,18 +641,26 @@ msgstr "chown '%s' ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" - msgid "Deleting problem directory failed: %s" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਸੂਚੀ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -684,7 +707,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s ਲਈ ਬੈਕਟਰੇਸ ਪਾਰਸਿੰਗ ਫੇਲ ਹੋਈ ਹੈ" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ਕਰੈਸ਼ ਥਰੈੱਡ ਨਹੀਂ ਲੱਭਿਆ" - -@@ -791,7 +814,7 @@ msgid "Oops text extracted successfully" - msgstr "Oops ਸਫਲਤਾਪੂਰਵਕ ਨਿਖੇੜਿਆ ਗਿਆ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -799,6 +822,38 @@ msgstr "" - "ਕਰਨਲ ਲੌਗ ਸੰਕੇਤ ਕਰਦਾ ਹੈ ਕਿ ਹਾਰਡਵੇਅਰ ਗਲਤੀਆਂ ਖੋਜੀਆਂ ਗਈਆਂ।\n" - "ਇਹ ਸਾਫਟਵੇਅਰ ਸਮੱਸਿਆ ਉੱਕਾ ਹੀ ਨਹੀਂ ਹੋ ਸਕਦੀ।\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -916,7 +971,36 @@ msgstr "ਗੈਰ-ਮੌਜੂਦ debuginfo ਫਾਇਲ: {0}" - msgid "All debuginfo files are available" - msgstr "ਸਭ debuginfo ਫਾਇਲਾਂ ਉਪਲੱਬਧ ਹਨ" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -926,7 +1010,7 @@ msgstr "" - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1157,7 +1241,8 @@ msgstr "ਹਰੇਕ oops ਲਈ ਨਵੀਂ ਸਮੱਸਿਆ ਡਾਇਰੈ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation ਵਾਂਗ, DumpLocation ਨੂੰ abrt.conf ਵਿੱਚ ਨਿਰਧਾਰਤ ਕੀਤਾ ਹੈ" - -@@ -1167,16 +1252,18 @@ msgstr "ਅਲੱਗ ਕੀਤੀ ਹੋਈ ਜਾਣਕਾਰੀ PROBLEM ਵਿ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਪੜ੍ਹਨਯੋਗ ਬਣਾਓ" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "1 ਪ੍ਰਤੀ ਸੈਕਿੰਡ ਨਾਲ ਥਰੌਟਲ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣਾ " - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ ਅਤੇ ਬਾਹਰ ਜਾਓ" - -@@ -1185,9 +1272,13 @@ msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕ - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "ਮੁਸ਼ਕਿਲ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦਾ: ਇੱਕ ਤੋਂ ਜਿਆਦਾ oops ਲੱਭੀਆਂ" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1206,6 +1297,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1229,11 +1321,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1247,16 +1341,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1264,18 +1361,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1294,14 +1394,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1310,12 +1413,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1325,58 +1474,62 @@ msgstr "" - "\n" - "Xorg ਕਰੈਸ਼ ਨੂੰ FILE (ਜਾਂ ਸਟੈਂਡਰਡ ਇੰਪੁੱਟ) ਤੋਂ ਲਵੋ" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "ਮਿਲੇ ਕਰੈਸ਼ ਡਾਟੇ ਨੂੰ ਸਟੈਂਡਰਡ ਆਊਟਪੁੱਟ ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "ਹਰੇਕ ਕਰੈਸ਼ ਲਈ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1903,7 +2056,7 @@ msgid "Sleeping for %d seconds" - msgstr "%d ਸੈਕਿੰਡਾਂ ਲਈ ਸੌਂ ਰਿਹਾ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1912,7 +2065,7 @@ msgstr "" - "ਮੁਸ਼ਕਲਾਂ ਕਰਨਲ ਪਰਬੰਧਕਾਂ ਦੁਆਰਾ ਠੀਕ ਹੋਣ ਯੋਗ ਨਹੀਂ ਹਨ।" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1920,7 +2073,7 @@ msgstr "" - "ਇੱਕ ਕਰਨਲ ਮੁਸ਼ਕਲ ਵਾਪਰੀ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਹਾਰਡਵੇਅਰ ਅਸਮਰਥਿਤ ਹੈ, ਇਸ ਲਈ ਕਰਨਲ ਪਰਬੰਧਕ ਇਸ " - "ਮੁਸ਼ਕਲ ਨੂੰ ਠੀਕ ਕਰਨ ਤੋਂ ਅਸਮਰੱਥ ਹਨ।" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1929,24 +2082,24 @@ msgstr "" - "ਇੱਕ ਕਰਨਲ ਸਮੱਸਿਆ ਆਈ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਕਰਨਲ ਖਰਾਬ (flags:%s) ਹੋ ਗਿਆ ਹੈ। ਕਰਨਲ ਪਰਬੰਧਕ " - "ਖਰਾਬੀ ਬਾਰੇ ਪੜਤਾਲ ਕਰਨ ਤੋਂ ਅਸਮਰਥ ਹਨ।" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "ਟੈਂਟਡ ਮੋਡੀਊਲ: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "ਬੱਗ ids ਦੀ ਸੂਚੀ" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ਇੱਕ ਬੋਧੀ ਸਰਵਰ url ਦਿਓ" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ਇੱਕ ਰੀਲੀਜ਼ ਦਿਓ" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1956,20 +2109,20 @@ msgstr "" - "\n" - "ਬੋਧੀ ਸਰਵਰ ਤੇ ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜੋ" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ਇਸ ਪੈਕੇਜ ਲਈ ਕੋਈ ਅੱਪਡੇਟ ਨਹੀਂ ਲੱਭਿਆ" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "ਪੈਕੇਜ ਦਾ ਲੋਕਲ ਵਰਜਨ ਉਪਲੱਬਧ ਅੱਪਡੇਟਾਂ ਤੋਂ ਨਵਾਂ ਹੈ" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1995,69 +2148,70 @@ msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਨੂੰ ਛਾਪੋ" - msgid "Delete files with found oopses" - msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਵਾਲੀਆਂ ਫਾਈਲਾਂ ਮਿਟਾਓ" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ਇੱਕ ਤੋਂ ਜਿਆਦਾ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀਆਂ ਪਛਾਣਦਾ ਹੈ" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "ਵਰਤੋਂ: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਹਟਾਓ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR ਵਿੱਚ ਸਮੱਸਿਆ ਡਾਟੇ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਰਿਪੋਰਟ ਕਰੋ" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਿੰਟ ਕਰੋ" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ਹਾਲੀਆ ਹੋਏ ਕਰੈਸ਼ਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ 'abrt-cli COMMAND --help' ਵੇਖੋ" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "ਸਿਰਫ ਨਾ ਸੂਚਿਤ ਕੀਤੀਆਂ ਮੁਸ਼ਕਲਾਂ ਹੀ ਸੂਚੀਬੱਧ ਕਰੋ" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "ਵਿਸਥਾਰ ਰਿਪੋਰਟ ਵੇਖਾਓ" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਸੱਜਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਪੁਰਾਣੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2068,51 +2222,61 @@ msgstr "" - "reporting enabled' ਨੂੰ\n" - "ਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "ਇਸ ਤੋਂ ਵੱਡਾ ਪਾਠ ਸੰਖੇਪਿਤ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "ਕੋਈ '%s' ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸੁਨੇਹੇ ਦੇ ਸਿਰਫ਼ ਮੁਸ਼ਕਿਲਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "ਸਿਰਫ਼ ਸਮਾਂ-ਮੋਹਰ ਤੋਂ ਵੀ ਹਾਲੀਆ ਹੋਈਆਂ ਮੁਸ਼ਕਿਲਾਂ ਹੀ ਛਾਪੋ" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT ਨੇ %u ਸਮੱਸਿਆ(ਸਮੱਸਿਆਵਾਂ) ਲੱਭੀਆਂ ਹਨ। ਜਿਆਦਾ ਜਾਣਕਾਰੀ ਲਈ ਚਲਾਓ: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2121,24 +2285,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/pl.po b/po/pl.po -index cf77ca9..e68bfe1 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -10,18 +10,18 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-17 03:32-0400\n" -+"PO-Revision-Date: 2015-08-28 12:31-0400\n" - "Last-Translator: Piotr Drąg \n" - "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/" - "language/pl/)\n" - "Language: pl\n" - "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " - "|| n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -31,41 +31,41 @@ msgstr "Zgłaszanie problemów" - msgid "View and report application crashes" - msgstr "Wyświetlanie i zgłaszanie awarii aplikacji" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "Nie można zmienić właściciela \"%s\"" -+msgstr "Nie można zmienić właściciela „%s”" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "Nie można otworzyć katalogu do zapisania \"%s\"" -+msgstr "Nie można otworzyć katalogu do zapisania „%s”" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nie można zamknąć powiadomienia: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ups." - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Zgłoś" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Uruchom ponownie" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "Program %s uległ awarii. Problem został automatycznie zgłoszony." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -74,8 +74,8 @@ msgstr "" - "Program %s uległ awarii. Problem zostanie zgłoszony po uzyskaniu dostępu do " - "Internetu." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -84,7 +84,7 @@ msgstr "" - "Program %s uległ awarii. Proszę skontaktować się z programistami programu, " - "aby zgłosić problem." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -93,13 +93,13 @@ msgstr "" - "Program %s uległ awarii. Prosimy o wysłanie zgłoszenia, aby pomóc w " - "naprawieniu problemu." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "Wystąpił problem w składniku. Został on automatycznie zgłoszony." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -107,7 +107,7 @@ msgstr "" - "Wystąpił problem w składniku. Zostanie on zgłoszony po uzyskaniu dostępu do " - "Internetu." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -115,38 +115,49 @@ msgstr "" - "Wystąpił problem. Prosimy o wysłanie zgłoszenia, aby pomóc w jego " - "naprawieniu." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nie można wyświetlić powiadomienia: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "Nie można odczytać z kanału GIO: \"%s\"" -+msgstr "Nie można odczytać z kanału GIO: „%s”" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nie można ustawić kodowania na kanale GIO: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nie można włączyć trybu nieblokowania dla kanału GIO: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" --"& [-v] [KATALOG]...\n" -+"& [-v] [KATALOG]…\n" - "\n" - "Aplet powiadamiający użytkownika o nowych problemach wykrytych przez program " - "ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Pytanie przed przechwytywaniem katalogu" -@@ -168,13 +179,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest " --"działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może " --"tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut " --"do usługi. Jeśli ta opcja jest wyłączona, to program ABRT będzie wysyłał " --"zrzuty core bez pytania." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -222,10 +230,6 @@ msgstr "" - "włączone jest Skrócone zgłaszanie." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Pytanie przed wysłaniem zrzutu core" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -233,15 +237,15 @@ msgstr "" - "Jeśli ta opcja jest włączona, to program ABRT będzie tworzył zgłoszenie " - "błędu z ograniczonym dostępem zawsze, kiedy wykryte zostaną prywatne dane." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Żądanie prywatnych zgłoszeń dla prywatnych informacji" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Powiadamianie o niepełnych problemach" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -251,6 +255,22 @@ msgstr "" - "jest wylogowywany. Aby dostarczać wartościowe zgłoszenia błędów, program " - "ABRT nie będzie umożliwiał wysłania takich problemów." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "Za_mknij" -@@ -276,7 +296,7 @@ msgstr "O programie" - msgid "Quit" - msgstr "Zakończ" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -286,7 +306,7 @@ msgstr "" - "\n" - "Odpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -298,11 +318,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Katalog problemu" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Plik konfiguracji" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Używa tego katalogu jako katalogu głównego pakietu RPM" - -@@ -318,24 +338,25 @@ msgstr "& [-v] -d KATALOG\n" - msgid "Root directory for running container commands" - msgstr "Katalog główny do wykonywania poleceń kontenera" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opcje]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Używa NUMERU jako UID klienta" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Przekazuje komunikaty do dziennika systemowego" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Dodaje nazwy programów do dziennika" - -@@ -343,77 +364,67 @@ msgstr "Dodaje nazwy programów do dziennika" - msgid "Unknown error" - msgstr "Nieznany błąd" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "\"%s\" nie jest prawidłowym katalogiem problemu" -+msgid "'%s' is not a valid element name" -+msgstr "„%s” nie jest prawidłową nazwą elementu" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Nie można modyfikować elementu \"%s\"" -+msgid "'%s' is not a valid problem directory" -+msgstr "„%s” nie jest prawidłowym katalogiem problemu" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Brak upoważnienia" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nie można uzyskać dostępu do problemu, aby go zmodyfikować" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Nie można modyfikować elementu „%s”" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Zmiana właściciela katalogu się nie powiodła. W dziennikach systemu można " - "znaleźć więcej informacji." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Nie można uzyskać dostępu do problemu, aby go odczytać" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "\"%s\" nie jest prawidłową nazwą elementu" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "Nie można uzyskać rozmiaru \"%s\"" -+msgstr "Nie można uzyskać rozmiaru „%s”" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Brak miejsca na problemy" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "Nie można usunąć elementu \"%s\" z katalogu problemów \"%s\"" -- --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -+msgstr "Nie można usunąć elementu „%s” z katalogu problemów „%s”" - --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca " -+"Nazwa „%s” została utracona. Proszę sprawdzić, czy inna usługa będąca " - "właścicielem nazwy jest uruchomiona.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Kończy działanie po LICZBIE sekund nieaktywności" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Ten program musi być uruchamiany jako root." - -@@ -433,29 +444,33 @@ msgstr "" - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" --msgstr "Bez tworzenia demona" -+msgstr "Bez tworzenia usługi" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" - msgstr "" - "Przekazuje komunikaty do dziennika systemowego, nawet jeśli podano opcję -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ZDARZENIE KATALOG..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Wykonuje ZDARZENIE w KATALOGU" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikuje się bezpośrednio z użytkownikiem" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" --msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum \"%s\"" -+msgstr "Brak wolnych wątków i pełny bufor. Pomijanie archiwum „%s”" - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -490,88 +505,89 @@ msgstr "Liczba jednocześnie działających wątków. Domyślnie wynosi" - msgid "Maximal cache size in MiB. Default is " - msgstr "Maksymalny rozmiar pamięci podręcznej w MiB. Domyślnie wynosi" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Wyłącza uwierzytelnianie" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nazwa użytkownika Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Hasło Red Hat Support, jeśli nie podano, to użytkownik zostanie o nie " - "zapytany" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Ścieżki lub typ certyfikatu SSL uReport" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Należy także podać --username dla opcji --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Można użyć tylko --username lub --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Można użyć tylko --username lub --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Można użyć tylko --anonymous lub --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Nieprawidłowa liczba parametrów" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Nieznana wartość opcji: \"%s\"\n" -+msgstr "Nieznana wartość opcji: „%s”\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Hasło:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Nie można kontynuować bez hasła\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Automatyczne zgłaszanie uwierzytelnione przez HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Automatyczne zgłaszanie uwierzytelnione przez klienta SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Piotr Drąg --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonimowe automatyczne zgłaszanie" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -586,76 +602,76 @@ msgstr "" - "\n" - " -v - Więcej informacji\n" - " -d - Usuwa wysłane archiwum\n" --" KATALOG_SZPULI_ABRT - Katalog, do którego rozpakowywane są prawidłowo " -+" KATALOG_SZPULI_ABRT — Katalog, do którego rozpakowywane są prawidłowo " - "wysłane archiwa\n" --" KATALOG_WYSYŁANIA - Katalog, w którym przechowywane są wysłane " -+" KATALOG_WYSYŁANIA — Katalog, w którym przechowywane są wysłane " - "archiwa\n" --" NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" -+" NAZWA_PLIKU — Nazwa pliku wysłanego archiwum\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "Nie jest katalogiem: \"{0}\"" -+msgstr "Nie jest katalogiem: „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "Pomijanie: \"{0}\" (rozpoczyna się od ukośnika)" -+msgstr "Pomijanie: „{0}” (rozpoczyna się od ukośnika)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "Pomijanie: \"{0}\" (rozpoczyna się od kropki)" -+msgstr "Pomijanie: „{0}” (rozpoczyna się od kropki)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "Pomijanie: \"{0}\" (zawiera ..)" -+msgstr "Pomijanie: „{0}” (zawiera ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "Pomijanie: \"{0}\" (zawiera spację)" -+msgstr "Pomijanie: „{0}” (zawiera spację)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "Pomijanie: \"{0}\" (zawiera tabulację)" -+msgstr "Pomijanie: „{0}” (zawiera tabulację)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "Nie można zmienić katalogu na \"{0}\"" -+msgstr "Nie można zmienić katalogu na „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "Nieznany typ pliku: \"{0}\"" -+msgstr "Nieznany typ pliku: „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" --msgstr "Nie można utworzyć katalogu roboczego w \"{0}\"" -+msgstr "Nie można utworzyć katalogu roboczego w „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" --msgstr "Nie można przenieść \"{0}\" do \"{1}\"" -+msgstr "Nie można przenieść „{0}” do „{1}”" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" --msgstr "Nie można skopiować \"{0}\" do \"{1}\"" -+msgstr "Nie można skopiować „{0}” do „{1}”" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" --msgstr "Błąd sprawdzania w \"{0}\"" -+msgstr "Błąd sprawdzania w „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" --msgstr "Rozpakowywanie \"{0}\"" -+msgstr "Rozpakowywanie „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" --msgstr "Nie można utworzyć katalogu \"{0}\"" -+msgstr "Nie można utworzyć katalogu „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" --msgstr "Nie można rozpakować \"{0}\"" -+msgstr "Nie można rozpakować „{0}”" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" --msgstr "Pomyślnie przetworzono \"{0}\"" -+msgstr "Pomyślnie przetworzono „{0}”" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 -@@ -670,33 +686,41 @@ msgstr "Nie można połączyć z systemową magistralą D-Bus: %s" - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "Nie można zmienić właściciela \"%s\": %s" -+msgstr "Nie można zmienić właściciela „%s”: %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" - msgstr "Usunięcie katalogu problemu się nie powiodło: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nie można uzyskać listy problemów z abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Nie można sprawdzić przez abrt-dbus, czy element istnieje: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "Nie można utworzyć pliku tymczasowego \"%s\"" -+msgstr "Nie można utworzyć pliku tymczasowego „%s”" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -704,15 +728,15 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"Nie można zapisać do \"%s\". Problem \"%s\" nie zostanie usunięty z " --"zignorowanych problemów \"%s\"" -+"Nie można zapisać do „%s”. Problem „%s” nie zostanie usunięty z " -+"zignorowanych problemów „%s”" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" - msgstr "" --"Nie można zmienić nazwy \"%s\" na \"%s\". Usunięcie problemu \"%s\" się nie " -+"Nie można zmienić nazwy „%s” na „%s”. Usunięcie problemu „%s” się nie " - "powiodło" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 -@@ -735,9 +759,9 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "Przetworzenie wyjątku nie powiodło się dla %s" -+msgstr "Przetworzenie wyjątku się nie powiodło dla %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Nie odnaleziono wątku awarii" - -@@ -754,7 +778,7 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "Analizowanie zrzutu core \"%s\"" -+msgstr "Analizowanie zrzutu core „%s”" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format -@@ -806,7 +830,7 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "Nie wczytano modułu \"%s\" - ta awaria nie zostanie zgłoszona" -+msgstr "Nie wczytano modułu „%s” — ta awaria nie zostanie zgłoszona" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -838,13 +862,13 @@ msgstr "Nie można przetworzyć {0}:\n" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "Nie można wypakować komunikatu oops: \"{0}\"" -+msgstr "Nie można wypakować komunikatu oops: „{0}”" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" - msgstr "Pomyślnie wypakowano tekst awarii oops" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -852,6 +876,38 @@ msgstr "" - "Dziennik jądra wskazuje na wykrycie błędów sprzętowych.\n" - "Prawdopodobnie nie jest to problem oprogramowania.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -939,8 +995,8 @@ msgid "" - msgstr "" - "Użycie: %s [-vy] [--ids=PLIK_IDENTYFIKATORÓW_BUDOWANIA] [--pkgmgr=(yum|dnf)]\n" - " [--tmpdir=KATALOG_TYMCZASOWY] [--cache=KATALOG_PAMIĘCI_PODRĘCZNEJ[:" --"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2...]] [--size_mb=ROZMIAR]\n" --" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]...]\n" -+"KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2…]] [--size_mb=ROZMIAR]\n" -+" [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]…]\n" - "\n" - "Instaluje pakiety debuginfo dla wszystkich identyfikatorów budowania\n" - "wymienionych w PLIKU_IDENTYFIKATORÓW_BUDOWANIA w " -@@ -952,13 +1008,13 @@ msgstr "" - "Odczytuje konfigurację z pliku /etc/abrt/plugins/CCpp.conf\n" - "\n" - " -v Więcej komunikatów\n" --" -y Nieinteraktywnie, przyjmuje \"Tak\" na wszystkie pytania\n" -+" -y Nieinteraktywnie, przyjmuje „Tak” na wszystkie pytania\n" - " --ids Domyślnie: identyfikatory_budowania\n" - " --tmpdir Domyślnie: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" - "LOSOWY_PRZYROSTEK\n" - " --cache Domyślnie: /var/cache/abrt-di\n" - " --size_mb Domyślnie: 4096\n" --" --pkgmgr Domyślnie: \"PackageManager\" z pliku CCpp.conf lub \"dnf\"\n" -+" --pkgmgr Domyślnie: „PackageManager” z pliku CCpp.conf lub „dnf”\n" - " -e,--exact Pobiera tylko podane pliki\n" - " --repo Wzorzec do użycia podczas wyszukiwania repozytoriów.\n" - " Domyślnie: *debug*\n" -@@ -982,7 +1038,7 @@ msgstr "{0} plików debuginfo nie jest zainstalowanych" - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" - msgstr "" - "Nieprawidłowa konfiguracja dodatku CCpp, nieobsługiwany menedżer pakietów: " --"\"%s\"" -+"„%s”" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" -@@ -996,17 +1052,46 @@ msgstr "Brak pliku debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Wszystkie pliki debuginfo są dostępne" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - "Wysłać zrzut core (może on zawierać prywatne dane)? Jeśli wybrana zostanie " --"odpowiedź \"nie\", to wyjątek stosu zostanie utworzony lokalnie (może to " -+"odpowiedź „nie”, to wyjątek stosu zostanie utworzony lokalnie (może to " - "spowodować pobranie dużej ilości danych)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1022,8 +1107,7 @@ msgid "" - "SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" --"& [-v] [-d ROZMIAR:KATALOG]... [-f ROZMIAR:KATALOG]... [-p KATALOG] [PLIK]..." --"\n" -+"& [-v] [-d ROZMIAR:KATALOG]… [-f ROZMIAR:KATALOG]… [-p KATALOG] [PLIK]…\n" - "\n" - "Usuwa katalogi (-d) lub pliki (-f) problemów w KATALOGACH, dopóki nie są " - "mniejsze niż ROZMIAR.\n" -@@ -1044,12 +1128,12 @@ msgstr "Zachowuje ten katalog" - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "Nie można uruchomić \"%s\", komunikat błędu: \"%s\"" -+msgstr "Nie można uruchomić „%s”, komunikat błędu: „%s”" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "Nie jest liczbą w \"%s\"" -+msgstr "Nie jest liczbą w „%s”" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format -@@ -1205,7 +1289,7 @@ msgid "" - "\n" - "Watch log file FILE, run PROG when it grows or is replaced" - msgstr "" --"& [-vs] [-F POTOK]... PLIKI PROGRAM [PARAMETRY]\n" -+"& [-vs] [-F POTOK]… PLIKI PROGRAM [PARAMETRY]\n" - "\n" - "Obserwuje PLIK dziennika, wykonuje PROGRAM, kiedy plik się powiększy lub " - "zostanie zastąpiony" -@@ -1241,7 +1325,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "To samo, co -d DumpLocation, DumpLocation jest określone w pliku abrt.conf" -@@ -1252,16 +1337,18 @@ msgstr "Zapisuje wydobytą informację w PROBLEMIE" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Ustawia katalog problemu jako do odczytu dla każdego" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Przełącza tworzenie katalogów problemów na jeden na sekundę" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działanie" - -@@ -1270,10 +1357,13 @@ msgstr "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działan - msgid "Failed to compile regex" - msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"Nie można zaktualizować problemu: znaleziono więcej niż jedną awarię oops" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1296,6 +1386,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Zainicjowanie obserwacji systemd-journal się nie powiodło" - -@@ -1332,11 +1423,13 @@ msgstr "Tworzy nowy katalog problemu w KATALOGU dla każdego zrzutu core" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Rozpoczyna odczytywanie systemd-journal z położenia KURSORA" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Rozpoczyna odczytywanie systemd-journal od końca" - -@@ -1350,6 +1443,7 @@ msgstr "To samo, co -t INT, INT jest określone w pliku plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Podąża za systemd-journal od ostatnio widzianego położenia (jeśli jest " -@@ -1357,11 +1451,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Należy podać -c KURSOR lub -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Nie można otworzyć systemd-journal" - -@@ -1369,18 +1465,21 @@ msgstr "Nie można otworzyć systemd-journal" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Nie można filtrować tylko danych systemd-coredump z systemd-journal" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Nie można przejść do końca dziennika" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "Ustawienie kursora systemd-journal \"%s\" się nie powiodło" -+msgstr "Ustawienie kursora systemd-journal „%s” się nie powiodło" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Nie można odczytać danych dziennika." - -@@ -1412,28 +1511,77 @@ msgstr "" - "Ostatnio widziane położenie jest zapisywane w " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Odczytuje pliki dziennika ze wszystkich komputerów" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Odczytuje wszystkie pliki dziennika z katalogu w ŚCIEŻCE" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Nie można zainicjować systemd-journal w katalogu „%s”" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Nie można filtrować tylko danych jądra z systemd-journal" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" --msgstr "Rozpoczęcie obserwacji od kursora \"%s\" się nie powiodło" -+msgstr "Rozpoczęcie obserwacji od kursora „%s” się nie powiodło" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1443,70 +1591,74 @@ msgstr "" - "\n" - "Wydobywa awarię Xorg z PLIKU (lub standardowego wejścia)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Wyświetla odnalezione dane awarii w standardowym wyjściu" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Nie można zapisać położenia obserwacji dziennika" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Nie można zapisać położenia obserwacji dziennika: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" --"Położenie obserwacji dziennika nie zostanie przywrócone: plik \"%s\" nie " -+"Położenie obserwacji dziennika nie zostanie przywrócone: plik „%s” nie " - "istnieje" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" --msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku \"%s\"" -+msgstr "Nie można przywrócić położenia obserwacji dziennika z pliku „%s”" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" --"Nie można przywrócić położenia obserwacji dziennika: ścieżka \"%s\" nie jest " -+"Nie można przywrócić położenia obserwacji dziennika: ścieżka „%s” nie jest " - "zwykłym plikiem" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" --"Nie można przywrócić położenia obserwacji dziennika: plik \"%s\" przekracza " -+"Nie można przywrócić położenia obserwacji dziennika: plik „%s” przekracza " - "ograniczenie rozmiaru do %d B" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Nie można przywrócić położenia obserwacji dziennika: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - "Nie można przywrócić położenia obserwacji dziennika: nie można odczytać " --"całego pliku \"%s\"" -+"całego pliku „%s”" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "Przeniesienie dziennika do kursora z pliku \"%s\" się nie powiodło" -+msgstr "Przeniesienie dziennika do kursora z pliku „%s” się nie powiodło" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" -@@ -1529,7 +1681,7 @@ msgstr "Nie można utworzyć tymczasowego pliku w" - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "Nie można wykonać \"%s\"" -+msgstr "Nie można wykonać „%s”" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1537,7 +1689,9 @@ msgstr "Nie można wykonać \"%s\"" - #: ../src/plugins/abrt-retrace-client.c:842 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d" --msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d" -+msgstr "" -+"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " -+"%d" - - #: ../src/plugins/abrt-retrace-client.c:223 - #: ../src/plugins/abrt-retrace-client.c:412 -@@ -1567,8 +1721,8 @@ msgid "" - "Retrace server is unable to process package '%s.%s'.\n" - "Is it a part of official '%s' repositories?" - msgstr "" --"Serwer ponownego śledzenia nie może przetworzyć pakietu \"%s.%s\".\n" --"Czy jest on częścią oficjalnych repozytoriów \"%s\"?" -+"Serwer ponownego śledzenia nie może przetworzyć pakietu „%s.%s”.\n" -+"Czy jest on częścią oficjalnych repozytoriów „%s”?" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" -@@ -1586,7 +1740,7 @@ msgstr "Serwer odrzucił żądanie." - #: ../src/plugins/abrt-retrace-client.c:500 - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." --msgstr "\"%s\" musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." -+msgstr "„%s” musi być zwykłym plikiem, aby użyć serwera ponownego śledzenia." - - #: ../src/plugins/abrt-retrace-client.c:520 - #, c-format -@@ -1604,7 +1758,7 @@ msgstr "Serwer nie obsługuje pakietów tar skompresowanych za pomocą xz." - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "Wydanie \"%s\" nie jest obsługiwane przez serwer ponownego śledzenia." -+msgstr "Wydanie „%s” nie jest obsługiwane przez serwer ponownego śledzenia." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." -@@ -1648,12 +1802,12 @@ msgstr "Wysyłanie %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "Odczytanie z potoku nie powiodło się" -+msgstr "Odczytanie z potoku się nie powiodło" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format - msgid "Failed to send data: NSS error %d (%s): %s" --msgstr "Wysłanie danych nie powiodło się: błąd NSS %d (%s): %s" -+msgstr "Wysłanie danych się nie powiodło: błąd biblioteki NSS %d (%s): %s" - - #: ../src/plugins/abrt-retrace-client.c:745 - msgid "Upload successful" -@@ -1710,14 +1864,16 @@ msgstr "Stan zadania: %s\n" - #: ../src/plugins/abrt-retrace-client.c:1053 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d." --msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS %d." -+msgstr "" -+"Wysłanie nagłówka HTTP o długości %d się nie powiodło: błąd biblioteki NSS " -+"%d." - - #: ../src/plugins/abrt-retrace-client.c:1170 - msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" --"Ponowne śledzenie nie powiodło się. Proszę spróbować ponownie później, a " -+"Ponowne śledzenie się nie powiodło. Proszę spróbować ponownie później, a " - "jeśli problem się utrzymuje, to proszę go zgłosić." - - #: ../src/plugins/abrt-retrace-client.c:1217 -@@ -1873,7 +2029,7 @@ msgid "" - "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " - ">(warning)</a>" - msgstr "" --"Wpisanie \"insecure\" umożliwia użycie połączenia niezabezpieczonego <a " -+"Wpisanie „insecure” umożliwia użycie połączenia niezabezpieczonego <a " - "href=\"https://fedorahosted.org/abrt/wiki/" - "AbrtRetraceServerInsecureConnection\" >(ostrzeżenie)</a>" - -@@ -1891,7 +2047,7 @@ msgid "" - "executable's name. The result is saved as 'xsession_errors' element." - msgstr "" - "Skanuje plik ~/.xsession-errors i zapisuje te wiersze, które zawierają nazwę " --"pliku wykonywalnego. Wynik jest zapisywany jako element \"xsession_errors\"." -+"pliku wykonywalnego. Wynik jest zapisywany jako element „xsession_errors”." - - #: ../src/plugins/https-utils.c:62 - msgid "An error occurred on the server side." -@@ -1900,7 +2056,7 @@ msgstr "Wystąpił błąd po stronie serwera." - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "Wystąpił błąd po stronie serwera w \"%s\"" -+msgstr "Wystąpił błąd po stronie serwera w „%s”" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" -@@ -1909,24 +2065,23 @@ msgstr "Wystąpił problem podczas łączenia z serwerem" - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "Wystąpił problem podczas łączenia z \"%s\"" -+msgstr "Wystąpił problem podczas łączenia z „%s”" - - #: ../src/plugins/https-utils.c:97 - #, c-format - msgid "Issuer certificate is invalid: '%s'." --msgstr "Certyfikat wystawcy jest nieprawidłowy: \"%s\"." -+msgstr "Certyfikat wystawcy jest nieprawidłowy: „%s”." - - #: ../src/plugins/https-utils.c:100 - #, c-format - msgid "Certificate is signed by an untrusted issuer: '%s'." --msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: \"%s\"." -+msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: „%s”." - - #: ../src/plugins/https-utils.c:103 - #, c-format - msgid "Certificate subject name '%s' does not match target host name '%s'." - msgstr "" --"Nazwa tematu certyfikatu \"%s\" nie pasuje do docelowej nazwy komputera " --"\"%s\"." -+"Nazwa tematu certyfikatu „%s” nie pasuje do docelowej nazwy komputera „%s”." - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." -@@ -1935,40 +2090,40 @@ msgstr "Zdalny certyfikat wygasł." - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "Nie rozpoznano wystawcy certyfikatu: \"%s\"." -+msgstr "Nie rozpoznano wystawcy certyfikatu: „%s”." - - #: ../src/plugins/https-utils.c:113 - #, c-format - msgid "Bad certificate received. Subject '%s', issuer '%s'." --msgstr "Otrzymano błędny certyfikat. Temat \"%s\", wydawca \"%s\"." -+msgstr "Otrzymano błędny certyfikat. Temat „%s”, wydawca „%s”." - - #: ../src/plugins/https-utils.c:149 - #, c-format - msgid "Failed to get slot 'PEM Token #0': %d." --msgstr "Uzyskanie gniazda \"PEM Token #0\" nie powiodło się: %d." -+msgstr "Uzyskanie gniazda „PEM Token #0” się nie powiodło: %d." - - #: ../src/plugins/https-utils.c:182 - #, c-format - msgid "Can't resolve host name '%s'. NSS error %d." --msgstr "Nie można rozwiązać nazwy komputera \"%s\". Błąd biblioteki NSS %d." -+msgstr "Nie można rozwiązać nazwy komputera „%s”. Błąd biblioteki NSS %d." - - #. Host exists, but has neither IPv4 nor IPv6?? - #: ../src/plugins/https-utils.c:203 - #, c-format - msgid "Can't resolve host name '%s'." --msgstr "Nie można rozwiązać nazwy komputera \"%s\"." -+msgstr "Nie można rozwiązać nazwy komputera „%s”." - - #: ../src/plugins/https-utils.c:210 - msgid "Failed to set socket blocking mode." --msgstr "Ustawienie trybu blokowania gniazda nie powiodło się." -+msgstr "Ustawienie trybu blokowania gniazda się nie powiodło." - - #: ../src/plugins/https-utils.c:213 - msgid "Failed to wrap TCP socket by SSL." --msgstr "Opakowanie gniazda TCP za pomocą SSL nie powiodło się." -+msgstr "Opakowanie gniazda TCP za pomocą SSL się nie powiodło." - - #: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." --msgstr "Włączenie powitania klienta do gniazda SSL nie powiodło się." -+msgstr "Włączenie powitania klienta do gniazda SSL się nie powiodło." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/https-utils.c:220 -@@ -1982,24 +2137,24 @@ msgstr "Włączenie TLS się nie powiodło." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." --msgstr "Ustawienie adresu URL w gnieździe SSL nie powiodło się." -+msgstr "Ustawienie adresu URL w gnieździe SSL się nie powiodło." - - #: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" --msgstr "Nie można połączyć z \"%s\"" -+msgstr "Nie można połączyć z „%s”" - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." --msgstr "Ustawienia haka certyfikatu nie powiodło się." -+msgstr "Ustawienia haka certyfikatu się nie powiodło." - - #: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." --msgstr "Ustawienie wywołania zwrotnego powitania nie powiodło się." -+msgstr "Ustawienie wywołania zwrotnego powitania się nie powiodło." - - #: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." --msgstr "Przywrócenie powitania nie powiodło się." -+msgstr "Przywrócenie powitania się nie powiodło." - - #: ../src/plugins/https-utils.c:258 - #, c-format -@@ -2008,17 +2163,17 @@ msgstr "Ukończenie powitania SSL się nie powiodło: błąd biblioteki NSS %d." - - #: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." --msgstr "Zamknięcie gniazda SSL nie powiodło się." -+msgstr "Zamknięcie gniazda SSL się nie powiodło." - - #: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" --msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: \"%s\"" -+msgstr "Błędnie sformatowany nagłówek odpowiedzi HTTP: „%s”" - - #: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." --msgstr "Pobieranie danych nie powiodło się: błąd NSS %d." -+msgstr "Pobieranie danych się nie powiodło: błąd biblioteki NSS %d." - - #: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." -@@ -2026,22 +2181,22 @@ msgstr "Błędnie sformatowana, urwana odpowiedź." - - #: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." --msgstr "Zainicjowanie biblioteki NSS nie powiodło się." -+msgstr "Zainicjowanie biblioteki NSS się nie powiodło." - - #: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." --msgstr "Zainicjowanie modułu zabezpieczeń nie powiodło się." -+msgstr "Zainicjowanie modułu zabezpieczeń się nie powiodło." - - #: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." --msgstr "Zamknięcie biblioteki NSS nie powiodło się." -+msgstr "Zamknięcie biblioteki NSS się nie powiodło." - - #: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" - msgstr "Usypianie na %d sekund" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2049,7 +2204,7 @@ msgstr "" - "Wystąpił problem jądra z powodu uszkodzonego BIOS-u. Tego rodzaju problemy " - "nie mogą zostać naprawione przez opiekunów jądra." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2057,7 +2212,7 @@ msgstr "" - "Wystąpił problem jądra, ale sprzęt jest nieobsługiwany, więc opiekunowie " - "jądra nie mogą go naprawić." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2066,48 +2221,48 @@ msgstr "" - "Wystąpił problem jądra, ale obecne jądro jest zanieczyszczone (flagi: %s). " - "Opiekunowie jądra nie są w stanie diagnozować zanieczyszczonych raportów." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Zanieczyszczone moduły: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista identyfikatorów błędów" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Podaje adres URL serwera Bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Podaje wydanie" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" --"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,...] | NAZWA-" --"PAKIETU) [NAZWA-PAKIETU]... \n" -+"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,…] | NAZWA-PAKIETU) " -+"[NAZWA-PAKIETU]… \n" - "\n" - "Wyszukuje aktualizacje na serwerze Bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Wyszukiwanie aktualizacji" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nie odnaleziono aktualizacji dla tego pakietu" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokalna wersja pakietu jest nowsza niż dostępne aktualizacje" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2122,7 +2277,7 @@ msgid "" - "\n" - "Scans files for split oops message. Can print and/or delete them." - msgstr "" --"& [-v] [-od] PLIK...\n" -+"& [-v] [-od] PLIK…\n" - "\n" - "Skanuje pliki w poszukiwaniu rozdzielonych komunikatów awarii. Może je " - "wyświetlić i/lub usunąć." -@@ -2135,66 +2290,66 @@ msgstr "Wyświetla odnalezione awarie" - msgid "Delete files with found oopses" - msgstr "Usuwa pliki z odnalezionymi awariami" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" --msgstr "\"%s\" określa więcej niż jeden katalog problemu" -+msgstr "„%s” określa więcej niż jeden katalog problemu" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Użycie: abrt-cli [--version] POLECENIE [KATALOG]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Wyświetla listę problemów [w KATALOGACH]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Usuwa KATALOG problemu" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analizuje i zgłasza dane problemu w KATALOGU" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Wyświetla informacje o KATALOGU" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Wyświetla liczbę ostatnich awarii" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Przetwarza wiele problemów" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" --msgstr "" --"Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" -+msgstr "Polecenie „abrt-cli POLECENIE --help” wyświetli więcej informacji" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [opcje]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Wyświetla listę niezgłoszonych problemów" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Wyświetla szczegółowe zgłoszenie" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Wyświetla tylko problemy nowsze niż podany czas" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Wyświetla tylko problemy starsze niż podany czas" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2203,52 +2358,62 @@ msgid "" - msgstr "" - "Funkcja automatycznego zgłaszania jest wyłączona. Proszę rozważyć włączenie " - "jej przez wydanie polecenia\n" --"\"abrt-auto-reporting enabled\" jako użytkownik z uprawnieniami roota\n" -+"„abrt-auto-reporting enabled” jako użytkownik z uprawnieniami roota\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." --msgstr "& info [opcje] KATALOG..." -+msgstr "& info [opcje] KATALOG…" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Tekst większy niż to będzie wyświetlany skrócony" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" --msgstr "Katalog problemu \"%s\" nie istnieje" -+msgstr "Katalog problemu „%s” nie istnieje" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Wyświetla tylko liczbę awarii, bez żadnego komunikatu" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Wyświetla tylko problemy nowsze niż podany czas" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: " - "abrt-cli list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [opcje] KATALOG..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" --msgstr "Usuwanie \"%s\"" -+msgstr "Usuwanie „%s”" -+ -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [opcje] KATALOG…" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" - - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" -@@ -2258,24 +2423,179 @@ msgstr "Działania: usuń (rm), informacje (i), pomiń (s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Działania: usuń (rm), zgłoś (e), informacje (i), pomiń (s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" --msgstr "Zgłaszanie \"%s\"" -+msgstr "Zgłaszanie „%s”" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Aby przejść do następnego problemu, proszę nacisnąć klawisz Enter:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Bez parametru --since przejdzie przez wszystkie wykryte problemy." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Wybiera tylko problemy wykryte po podanym czasie" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -@@ -2334,7 +2654,7 @@ msgid "" - "'gconf_subtree' element." - msgstr "" - "Wykonuje polecenie gconftool-2 --recursive-list /apps/plik-wykonywalny i " --"zapisuje wynik jako element \"gconf_subtree\"." -+"zapisuje wynik jako element „gconf_subtree”." - - #: ../src/plugins/collect_vimrc_system.xml.in.h:1 - msgid "Collect system-wide vim configuration files" -diff --git a/po/pt.po b/po/pt.po -index 9ce2415..91c18d3 100644 ---- a/po/pt.po -+++ b/po/pt.po -@@ -12,126 +12,133 @@ - # Pedro Marques Daniel , 2013 - # Ricardo Pinto , 2012 - # Rui Gouveia , 2011, 2012 -+# Manuela Silva , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2015-08-17 08:03-0400\n" -+"Last-Translator: Manuela Silva \n" - "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/" - "language/pt/)\n" - "Language: pt\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Comunicação de Problema" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Ver e reportar craches da aplicação" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Não é possível tomar posse de '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Não é possível abrir a diretoria para gravar '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Não é possível fechar a notificação: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Ups!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Relatório" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Reiniciar" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Nós pedimos desculpa, ocorreu um problema num componente. O problema foi " -+"reportado automaticamente." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Nós pedimos desculpa, ocorreu um problema num componente. O problema será " -+"reportado assim que a Internet estiver disponível." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Nós pedimos desculpa, ocorreu um problema num componente. Se desejar ajudar " -+"a resolver o problema, por favor, envie um relatório." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Não é possível mostrar a notificação: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Não é possível ler do canal 'gio': '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Não é posssível definir a codificação no canal 'gio': %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Não é possível ligar o modo 'não bloquear' para o canal 'gio': %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -142,13 +149,24 @@ msgstr "" - "Objecto que notifica o utilizador quando novos problemas são detectados pelo " - "ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Enviar automaticamente uReport" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" -@@ -163,7 +181,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -196,30 +216,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" -@@ -228,7 +260,7 @@ msgstr "_Fechar" - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "_Predefiniçoes" -+msgstr "_Predefinições" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:116 -@@ -249,14 +281,14 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Sair" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -266,13 +298,13 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "Directório de problemas" -+msgstr "Diretoria de Problemas" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" --msgstr "Ficheiro de configuração" -+msgstr "Ficheiro de Configuração" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -286,101 +318,93 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [opções]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilizar NUM como uid do cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Registar no syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" --msgstr "Adicionar nomes de programa aos registos" -+msgstr "Adicionar nomes de programa ao registo" - - #: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" - msgstr "Erro desconhecido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' não é um directório de problema válido" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' não é um nome de elemento válido" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' elemento não pode ser modificado" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' não é um diretoria de problemas válida" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Não Autorizado" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Não é possível aceder ao problema para modificação" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' não é um nome de elemento válido" -+msgid "'%s' element can't be modified" -+msgstr "'%s' elemento não pode ser modificado" -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Não é possível obter o tamanho do '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "Não é possível apagar o elemento '%s' da diretoria de problemas '%s'" -- --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" - msgstr "" -+"Não é possível eliminar o elemento '%s' da diretoria de problemas '%s'" - --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" --"O nome '%s' foi perdido, por favor verifique se outro serviço com o mesmo " --"nome não está a correr.\n" -+"O nome '%s' foi perdido, por favor, verifique se outro serviço com o mesmo " -+"nome não está em execução.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" --msgstr "Sair depois de NUM segundos de inactividade" -+msgstr "Sair depois de NUM segundos de inatividade" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa tem que ser executado como root." - -@@ -406,20 +430,24 @@ msgstr "Não enviar para segundo plano" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" --msgstr "Registar para o syslog mesmo com o -d" -+msgstr "Registar para o syslog, mesmo com o -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "Executa EVENT no DIR" -+msgstr "Executar EVENT no DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -439,6 +467,7 @@ msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:281 -+#, fuzzy - msgid "Daemize" - msgstr "Daemize" - -@@ -451,73 +480,74 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Desativa a autenticação" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Senha:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Não é possível continuar sem a senha\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -529,75 +559,75 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Não é uma diretoria: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "" -+msgstr "Não é possível alterar a diretoria para '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "" -+msgstr "Tipo de ficheiro desconhecido: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 - msgid "Generating backtrace" --msgstr "Gerando o backtrace" -+msgstr "A gerar backtrace" - - #: ../src/lib/problem_api_dbus.c:42 - #, c-format -@@ -605,27 +635,35 @@ msgid "Can't connect to system DBus: %s" - msgstr "Não é possível ligar ao DBus do sistema: %s" - - #: ../src/lib/problem_api_dbus.c:68 --#, c-format -+#, fuzzy, c-format - msgid "Can't chown '%s': %s" - msgstr "Não é possível fazer chown '%s': %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" --msgstr "Falha ao apagar o directório de problema: %s" -+msgstr "Falha ao apagar a diretoria de problemas: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Não é possível obter dados do problema a partir do abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "Não é possível obter a lista do problema a partir do abrt-dbus: %s" -+msgstr "Não é possível obter a lista de problemas de abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Não é possível obter os dados do problema de abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -649,6 +687,7 @@ msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" - msgstr "" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 -+#, fuzzy - msgid "" - "& [options] -d DIR\n" - "\n" -@@ -666,11 +705,11 @@ msgstr "" - #. * and component only. This is not supposed to happen often. - #. - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 --#, c-format -+#, fuzzy, c-format - msgid "Backtrace parsing failed for %s" - msgstr "Processamento da traçagem falhou para %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -682,7 +721,7 @@ msgid "" - msgstr "" - "& [-v] -d DIR\n" - "\n" --"Calcula e grava o UUID de coredump no directório de problemas DIR" -+"Calcula e guarda o UUID de coredump na diretoria de problemas DIR" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format -@@ -735,9 +774,10 @@ msgid "" - "& [-v] -d DIR\n" - "\n" - "Calculates and saves UUID and DUPHASH of python crash dumps" --msgstr "& [-v] -d DIR\n" -+msgstr "" -+"& [-v] -d DIR\n" - "\n" --"Calcula e grava o UUID e DUPHASH de dumps do python" -+"Calcula e guarda o UUID e DUPHASH de dumps de crache do python" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" -@@ -745,7 +785,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:79 - msgid "File {0} doesn't exist" --msgstr "Ficheiro {0} não existe" -+msgstr "O ficheiro {0} não existe" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" -@@ -754,7 +794,8 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" - "{1}" --msgstr "" -+msgstr "Não é possível processar {0}:\n" -+"{1}" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" -@@ -764,13 +805,46 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 -+#, fuzzy - msgid "" - "& [options] -d DIR\n" - "\n" -@@ -778,21 +852,21 @@ msgid "" - msgstr "" - "& [opções] -d DIR\n" - "\n" --"Analisa coredump no directório DIR com problema, gera e grava traçagem." -+"Analisa coredump na diretoria de problemas DIR, gera e guarda traçagem." - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 - msgid "Additional debuginfo directories" --msgstr "Directórios adicionais de debuginfo" -+msgstr "Diretorias adicionais da informação de depuração" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "Matar o gdb se este for executado por mais de NUM segundos" -+msgstr "Terminar o gdb se este for executado mais de NUM segundos" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. - #. - #: ../src/plugins/abrt-action-generate-backtrace.c:103 --#, c-format -+#, fuzzy, c-format - msgid "Backtrace is generated and saved, %u bytes" - msgstr "Traçagem foi gerada e gravada, %u bytes" - -@@ -854,9 +928,10 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" --msgstr "Incapaz de abrir {0}: {1}" -+msgstr "Não é possível abrir {0}: {1}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:212 -+#, fuzzy - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - "O coredump referencia {0} ficheiros debuginfo, {1} deles não estão " -@@ -877,20 +952,49 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" --msgstr "Ficheiro debuginfo em falta: {0}" -+msgstr "Ficheiro da informação de depuração em falta: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" --msgstr "Todos os ficheiros debuginfo se encontram disponíveis" -+msgstr "Estão disponíveis todos os ficheiros da informação de depuração" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -906,21 +1010,21 @@ msgid "" - msgstr "" - "& [-v] [-d TAMANHO:DIR]... [-f TAMANHO:DIR]... [-p DIR] [FICHEIRO]...\n" - "\n" --"Remove directórios com problemas (-d) ou ficheiros (-f) em DIRs até que " --"estes sejam menores que TAMANHO.\n" --"FICHEIROs são preservados (nunca apagados)." -+"Elimina diretorias de problemas (-d) ou ficheiros (-f) em DIRs até que estes " -+"sejam menores que TAMANHO.\n" -+"Os FICHEIROS são preservados (nunca eliminados)." - - #: ../src/plugins/abrt-action-trim-files.c:236 - msgid "Delete whole problem directories" --msgstr "Remover todos os directórios com problemas" -+msgstr "Eliminar todos as diretorias de problemas" - - #: ../src/plugins/abrt-action-trim-files.c:237 - msgid "Delete files inside this directory" --msgstr "Remover ficheiros dentro deste directório" -+msgstr "Eliminar os ficheiros dentro desta diretoria" - - #: ../src/plugins/abrt-action-trim-files.c:238 - msgid "Preserve this directory" --msgstr "Preservar este directório" -+msgstr "Preservar esta diretoria" - - #: ../src/plugins/abrt-action-ureport:59 - #, c-format -@@ -1084,12 +1188,13 @@ msgid "" - msgstr "" - "& [-vs] [-F STR]... FILE PROG [ARGS]\n" - "\n" --"Verifique o ficheiro de log FILE, corra PROG quando este aumentar ou for " --"subtituido" -+"Verifique o ficheiro de registo FILE, executar PROG quando este aumentar ou " -+"for substituído" - - #: ../src/plugins/abrt-watch-log.c:154 -+#, fuzzy - msgid "Don't run PROG if STRs aren't found" --msgstr "Não corra o PROG se STRs não forem encontradas" -+msgstr "Não executar PROG se não forem encontradas STRs" - - #: ../src/plugins/abrt-dump-oops.c:77 - msgid "" -@@ -1100,6 +1205,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 -+#, fuzzy - msgid "Print found oopses on standard output" - msgstr "Apresentar oopses encontrados na saída standard" - -@@ -1114,7 +1220,9 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 -+#, fuzzy - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Igual a -d DumpLocation, DumpLocation está especificado em abrt.conf" - -@@ -1124,16 +1232,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" --msgstr "Tornar o directório com problema visível a todos" -+msgstr "Tornar a diretoria de problemas legível para todos" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 -+#, fuzzy - msgid "Print search string(s) to stdout and exit" - msgstr "Imprimir a(s) string(s) para o stdout e sair" - -@@ -1142,8 +1253,12 @@ msgstr "Imprimir a(s) string(s) para o stdout e sair" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1163,6 +1278,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1186,11 +1302,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1204,16 +1322,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1221,18 +1342,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1251,14 +1375,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1267,12 +1394,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1280,65 +1453,70 @@ msgid "" - msgstr "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" --"Extrair o Xorg crash do ficheiro FILE (ou entrada padrão)" -+"Extrair o crache Xorg do FICHEIRO (ou entrada padrão)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" --msgstr "Imprimir os dados do crash para o output padrão" -+msgstr "A impressão encontrou dados de crache na saída padrão" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:70 -+#, fuzzy - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." -@@ -1359,7 +1537,7 @@ msgstr "Não é possível criar o ficheiro temporário em" - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "Incapaz de executar '%s'" -+msgstr "Não é possível executar '%s'" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1367,7 +1545,7 @@ msgstr "Incapaz de executar '%s'" - #: ../src/plugins/abrt-retrace-client.c:842 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d" --msgstr "Falha ao enviar cabeçalho HTTP de tamanho %d: erro NSS %d" -+msgstr "Falha ao enviar o cabeçalho HTTP com o tamanho %d: erro NSS %d" - - #: ../src/plugins/abrt-retrace-client.c:223 - #: ../src/plugins/abrt-retrace-client.c:412 -@@ -1389,7 +1567,7 @@ msgstr "Resposta HTTP inesperada do servidor: %d\n" - #: ../src/plugins/abrt-retrace-client.c:992 - #: ../src/plugins/abrt-retrace-client.c:1062 - msgid "Invalid response from server: missing HTTP message body." --msgstr "Resposta inválida do servidor: falta o corpo da mensagem HTTP." -+msgstr "Resposta inválida do servidor: corpo da mensagem HTTP em falta." - - #: ../src/plugins/abrt-retrace-client.c:424 - #, c-format -@@ -1400,7 +1578,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" --msgstr "A questionar definições do servidor" -+msgstr "A consultar as configurações do servidor" - - #: ../src/plugins/abrt-retrace-client.c:452 - msgid "The server is fully occupied. Try again later." -@@ -1424,11 +1602,12 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:540 -+#, fuzzy - msgid "The server does not support xz-compressed tarballs." - msgstr "O servidor não suporta ficheiro comprimidos no formato xz-" - - #: ../src/plugins/abrt-retrace-client.c:577 --#, c-format -+#, fuzzy, c-format - msgid "The release '%s' is not supported by the Retrace server." - msgstr "A versão '%s' não é suportada pelo servidor de traçagem." - -@@ -1471,6 +1650,7 @@ msgid "Uploading %d%%\n" - msgstr "A enviar %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 -+#, fuzzy - msgid "Failed to read from a pipe" - msgstr "Falha ao ler de um pipe" - -@@ -1496,12 +1676,12 @@ msgid "" - "The archive contains malicious files (such as symlinks) and thus can not be " - "processed." - msgstr "" --"O arquivo contém ficheiros nefastos (tais como apontadores simbólicos) e " --"portanto não pode ser processado." -+"O arquivo contém ficheiros maliciosos (tais como hiperligações simbólicas) e " -+"por isso não pode ser processado." - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "Resposta inválida do servidor: falta X-Task-Id." -+msgstr "Resposta inválida do servidor: X-Task-Id em falta." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." -@@ -1546,7 +1726,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" --msgstr "Registar no syslog" -+msgstr "registar no registo do sistema" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" -@@ -1586,7 +1766,7 @@ msgstr "ler dados de coredump" - - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" --msgstr "Atraso para operações de sondagem" -+msgstr "Atraso para as operações de sondagem" - - #: ../src/plugins/abrt-retrace-client.c:1237 - msgid "(debug) do not delete temporary archive created from dump dir in " -@@ -1598,7 +1778,7 @@ msgstr "Para estado, backtrace e operações de log" - - #: ../src/plugins/abrt-retrace-client.c:1241 - msgid "id of your task on server" --msgstr "id da tarefa no servidor" -+msgstr "id. da tarefa no servidor" - - #: ../src/plugins/abrt-retrace-client.c:1243 - msgid "password of your task on server" -@@ -1620,14 +1800,14 @@ msgstr "É necessário um directório com problema ou um coredump." - #: ../src/plugins/abrt-retrace-client.c:1320 - #: ../src/plugins/abrt-retrace-client.c:1328 - msgid "Task id is needed." --msgstr "ID da tarefa é necessário." -+msgstr "É necessária a id. da tarefa." - - #: ../src/plugins/abrt-retrace-client.c:1306 - #: ../src/plugins/abrt-retrace-client.c:1314 - #: ../src/plugins/abrt-retrace-client.c:1322 - #: ../src/plugins/abrt-retrace-client.c:1330 - msgid "Task password is needed." --msgstr "Senha da tarefa é necessária." -+msgstr "É necessária a senha da tarefa." - - #: ../src/plugins/abrt-retrace-client.c:1334 - #, c-format -@@ -1636,13 +1816,13 @@ msgstr "Operação desconhecida: %s." - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 - msgid "Local GNU Debugger" --msgstr "Depurador GNU local" -+msgstr "Depurador Local GNU" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 - msgid "Download debuginfo packages and generate backtrace locally using GDB" - msgstr "" --"Descarregar pacotes debuginfo e gerar traçagem inversa localmente utilizando " --"GDB" -+"Transferir pacotes da informação de depuração e gerar \"backtrace\" " -+"localmente, utilizando GDB" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" -@@ -1687,7 +1867,7 @@ msgstr "Inseguro" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 - msgid "Whether or not to use insecure connection" --msgstr "Usar ou não uma ligação insegura" -+msgstr "Utilizar ou não uma ligação insegura" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" -@@ -1705,7 +1885,7 @@ msgstr "Recolher .xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:2 - msgid "Save relevant lines from ~/.xsession-errors file" --msgstr "Gravar linhas relevantes do ficheiro ~/.xsession-errors" -+msgstr "Guardar linhas relevantes do ficheiro ~/.xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:3 - msgid "" -@@ -1861,19 +2041,19 @@ msgstr "Falha ao desligar NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1883,24 +2063,24 @@ msgstr "" - "Os programadores do kernel não conseguem diagnosticar relatórios " - "contaminados." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de ids de bug(s)" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especifique um url do servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especifique a versão" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1910,22 +2090,22 @@ msgstr "" - "\n" - "Procurar actualizações no servidor bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "A procurar actualizações" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Não foram encontradas actualizações para este pacote" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "A versão local deste pacote é mais recente do que a disponível nas " - "actualizações" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1947,65 +2127,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Utilização: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Remover directório de problema DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analisar e reportar problema em DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Apresentar informações sobre DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Mostrar relatório detalhado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2013,49 +2194,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [opções] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2064,24 +2255,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/pt_BR.po b/po/pt_BR.po -index a1840a1..a34f711 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -26,7 +26,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -36,7 +36,7 @@ msgstr "" - "fedora-abrt/language/pt_BR/)\n" - "Language: pt-BR\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -46,34 +46,34 @@ msgstr "Relato de Problemas" - msgid "View and report application crashes" - msgstr "Visualizar e relatar travamentos de aplicações" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Não foi possível obter propriedade de '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Não é possível abrir o diretório para escrita '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Não é possível fechar a notificação: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Oops!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Relatar" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Reiniciar" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -81,7 +81,7 @@ msgid "" - msgstr "" - "Lamentamos, parece que %s travou. O problema foi relatado automaticamente." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -90,8 +90,8 @@ msgstr "" - "Lamentamos, parece que %s travou. O problema será relatado quando a internet " - "estiver disponível." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -100,7 +100,7 @@ msgstr "" - "Lamentamos, parece que %s travou. Por favor, entre em contato com o " - "desenvolvedor se você quiser relatar o problema." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -109,7 +109,7 @@ msgstr "" - "Lamentamos, parece que %s travou. Se você quiser ajudar a resolver esse " - "problema, por favor, envie um relatório." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -117,7 +117,7 @@ msgstr "" - "Lamentamos, parece que um problema ocorreu num componente. O problema foi " - "relatado automaticamente." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -125,7 +125,7 @@ msgstr "" - "Lamentamos, parece que um problema ocorreu num componente. O problema será " - "relatado quando a internet estiver disponível." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -133,28 +133,28 @@ msgstr "" - "Lamentamos, parece que um problema ocorreu num componente. Se você quiser " - "ajudar a resolver esse problema, por favor, envie um relatório." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Não é possível mostrar a notificação: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Não é possivel ler a partir do canal gio: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Não é possível definir codificação no canal gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Não é possível ligar o modo de não bloqueamento para o canal gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -165,6 +165,17 @@ msgstr "" - "O mini aplicativo que notifica o usuário quando novos problemas foram " - "detectados pelo ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Pergunte antes de alterar o diretório" -@@ -186,13 +197,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"O arquivo coredump é necessário para a geração de rastreamento de pilha que " --"é o tempo e o espaço consumindo da operação. O ABRT oferece um serviço que " --"gera o rastreamento de pilha do coredump mas é necessário fazer o upload do " --"coredump a este serviço. Com esta opção desabilitada o ABRT fará o upload do " --"coredump automaticamente." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -237,10 +245,6 @@ msgstr "" - "relatados. Terá efeito somente se o relatório resumido estiver habilitado." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Pergunte antes de fazer upload do coredump" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -248,15 +252,15 @@ msgstr "" - "Com esta opção habilitada o ABRT sempre criará um bug ticket com acesso " - "restrito se detectar danos minuciosos." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Solicite um ticket confidencial para informações minuciosas" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notificar problemas incompletos" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -266,6 +270,22 @@ msgstr "" - "desligado ou usuário estiver ausente. A fim de fornecer relatórios completos " - "do problema, o ABRT não reportará automaticamente estes relatórios." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Fechar" -@@ -291,14 +311,14 @@ msgstr "Sobre" - msgid "Quit" - msgstr "Sair" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -310,11 +330,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Diretório do problema" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Arquivo de Configuração" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -328,24 +348,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Utilize o NUM como uid de cliente" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Log para o syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Adicionar os nomes dos programas ao log" - -@@ -353,62 +374,52 @@ msgstr "Adicionar os nomes dos programas ao log" - msgid "Unknown error" - msgstr "Erro desconhecido" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' não é um diretório de problema válido" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' não é um nome válido de elemento" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "O '%s' não pode ser modificado" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' não é um diretório de problema válido" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Não Autorizado" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Não é possível acessar o problema para modificação" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "O '%s' não pode ser modificado" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais " - "detalhes." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Não é possível acessar o problema para leitura" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' não é um nome válido de elemento" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Não foi possível obter o tamanho de '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nenhum problema de espaço." - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -418,12 +429,12 @@ msgstr "" - "O nome '%s' foi perdido, por favor verifique se outro serviço que possui o " - "nome não está em execução.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Sai após os segundos NUM de inatividade" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Este programa deve estar sendo executado como root." - -@@ -450,18 +461,22 @@ msgstr "Não criar um daemon" - msgid "Log to syslog even with -d" - msgstr "Registrar no syslog mesmo com o -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Executar o EVENT no DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Comunicar diretamente com o usuário" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -498,89 +513,90 @@ msgstr "Número de processos simultâneas. O padrão é" - msgid "Maximal cache size in MiB. Default is " - msgstr "Tamanho máximo de cache em MiB. O padrão é" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Desliga a Autenticação" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Nome do usuário do Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Senha do Red Hat Support, caso não seja fornecida, será enviada uma " - "solicitação " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Caminhos de certiifcado ou tipo de certificado do uReport SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Você também precisa especificar --username para --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Você pode utilizar --username ou --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Você pode usar --username ou --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Você pode usar --anonymous ou --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Número inválido e sem argumentos" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Valor da opção desconhecida: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Senha:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Não foi possível continuar sem uma senha\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Reportagem automática de HTTP autenticado" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Reportagem automática de SSL Client autenticado" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Gcintra --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Reportagem automática anônima" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -600,83 +616,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Não é um diretório: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Pulando: '{0}' (começa com a barra)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Pulando: '{0}' (começa com o ponto)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Pulando: '{0}' (contém ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Pulando: '{0}' (contém espaço)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Pulando: '{0}' (contém aba)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Não foi possível modificar o diretóri para '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Tipo de arquivo desconhecido: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Não foi possível criar o diretório em funcionamento no '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Não foi possível mover '{0}' para '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Não foi possível copiar '{0}' para '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Erro de verificação no '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Desempacotando '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Não foi possível criar o diretório '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Não foi possível desempacotar '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' processado com sucesso" - -@@ -700,18 +716,26 @@ msgstr "Não é possível realizar o chown'%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Remoção do diretório problema falhou: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Não foi possível obter lista de problemas a partir do abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -760,7 +784,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Análise do backtrace falhou por %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Falha de segmentação não encontrado" - -@@ -864,7 +888,7 @@ msgstr "Não é possível extrair a mensagem de oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "Oops texto extraído com sucesso." - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -872,6 +896,38 @@ msgstr "" - "O log do kernel indica que foram detectados erros de hardware.\n" - "É provável que não seja um problema de software.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -990,7 +1046,36 @@ msgstr "Faltando arquivo debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Todos os arquivos debuginfo estão disponíveis." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1000,7 +1085,7 @@ msgstr "" - "'Não', um rastreamento em pilha será gerado localmente. (Pode baixar uma " - "grande quantidade de dados)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1242,7 +1327,8 @@ msgstr "Crie novo diretório de problema no DIR para todos os oops encontrados" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "Mesmo que -d DumpLocation, DumpLocation está especificado no abrt.conf" -@@ -1253,17 +1339,19 @@ msgstr "Salve as informações extraídas em PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Tornar o diretório de problema mundial legível" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - "Regulador de falhas com problemas de criação de diretório em 1 segundo" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" - -@@ -1273,11 +1361,13 @@ msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" - msgid "Failed to compile regex" - msgstr "Falha ao compilar o regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"Não é possível atualizar informações sobre o problema: há mais de um oops " --"encontrados" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1296,6 +1386,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1319,11 +1410,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1337,16 +1430,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1354,18 +1450,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1384,14 +1483,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1400,12 +1502,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1415,59 +1563,63 @@ msgstr "" - "\n" - "Extraia o travamento do Xorg doFILE (ou entrada padrão)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Imprima dados de travamento encontrados na saída do padrão" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Criar diretório de problema no DIR para todos os travamentos encontrados" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2004,7 +2156,7 @@ msgstr "Falha ao desligar NSS" - msgid "Sleeping for %d seconds" - msgstr "Dormindo por %d segundos" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2012,7 +2164,7 @@ msgstr "" - "Ocorreu um problema no kernel por causa da BIOS quebrada. Infelizmente, " - "esses problemas não são solucionáveis ​​por mantenedores do kernel." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2020,7 +2172,7 @@ msgstr "" - "Ocorreu um problema de kernel, mas seu hardware não é suportado, portanto " - "mantenedores do kernel são incapazes de corrigir esse problema." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2030,24 +2182,24 @@ msgstr "" - "Mantenedores do kernel não são capazes de diagnosticar relatórios " - "adulterados." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Módulos danificados: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista de ids de bug" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Especificar a url do servidor bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Especificar um lançamento" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2057,20 +2209,20 @@ msgstr "" - "\n" - "Buscar atualizações no servidor bodhi." - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Buscando atualizações" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nenhuma atualização para este pacote encontrado" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Versão local dos pacotes é mais nova do que atualizações disponíveis." - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2097,66 +2249,67 @@ msgstr "Imprimir oopses encontrados" - msgid "Delete files with found oopses" - msgstr "Excluir arquivos com oopses encontrados" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "%s' identifica mais de um diretório problemático" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Listar problemas [em Diretórios]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Remover DIR de diretório de problema" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analisar e reportar dados do problema no DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Imprimir informações sobre o DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Mostrar a contagem das quebras recentes" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Processar problemas múltiplos" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Listar apenas problemas não reportados" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Exibir relatório detalhado" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Lista somente os problemas mais recentes do timestamp especificado" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Lista somente os problemas mais velhos do timestamp especificado" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2167,56 +2320,66 @@ msgstr "" - "\n" - "'abrt-auto-reporting habilitado' como um usuário com privilégios de root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Um texto maior do que este será mostrado resumidamente" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Não há o diretório defeituoso '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Mostrar apenas a contagem de problema sem mensagem" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Mostrar apenas problemas mais recentes que a marca de tempo especificada" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT detectou %u problema(s). Para mais informações execute: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Removendo '%s'" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& relatório [opções] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Remover PROBLEM_DIR após relatar" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Removendo '%s'" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Ações: remover (rm), info(i), skip(s):" -@@ -2227,27 +2390,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Acões: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Reportando '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Para o próximo problema, pressione ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Sem o argumento --since, itera em todos os problemas detectados." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Seleciona somente problemas detectados após o timestamp" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ru.po b/po/ru.po -index adba018..e5bde0b 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -4,15 +4,15 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-04-06 04:10-0400\n" --"Last-Translator: Igor Gorbounov \n" -+"PO-Revision-Date: 2015-07-20 08:46-0400\n" -+"Last-Translator: yuliya \n" - "Language-Team: Russian\n" - "Language: ru\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -@@ -25,37 +25,37 @@ msgid "View and report application crashes" - msgstr "Просмотреть сбои приложения и создать отчет" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Не удается стать владельцем «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Не удалось открыть каталог для записи «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Не удалось закрыть уведомление: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ой!" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Сообщить" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Перезапуск" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -64,7 +64,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке " - "автоматически отправлен." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -73,8 +73,8 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Отчет об этой ошибке будет " - "отправлен, когда будет доступ к Интернету." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -83,7 +83,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Свяжитесь с разработчиком, если " - "вы хотите сообщить о проблеме." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -92,7 +92,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой %s. Если вы хотите помочь решить " - "проблему, отправьте отчет." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -100,7 +100,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой компонента. Автоматически отправлен " - "отчет об этой проблеме." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -108,7 +108,7 @@ msgstr "" - "Похоже, что, к сожалению, произошел сбой компонента. Отчет об этой проблеме " - "будет отправлен, когда будет доступ к Интернету." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -117,32 +117,32 @@ msgstr "" - "проблемы, отправьте отчет." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Не удалось показать уведомление: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Не удалось выполнить чтение из канала gio: «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Не удалось изменить шифрование в канале gio: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Не удалось включить неблокирующий режим для канала gio: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -151,10 +151,21 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "Модуль оповещения о неполадках, обнаруженных ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "Спрашивать перед перехватом каталога" -+msgstr "Подтверждать перемещение каталога" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 -@@ -171,18 +182,15 @@ msgstr "Сокращенный отчет" - msgid "Silent shortened reporting" - msgstr "Сокращенный отчет без подтверждения" - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Файл дампа памяти нужен для создания трассировки стека. На эту операцию " --"требуется достаточно много времени и места. ABRT предоставляет службу " --"создания трассировки стека из предварительно загруженного дампа памяти. Если " --"этот параметр выключен, ABRT будет отправлять дамп без подтверждения." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -205,7 +213,7 @@ msgid "" - "uReports are sent automatically immediately after problem detection." - msgstr "" - "uReport содержит краткое и полностью анонимное описание проблемы. ABRT " --"использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной " -+"использует отчеты uReport для быстрого поиска дубликатов. В стандартной " - "конфигурации uReport отправляется в начале процесса формирования отчетности. " - "Если этот параметр включен, отчеты uReport отправляются автоматически сразу " - "после обнаружения проблемы." -@@ -218,9 +226,8 @@ msgid "" - "You can always use the default problem browser to make complete report." - msgstr "" - "Если этот параметр включен, процесс создания отчета, запущенный нажатием " --"кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после " --"отправления отчета uReport. Для создания полного отчета можно " --"воспользоваться стандартным средством просмотра проблем." -+"кнопки «Отчет» во всплывающем сообщении о сбое, ограничится отправкой отчета " -+"uReport. Полный отчет можно создать в окне просмотра обнаруженных ошибок." - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 -@@ -228,44 +235,54 @@ msgid "" - " With this option enabled ABRT never shows notifications of reported " - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" --"Если этот параметр включен, ABRT не будет показывать уведомления о " --"сообщенных проблемах. Действует, только если включен сокращенный формат " --"отчетов." -+"Если этот параметр включен, ABRT не будет показывать уведомления об отправке " -+"отчетов. Действует, если включен сокращенный формат." - --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Спрашивать перед выгрузкой дампа памяти" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" --"Если этот параметр включен, ABRT будет создавать отчет об ошибке с " --"ограниченным доступом, если обнаружена вероятность попадания в отчет " --"конфиденциальных данных." -+"Если этот параметр включен, ABRT будет создавать отчет с ограниченным " -+"доступом, если обнаружена вероятность попадания в отчет конфиденциальных " -+"данных." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "Запросить доступ к закрытому билету с конфиденциальными данными" -+msgstr "Ограничение доступа к отчету" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "Уведомлять о неполных данных по проблеме" -+msgstr "Уведомлять о неполных данных" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" --"Обнаружены неполные данные об ошибках вследствие выключения компьютера или " --"выхода пользователя из системы. С целью обеспечения содержательности отчетов " --"ABRT не отправит отчет об этих ошибках." -+"Если обнаружены неполные данные об ошибках (вследствие выключения компьютера " -+"или выхода пользователя из системы), то в целях обеспечения информативности " -+"ABRT не позволит отправлять неполные отчеты." -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/system-config-abrt.c:79 -@@ -281,12 +298,12 @@ msgstr "По _умолчанию" - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "Конфигурация отчетов о сбоях" -+msgstr "Конфигурация отчетов об ошибках" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" --msgstr "О System Config ABRT" -+msgstr "О программе system-config-abrt" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/configuration-gui/main.c:105 -@@ -298,7 +315,7 @@ msgstr "О программе" - msgid "Quit" - msgstr "Выход" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -306,10 +323,10 @@ msgid "" - msgstr "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" --"Запросить в базе данных и сохранить название пакета и компонента" -+"Сделать запрос к базе данных и сохранить название пакета и компонента" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -322,11 +339,11 @@ msgid "Problem directory" - msgstr "Каталог с данными сбоя" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Файл конфигурации" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Использовать этот каталог в качестве корневого для RPM" - -@@ -343,27 +360,28 @@ msgid "Root directory for running container commands" - msgstr "Корневой каталог для выполнения команд для контейнера" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [параметры]" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Использовать NUM как uid клиента" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Запись в журнал" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Добавить названия программ в журнал" - -@@ -373,69 +391,58 @@ msgid "Unknown error" - msgstr "Неизвестная ошибка" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "«%s» не является правильным каталогом для данных о сбое" -+msgid "'%s' is not a valid element name" -+msgstr "Недопустимое имя элемента: «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Элемент «%s» не может быть изменен" -+msgid "'%s' is not a valid problem directory" -+msgstr "Недопустимый каталог с данными сбоя: «%s»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Не разрешено" - -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Ошибка доступа к проблеме с целью ее изменения" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Элемент «%s» не может быть изменен" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "Не удалось изменить владельца каталога. Проверьте журналы." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Не удается получить доступ к данным сбоя для чтения" -- - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "Недопустимое имя элемента: «%s»" -- --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Не удалось определить размер «%s»." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Недостаточно места" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Ошибка удаления элемента «%s» из каталога «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -446,13 +453,13 @@ msgstr "" - "использующая это имя.\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Выйти после NUM секунд бездействия" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - "Эта программа должна запускаться от имени привелигированного пользователя." -@@ -482,21 +489,24 @@ msgstr "Не выполнять как службу" - msgid "Log to syslog even with -d" - msgstr "Запись в журнал даже с -d" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Запуск EVENT в DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Взаимодействие с пользователем напрямую" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format -@@ -519,8 +529,8 @@ msgstr "" - "& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n" - "\n" - "\n" --"Следит за указанным каналогом и распаковывает поступающие\n" --"архивы в место, определенное в выражении DumpLocation в abrt.conf\n" -+"Следит за указанным каталогом и распаковывает поступающие\n" -+"архивы в место, определенное значением DumpLocation в abrt.conf\n" - "\n" - "Если КАТАЛОГ не определен, будет выбрано значение \n" - "WatchCrashdumpArchiveDir из abrt.conf" -@@ -541,91 +551,92 @@ msgid "Maximal cache size in MiB. Default is " - msgstr "Максимальный размер кэша в МиБ. По умолчанию:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Отключает аутентификацию" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Имя пользователя в системе поддержки Red Hat" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Пароль доступа к системе поддержки Red Hat. Если не указан, будет предложено " - "его ввести вручную" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Путь к SSL-сертификату uReport или тип сертификата" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "Если задан пароль, необходимо определить --username" -+msgstr "Если пароль задан, необходимо определить --username" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Укажите --username или --certificate " - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Укажите --username или --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Укажите --anonymous или --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Недопустимое число аргументов" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "Неизвестное значение параметра: «%s»\n" -+msgstr "Неизвестное значение: «%s»\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Пароль:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Для продолжения необходимо ввести пароль.\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Автоматический отчет для HTTP-подключений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Автоматический отчет для SSL-подключений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "Автоматический отчет для анонимных подключений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -645,83 +656,83 @@ msgstr "" - " ФАЙЛ - имя файла отправляемого архива\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Не является каталогом: «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Пропускается: «{0}» (начинается с косой черты)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Пропускается: «{0}» (начинается с точки)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Пропускается: «{0}» (содержит ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Пропускается: «{0}» (содержит пробел)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Пропускается: «{0}» (содержит знак табуляции)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Не удалось изменить каталог на «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Неизвестный тип файла: «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Не удалось создать рабочий каталог в «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Не удалось переместить «{0}» в «{1}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Не удалось скопировать «{0}» в «{1}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Ошибка проверки «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Распаковка «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Не удалось создать каталог «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Не удалось распаковать «{0}»" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' обработан успешно" - -@@ -749,23 +760,31 @@ msgstr "Не удается сменить владельца «%s»: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Не удалось удалить каталог с данными о сбоях: %s" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Не удается получить список ошибок от abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Не удается проверить, существует ли элемент, через abrt-dbus: %s" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/lib/ignored_problems.c:233 -@@ -780,8 +799,8 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" --"Ошибка записи в «%s». Не удалось удалить проблему «%s» из списка " --"игнорируемых проблем «%s»." -+"Ошибка записи в «%s». Не удалось удалить «%s» из списка игнорируемых проблем " -+"«%s»." - - # translation auto-copied from project abrt, version rhel7, document abrt - #. Something nefarious happened -@@ -817,7 +836,7 @@ msgid "Backtrace parsing failed for %s" - msgstr "Ошибка разбора протокола сбоя %s" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Поток сбоя не найден" - -@@ -939,7 +958,7 @@ msgid "Oops text extracted successfully" - msgstr "Текст ошибки ядра извлечен успешно" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -947,6 +966,38 @@ msgstr "" - "kernel.log сообщает об ошибках оборудования.\n" - "Это, скорее всего, не проблема программного обеспечения.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -1105,8 +1156,37 @@ msgstr "Отсутствует файл debuginfo: {0}" - msgid "All debuginfo files are available" - msgstr "Все отладочные пакеты доступны" - -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1117,7 +1197,7 @@ msgstr "" - "значительного объема данных." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1243,7 +1323,7 @@ msgstr "Сигнал, вызванный изменением размеров - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "Сигнал по истечении " -+msgstr "Сигнал по завершении alarm(N) " - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-gdb-exploitable:583 -@@ -1396,7 +1476,8 @@ msgstr "Создавать каталог в DIR для каждого сбоя - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "То же, что и \"-d DumpLocation\", \"DumpLocation\" задается в abrt.conf" - -@@ -1408,18 +1489,20 @@ msgstr "Сохранить извлеченную информацию в PROBLE - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Открыть доступ чтения к каталогу сбоев" - - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Повторить создание каталога через 1 секунду" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Вывести строку (строки) поиска в stdout и выйти" - -@@ -1429,10 +1512,13 @@ msgstr "Вывести строку (строки) поиска в stdout и в - msgid "Failed to compile regex" - msgstr "Не удалось скомпилировать регулярное выражение" - --# translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Не удалось обновить проблему: найдено несколько ошибок" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1451,6 +1537,7 @@ msgstr "Не удалось сохранить данные по обнаруж - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Не удалось инициализировать отслеживание systemd-journal" - -@@ -1485,11 +1572,13 @@ msgstr "Создавать новый каталог для сбоя в DIR дл - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Начать чтение журнала systemd с позиции курсора" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Начать чтение журнала systemd с конца" - -@@ -1503,16 +1592,19 @@ msgstr "То же, что и -t INT, INT указывается в plugins/CCpp. - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "Следить за журналом systemd с последней позиции просмотра (если есть)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Необходимо указать либо -c CURSOR, либо -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Не удается открыть журнал systemd" - -@@ -1520,18 +1612,21 @@ msgstr "Не удается открыть журнал systemd" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Не удается отобрать из журнала systemd только данные systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Не удается перейти в конец журнала " - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Не удалось установить курсор журнала systemd «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Не удается чтение данных журнала." - -@@ -1562,29 +1657,78 @@ msgstr "" - "Последняя позиция просмотра сохраняется в " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Читать файлы журнала со всех машин" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Читать все файлы журнала из каталога в PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Не удается инициализация systemd-journal в каталоге «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Не удается отобрать из журнала systemd-journal только данные ядра" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Не удалось начать наблюдение с курсора «%s»" - -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1595,45 +1739,49 @@ msgstr "" - "Извлекать данные о сбое Xorg из FILE (или стандартного ввода)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Вывести найденные данные о сбое в стандартный вывод" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Создавать каталог в DIR для каждого сбоя" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Не удается сохранить точку отслеживания журнала" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Не удается сохранить точку отслеживания журнала: открывание(«%s»)" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - "Не восстанавливается точка отслеживания журнала: файл «%s» не существует" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Не удается восстановить точку отслеживания журнала из файла «%s»" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Не удается восстановить точку отслеживания журнала: путь «%s» не является " - "обычным файлом" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1641,12 +1789,12 @@ msgstr "" - "Не удается восстановить точку отслеживания журнала: файл «%s» превышает " - "предельный размер %dБ" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Не удается восстановить точку отслеживания журнала: открывание(«%s»)" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1654,7 +1802,7 @@ msgstr "" - "весь файл «%s»" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Не удалось переместить журнал в позицию курсора из файла «%s»" -@@ -2051,7 +2199,7 @@ msgid "" - "private data, if any." - msgstr "" - "Отправляет дамп памяти на сервер для генерации протокола сбоя. Достоинства: " --"не требуется загружать debuginfo. База данных на остлеживающем сервер более " -+"не требуется загружать debuginfo. База данных на отслеживающем сервере более " - "подробная, поэтому сервер может создавать более точные отчёты. Недостатки: " - "отправляемый дамп содержит все данные сбойной программы, в том числе и " - "личные." -@@ -2284,7 +2432,7 @@ msgid "Sleeping for %d seconds" - msgstr "Переход в режим ожидания на %d сек." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2293,7 +2441,7 @@ msgstr "" - "проблемы не решаются на уровне ядра." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2302,7 +2450,7 @@ msgstr "" - "проблема не может быть решена на уровне ядра." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2313,28 +2461,28 @@ msgstr "" - "диагностировать проблему в таких ядрах." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Поврежденные модули: %s." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Список идентификторов ошибок" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Указать адрес bodhi-сервера" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Указать версию" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2345,23 +2493,23 @@ msgstr "" - "Искать обновления на bodhi-сервере" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Поиск обновлений" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Нет обновлений этого пакета" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Локальная версия пакета новее обнаруженных обновлений" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2392,79 +2540,79 @@ msgid "Delete files with found oopses" - msgstr "Удалить файлы с найденными сбоями" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "«%s» обнаружил несколько проблемных каталогов" - --# translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Формат: abrt-cli [--version] КОМАНДА [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Показать ошибки [в DIR]" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Удалить каталог DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Анализировать и предоставить отчет по ошибкам в DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Вывод информации о DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Вывод числа недавних сбоев" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Обработка нескольких проблем" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - "Для получения дополнительной информации выполните «abrt-cli КОМАНДА --help»" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [параметры]" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Показать ошибки, о которых еще не сообщалось" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Показать подробный отчёт" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Дать список сбоев, обнаруженных после указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Дать список сбоев, обнаруженных до указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2475,60 +2623,70 @@ msgstr "" - "Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [параметры] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Текст, длина которого превышает указанную, будет усечен" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Нет такого каталога: «%s»." - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Вывод только числа сбоев" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Вывод сбоев, обнаруженных после указанного момента времени" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT обнаружил %u сбой (сбоев). Для получения дополнительной информации " - "выполните: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "Удаление «%s»" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [параметры] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "Удалить PROBLEM_DIR после отправки отчета" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "Удаление «%s»" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Действия: удалить (rm), информация (i), пропустить (s):" -@@ -2539,29 +2697,184 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Действия: удалить (rm), сообщить (e), информация (i), пропустить (s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Отчет по «%s»..." - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Для перехода к следующей проблеме нажмите ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author yuliya --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " - "последовательно" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Выбор сбоев, обнаруженных после заданного момента времени" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" -diff --git a/po/sk.po b/po/sk.po -index 3bf4b52..63f33da 100644 ---- a/po/sk.po -+++ b/po/sk.po -@@ -9,126 +9,141 @@ - # Michal Hriň , 2011 - # Milan Ondrašovič , 2013 - # Richard Marko , 2012 -+# Dusan Kazik , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2015-10-21 12:10-0400\n" -+"Last-Translator: Dusan Kazik \n" - "Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/" - "language/sk/)\n" - "Language: sk\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Nahlásenie problému" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Zobrazuje a nahlasuje zlyhania aplikácií" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Nedá sa prevziať vlastníctvo '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Nedá sa otvoriť adresár na zapísanie „%s“" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Nedá sa zavrieť oznámenie: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Ale nie!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Nahlásiť" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Reštartovať" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Problém " -+"bol automaticky nahlásený." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Keď bude " -+"dostupné pripojenie na internet, bude problém nahlásený." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak chcete " -+"nahlásiť problém, prosím, kontaktujte vývojára." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že aplikácia %s nečakane skončila. Ak by ste " -+"chceli pomôcť vyriešiť problém, prosím, odošlite hlásenie." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Problém " -+"bol automaticky nahlásený." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém so súčasťou. Keď bude " -+"dostupné pripojenie na internet, bude problém nahlásený." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Ospravedlňujeme sa, ale zdá sa, že sa vyskytol problém. Ak by ste chceli " -+"pomôcť tento problém vyriešiť, prosím, odošlite hlásenie." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Nedá sa zobraziť oznámenie: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Nedá sa čítať z kanálu gio: „%s“" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Nedá sa nastaviť kódovanie na kanáli gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Nedá sa zapnúť neblokovaný režim pre kanál gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -138,28 +153,41 @@ msgstr "" - "\n" - "Aplet, ktorý upozorní používateľa na novo zistené problémy službou ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Opýtať sa pred odcudzením adresára" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Automaticky odoslať hlásenie uReport" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "Skrátenie nahlasovanie" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "" -+msgstr "Tiché skrátené nahlasovanie" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -192,33 +220,45 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "" -+msgstr "Požiadať o súkromný tiket pre citlivé informácie" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "" -+msgstr "Oznámiť nedokončené problémy" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_Zavrieť" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" -@@ -227,7 +267,7 @@ msgstr "_Predvolené" - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "Problém s hlásením konfigurácie" -+msgstr "Konfigurácia nahlásenia problému" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" -@@ -241,14 +281,14 @@ msgstr "O programe" - msgid "Quit" - msgstr "Ukončiť" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -260,11 +300,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Adresár s informáciami o probléme" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfiguračný súbor" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -278,24 +318,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [voľby]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Použiť NUM ako identifikátor používateľa pre klienta" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Zalogovať do syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Pridať názvy programu do log-u" - -@@ -303,62 +344,52 @@ msgstr "Pridať názvy programu do log-u" - msgid "Unknown error" - msgstr "Neznáma chyba" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' nie je platným adresárom problému" -+msgid "'%s' is not a valid element name" -+msgstr "„%s“ nie je platným názvom prvku" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Prvok „%s“ sa nedá zmeniť" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' nie je platným adresárom problému" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Nepovolený" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Nedá sa pristúpiť k problému a zmeniť ho" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Prvok „%s“ sa nedá zmeniť" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Vykonávanie chown na adresár zlyhalo. Pre viac podrobností skontrolujte " - "systémové záznamy." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "„%s“ nie je platným názvom prvku" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Nedá sa získať veľkosť „%s“" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Nezostalo miesto pre problémy" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Nedá sa odstrániť prvok „%s“ z adresára problému „%s“" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -368,12 +399,12 @@ msgstr "" - "Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca " - "tento názov nie je spustená.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Ukončit po NUM sekundách neaktivity" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Tento program musí byť spustený s oprávneniami administrátora." - -@@ -399,18 +430,22 @@ msgstr "Nespúšťať ako démona" - msgid "Log to syslog even with -d" - msgstr "Zalogovať do syslog ešte s -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ADR. UDALOSTÍ..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Spustiť EVENT v adresári DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Komunikovať priamo s používateľom" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -438,75 +473,76 @@ msgstr "" - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "" -+msgstr "Maximálna veľkosť vyrovnávacej pamäte v MiB. Predvolená je " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Vypne overovanie totožnosti" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Používateľské meno podpory spoločnosti Red Hat" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" --msgstr "" -+msgstr "Neplatný počet argumentov" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "" -+msgstr "Neznáma hodnota pre voľbu: „%s“\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Heslo:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Nedá sa pokračovať bez hesla\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "anonymné automatické nahlasovanie" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -518,68 +554,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Nie je adresár: „{0}“" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (začína lomítkom)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (začína bodkou)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (obsahuje ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (obsahuje medzeru)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "" -+msgstr "Vynecháva sa: „{0}“ (obsahuje tabulátor)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "" -+msgstr "Nedá sa zmeniť adresár na „{0}“" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -603,18 +639,26 @@ msgstr "Nedá sa vykonať chown '%s': %s" - msgid "Deleting problem directory failed: %s" - msgstr "Zlyhalo odstránenie adresára s problémom: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Nedá sa získať zoznam problémov zo zbernice abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -661,7 +705,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Parsovanie backtrace zlyhalo pre %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Vlákno s pádom sa nenašlo" - -@@ -751,7 +795,8 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" - "{1}" --msgstr "" -+msgstr "Nedá sa spracovať {0}:\n" -+"{1}" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" -@@ -761,12 +806,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -811,7 +888,7 @@ msgstr "Generuje sa záznam volaní jadra (core_backtrace)" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 - msgid "Error: GDB did not return any data" --msgstr "" -+msgstr "Chyba: Odlaďovač GDB nevrátil žiadne údaje" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 - #, c-format -@@ -870,7 +947,7 @@ msgstr "" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" --msgstr "" -+msgstr "Chýba požadovaný súbor: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" -@@ -880,7 +957,36 @@ msgstr "Chýbajúci debuginfo balíček: {0}" - msgid "All debuginfo files are available" - msgstr "Všetky debuginfo balíčky sú dostupné." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -890,7 +996,7 @@ msgstr "" - "stacktrace bude vygenerovaný lokálne. (Môže byť nutné stiahnuť veľké " - "množstvo dát)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -927,25 +1033,27 @@ msgstr "Ponechať daný adresár" - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "" -+msgstr "Nie je možné spustiť „%s“. Chybová hláška bola: „%s“" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "" -+msgstr "Nie je číslo v súbore „%s“" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" --msgstr "" -+msgstr "Použitie: %s [-v]" - - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" -+"Nie je možné získať aktuálny pracovný adresár, pretože bol pravdepodobne " -+"odstránený" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" --msgstr "" -+msgstr "Pre tento problém už bolo vyplnené hlásenie o chybe:" - - #: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" -@@ -979,7 +1087,7 @@ msgstr "" - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "" -+msgstr "Signál bol odoslaný klávesnicou" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 -@@ -1022,7 +1130,7 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" --msgstr "" -+msgstr "Aritmetická výnimka" - - #: ../src/plugins/abrt-gdb-exploitable:637 - msgid "Division by zero" -@@ -1030,7 +1138,7 @@ msgstr "Delenie nulou" - - #: ../src/plugins/abrt-gdb-exploitable:641 - msgid "Illegal instruction (jump to a random address?)" --msgstr "" -+msgstr "Nepovolená inštrukcia (skok na náhodnú adresu?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" -@@ -1038,11 +1146,11 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" --msgstr "" -+msgstr "Pretečenie zásobníka" - - #: ../src/plugins/abrt-gdb-exploitable:656 - msgid "Write to an invalid address" --msgstr "" -+msgstr "Zápis do neplatnej adresy" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" -@@ -1051,7 +1159,7 @@ msgstr "" - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 - msgid "Jump to an invalid address" --msgstr "" -+msgstr "Skok na neplatnú adresu" - - #: ../src/plugins/abrt-gdb-exploitable:674 - msgid "" -@@ -1064,7 +1172,7 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "" -+msgstr "Pravdepodobný dôvod predčasného skončenia:" - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " -@@ -1072,7 +1180,7 @@ msgstr "" - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "" -+msgstr "Aktuálna inštrukcia:" - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" -@@ -1116,7 +1224,8 @@ msgstr "Vytvoriť nový adresár s problémom v DIR pre každý nájdený oops" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Rovnaké ako -d DumpLocation, DumpLocation je nastavené v abrt.conf" - -@@ -1126,26 +1235,32 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Nastaviť pracovný adresár prístupný pre všetkých" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Vypísať vyhľadávací/ie reťazec/ce na stdout a skončiť" - - #: ../src/plugins/abrt-dump-oops.c:127 - #: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" -+msgstr "Zlyhalo skompilovanie regexu" -+ -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1165,6 +1280,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1188,11 +1304,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1206,16 +1324,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1223,18 +1344,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1253,14 +1377,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1269,12 +1396,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1284,58 +1457,62 @@ msgstr "" - "\n" - "Extrahovať Xorg pád z FILE(súbor) (alebo zo štandardného vstupu)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Vypísať nájdené údaje o páde na štandardný výstup" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Vytvoriť adresár s problémom v DIR pre každý nájdený pád" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1863,19 +2040,19 @@ msgstr "Nepodarilo sa ukončiť NSS." - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1885,24 +2062,24 @@ msgstr "" - "označené ako 'tainted' (príkaz: %s). Vývojári jadra nie sú schopný " - "diagnostikovať takto označený problém." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "Nefunkčné moduly: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Zoznam identifikátorov chýb" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Určte url servera bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Určte vydanie" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1912,20 +2089,20 @@ msgstr "" - "\n" - "Vyhľadávať aktualizácie na bodhi serveri" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Hľadajú sa aktualizácie" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Nenašli sa aktualizácie pre tento balík" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Lokálna verzia balíka je novšia ako v dostupných aktualizáciách" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1949,65 +2126,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Použitie: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Zmazať adresár DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analyzovať a ohlásiť problém z adresára DIR" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Vypísať informácie o adresári DIR" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Vypísať počet nedávnych pádov" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --help'" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Zobraziť detailnú správu" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2015,52 +2193,62 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Vypísať iba počet problémov bez akejkoľvek správy" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová hranica" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli " - "list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2069,24 +2257,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/sq.po b/po/sq.po -index 971f150..aeb05e4 100644 ---- a/po/sq.po -+++ b/po/sq.po -@@ -1,195 +1,138 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: -+# Silva Arapi , 2015. #zanata - msgid "" - msgstr "" --"Project-Id-Version: ABRT\n" -+"Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2014-10-06 13:44+0200\n" --"PO-Revision-Date: 2014-10-06 11:45+0000\n" --"Last-Translator: Jakub Filak \n" --"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2015-10-31 11:16-0400\n" -+"Last-Translator: Silva Arapi \n" -+"Language-Team: Albanian\n" - "Language: sq\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: Zanata 3.8.2\n" -+"Plural-Forms: nplurals=2; plural=(n != 1)\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 --msgid "Automatic Bug Reporting Tool" --msgstr "" -+msgid "Problem Reporting" -+msgstr "Raportimi i Problemeve" - - #: ../src/applet/abrt-applet.desktop.in.h:2 --msgid "ABRT notification applet" --msgstr "" -- --#: ../src/applet/applet.c:129 --msgid "" --"The report which will be sent does not contain any security sensitive data. " --"Therefore it is not necessary to bother you next time and require any " --"further action by you. \n" --msgstr "" -- --#: ../src/applet/applet.c:135 --msgid "Do you want to enable automatically submitted crash reports?" --msgstr "" -+msgid "View and report application crashes" -+msgstr "Shikoni dhe raportoni përplasjet e aplikacioneve" - --#: ../src/applet/applet.c:140 --msgid "Do you want to enable automatically submitted anonymous crash reports?" -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 -+#, c-format -+msgid "Can't take ownership of '%s'" - msgstr "" - --#. The NetworkManager DBus service is not available. --#: ../src/applet/applet.c:241 -+#: ../src/applet/applet.c:268 - #, c-format --msgid "Can't connect to NetworkManager over DBus: %s" --msgstr "" -+msgid "Can't open directory for writing '%s'" -+msgstr "Nuk mund të hapet direktoria për të shkruar '%s'" - --#: ../src/applet/applet.c:265 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format --msgid "Can't determine network status via NetworkManager: %s" --msgstr "" -+msgid "Can't close notification: %s" -+msgstr "Nuk mund të mbyllen njoftimet: %s" - --#: ../src/applet/applet.c:384 --msgid "A problem has been detected" -+#: ../src/applet/applet.c:598 -+msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:386 --#, c-format --msgid "A problem in the %s package has been detected" -+#: ../src/applet/applet.c:616 -+msgid "Report" - msgstr "" - --#: ../src/applet/applet.c:396 --#, c-format --msgid "%s and the diagnostic data has been submitted" -+#: ../src/applet/applet.c:625 -+msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:556 ../src/plugins/abrt-retrace-client.c:131 --#: ../src/plugins/abrt-retrace-client.c:168 -+#: ../src/applet/applet.c:694 - #, c-format --msgid "Can't execute '%s'" -+msgid "" -+"We're sorry, it looks like %s crashed. The problem has been automatically " -+"reported." - msgstr "" - --#: ../src/applet/applet.c:641 ../src/applet/applet.c:713 -+#: ../src/applet/applet.c:699 - #, c-format --msgid "Can't close notification: %s" --msgstr "" -- --#: ../src/applet/applet.c:675 - msgid "" --"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" --"\n" --"Do you want to continue?" -+"We’re sorry, it looks like %s crashed. The problem will be reported when the " -+"internet is available." - msgstr "" - --#: ../src/applet/applet.c:753 ../src/applet/applet.c:755 --msgid "Warning" --msgstr "" -- --#: ../src/applet/applet.c:803 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 -+#, c-format - msgid "" --"Notification area applet that notifies users about issues detected by ABRT" -+"We're sorry, it looks like %s crashed. Please contact the developer if you " -+"want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:819 --msgid "translator-credits" --msgstr "" -- --#: ../src/applet/applet.c:827 --msgid "_Quit" --msgstr "" -- --#: ../src/applet/applet.c:829 --msgid "Hide" --msgstr "" -- --#: ../src/applet/applet.c:831 --msgid "_About" --msgstr "" -- --#: ../src/applet/applet.c:899 --msgid "Problem detected" --msgstr "" -- --#: ../src/applet/applet.c:949 --msgid "Ignore forever" --msgstr "" -- --#. Problem has been 'autoreported' and is considered as KNOWN --#: ../src/applet/applet.c:960 ../src/applet/applet.c:975 --msgid "Open" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "The Problem has already been Reported" --msgstr "" -- --#: ../src/applet/applet.c:965 --msgid "A Known Problem has Occurred" --msgstr "" -- --#. Problem has not yet been 'autoreported' and can be --#. * 'autoreported' on user request. --#: ../src/applet/applet.c:984 ../src/applet/applet.c:1019 --msgid "Report" -+#: ../src/applet/applet.c:713 -+#, c-format -+msgid "" -+"We're sorry, it looks like %s crashed. If you'd like to help resolve the " -+"issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:989 --msgid "A Problem has Occurred" -+#: ../src/applet/applet.c:732 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:1015 --msgid "A Problem has been Reported" -+#: ../src/applet/applet.c:736 -+msgid "" -+"We're sorry, it looks like a problem occurred in a component. The problem " -+"will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:1023 --msgid "A New Problem has Occurred" -+#: ../src/applet/applet.c:741 -+msgid "" -+"We're sorry, it looks like a problem occurred. If you'd like to help resolve " -+"the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:1033 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:1067 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:1151 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1155 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1189 --#, c-format --msgid "Can't take ownership of '%s'" --msgstr "" -- --#: ../src/applet/applet.c:1198 --#, c-format --msgid "Can't open directory for writing '%s'" -+#: ../src/applet/applet.c:1186 -+msgid "" -+"& [-v] [DIR]...\n" -+"\n" -+"Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - --#: ../src/applet/applet.c:1481 --#, c-format -+#: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" --"Failed to open connection to session manager: '%s', notification may " --"reappear on the next login" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." - msgstr "" - --#: ../src/applet/applet.c:1622 --msgid "" --"& [-v] [DIR]...\n" --"\n" --"Applet which notifies user when new problems are detected by ABRT\n" -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 -@@ -211,10 +154,11 @@ msgstr "" - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " --"space consuming operation. ABRT provides a service which generates the stack" --" trace from the coredump but you have to upload the coredump to this " --"service. With this option disabled ABRT will upload the coredump without " --"asking." -+"space consuming operation. ABRT provides a service which generates the stack " -+"trace from the coredump but you have to upload the coredump to this service. " -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -228,15 +172,15 @@ msgstr "" - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" - "uReport is short and completely anonymous description of a problem. ABRT " --"uses uReports for fast global duplicate detection. In default configuration" --" uReport is sent at beginning of reporting process. With this option enabled" --" uReports are sent automatically immediately after problem detection." -+"uses uReports for fast global duplicate detection. In default configuration " -+"uReport is sent at beginning of reporting process. With this option enabled " -+"uReports are sent automatically immediately after problem detection." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" --"With this option enabled reporting process started by click on Report button" --" in problem notification bubble will be interrupted after uReport is sent. " -+"With this option enabled reporting process started by click on Report button " -+"in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" - -@@ -247,30 +191,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -296,16 +252,17 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:388 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:400 -+#: ../src/daemon/abrt-action-save-package-data.c:406 -+#: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 --#: ../src/plugins/abrt-action-analyze-c.c:78 -+#: ../src/plugins/abrt-action-analyze-c.c:141 - #: ../src/plugins/abrt-action-analyze-oops.c:48 - #: ../src/plugins/abrt-action-analyze-xorg.c:84 - #: ../src/plugins/abrt-action-analyze-python.c:47 -@@ -314,123 +271,143 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:401 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:781 --#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 -+#: ../src/daemon/abrt-action-save-package-data.c:408 -+msgid "Use this directory as RPM root" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:199 -+msgid "& [-v] -d DIR\n" -+"\n" -+"Save container metadata" -+msgstr "" -+ -+#: ../src/daemon/abrt-action-save-container-data.c:211 -+msgid "Root directory for running container commands" -+msgstr "" -+ -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 -+#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 --#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:96 --#: ../src/plugins/abrt-dump-journal-oops.c:302 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 -+#: ../src/plugins/abrt-dump-journal-core.c:477 -+#: ../src/plugins/abrt-dump-journal-oops.c:219 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:500 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:123 -+#: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:188 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:223 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 --#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:256 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:461 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:559 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:580 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:595 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:627 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 -+#: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 --#: ../src/daemon/abrtd.c:499 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - --#: ../src/daemon/abrtd.c:451 -+#: ../src/daemon/abrtd.c:389 - msgid "" - "The problem data are incomplete. This usually happens when a problem is " --"detected while computer is shutting down or user is logging out. In order to" --" provide valuable problem reports, ABRT will not allow you to submit this " --"problem. If you have time and want to help the developers in their effort to" --" sort out this problem, please contact them directly." -+"detected while computer is shutting down or user is logging out. In order to " -+"provide valuable problem reports, ABRT will not allow you to submit this " -+"problem. If you have time and want to help the developers in their effort to " -+"sort out this problem, please contact them directly." - msgstr "" - --#: ../src/daemon/abrtd.c:497 -+#: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" - msgstr "" - --#: ../src/daemon/abrtd.c:498 -+#: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -460,20 +437,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:81 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:113 -+#: ../src/daemon/abrt-auto-reporting.c:233 -+msgid "Turns the authentication off" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:234 -+msgid "Red Hat Support user name" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:235 -+msgid "Red Hat Support password, if not given, a prompt for it will be issued" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:236 -+msgid "uReport SSL certificate paths or certificate type" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:252 -+msgid "You also need to specify --username for --password" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:258 -+msgid "You can use either --username or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:264 -+msgid "You can use either --username or --anonymous" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:270 -+msgid "You can use either --anonymous or --certificate" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:138 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-auto-reporting.c:336 -+msgid "Password:" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:339 -+msgid "Cannot continue without password\n" -+msgstr "" -+ -+#. Print only the part before ':' of a string like "username:password" -+#: ../src/daemon/abrt-auto-reporting.c:380 -+msgid "HTTP Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:382 -+msgid "SSL Client Authenticated auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-auto-reporting.c:384 -+msgid "anonymous auto reporting" -+msgstr "" -+ -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -485,68 +516,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -570,16 +601,30 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 -+#, c-format -+msgid "Can't test whether the element exists over abrt-dbus: %s" -+msgstr "" -+ - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" -@@ -606,19 +651,21 @@ msgid "" - "and identifies crash function in problem directory DIR" - msgstr "" - -+#. - #. * The parser failed. Compute the duphash from the executable - #. * instead of a backtrace. - #. * and component only. This is not supposed to happen often. -+#. - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-c.c:67 -+#: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" - "& [-v] -d DIR\n" - "\n" -@@ -691,8 +738,7 @@ msgid "Extracting the oops text from core" - msgstr "" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 --msgid "" --"Can't process {0}:\n" -+msgid "Can't process {0}:\n" - "{1}" - msgstr "" - -@@ -704,12 +750,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -727,6 +805,7 @@ msgstr "" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -+#. - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" -@@ -761,60 +840,99 @@ msgstr "" - msgid "Exiting on user command" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:88 -+#: ../src/plugins/abrt-action-install-debuginfo.in:89 - #, c-format - msgid "" --"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" --" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" -+"Usage: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" - " [-e, --exact=PATH[:PATH]...]\n" - "\n" - "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" - "to CACHEDIR, using TMPDIR as temporary staging area.\n" - "Old files in CACHEDIR are deleted until it is smaller than SIZE.\n" - "\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" - " -v Be verbose\n" - " -y Noninteractive, assume 'Yes' to all questions\n" - " --ids Default: build_ids\n" --" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n" -+" --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" - " --cache Default: /var/cache/abrt-di\n" - " --size_mb Default: 4096\n" -+" --pkgmgr Default: PackageManager from CCpp.conf or 'dnf'\n" - " -e,--exact Download only specified files\n" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:169 -+#: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:206 -+#: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:209 -+#: ../src/plugins/abrt-action-install-debuginfo.in:215 - msgid "{0} of debuginfo files are not installed" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:223 -+#: ../src/plugins/abrt-action-install-debuginfo.in:234 -+#, c-format -+msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:228 -+#: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" - msgstr "" - --#: ../src/plugins/abrt-action-install-debuginfo.in:231 -+#: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -824,7 +942,8 @@ msgstr "" - msgid "" - "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" - "\n" --"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" -+"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " -+"SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" - -@@ -840,38 +959,38 @@ msgstr "" - msgid "Preserve this directory" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:40 -+#: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:51 -+#: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:80 -+#: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:100 -+#: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:128 -+#: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:138 -+#: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:159 -+#: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" - msgstr "" - --#: ../src/plugins/abrt-action-ureport:164 -+#: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" - msgstr "" -@@ -1005,116 +1124,168 @@ msgstr "" - msgid "Don't run PROG if STRs aren't found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:76 -+#: ../src/plugins/abrt-dump-oops.c:77 - msgid "" - "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract oops from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:97 --#: ../src/plugins/abrt-dump-journal-oops.c:303 -+#: ../src/plugins/abrt-dump-oops.c:98 -+#: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" - msgstr "" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users --#: ../src/plugins/abrt-dump-oops.c:101 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#. -+#: ../src/plugins/abrt-dump-oops.c:102 -+#: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:102 --#: ../src/plugins/abrt-dump-journal-oops.c:308 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-journal-core.c:479 -+#: ../src/plugins/abrt-dump-journal-oops.c:225 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:103 -+#: ../src/plugins/abrt-dump-oops.c:104 - msgid "Save the extracted information in PROBLEM" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:104 --#: ../src/plugins/abrt-dump-journal-oops.c:309 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-oops.c:105 -+#: ../src/plugins/abrt-dump-journal-oops.c:226 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:105 --#: ../src/plugins/abrt-dump-journal-oops.c:310 -+#: ../src/plugins/abrt-dump-oops.c:106 -+#: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:106 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:126 --#: ../src/plugins/abrt-dump-journal-oops.c:214 -+#: ../src/plugins/abrt-dump-oops.c:127 -+#: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:185 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:43 --msgid "Cannot read journal data." -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - --#. Only notice because this is expected --#: ../src/plugins/abrt-dump-journal-oops.c:125 --#, c-format --msgid "Not restoring journal watch's position: file '%s' does not exist" -+#: ../src/plugins/abrt-dump-journal-core.c:341 -+#: ../src/plugins/abrt-dump-journal-core.c:377 -+msgid "Failed to obtain all required information from journald" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:129 -+#. We don't want to update the counter here. -+#: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format --msgid "Cannot restore journal watch's position form file '%s'" -+msgid "Not saving repeating crash after %ds (limit is %ds)" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:135 --#, c-format --msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+#: ../src/plugins/abrt-dump-journal-core.c:407 -+msgid "Failed to save detect problem data in abrt database" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:141 --#, c-format -+#: ../src/plugins/abrt-dump-journal-core.c:427 -+#: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 -+msgid "Failed to initialize systemd-journal watch" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" --"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Extract coredumps from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:149 --#, c-format --msgid "Cannot restore journal watch's position: open('%s')" -+#: ../src/plugins/abrt-dump-journal-core.c:478 -+msgid "Create new problem directory in DIR for every coredump" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:158 --#, c-format --msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:480 -+#: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 -+msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:170 --#, c-format --msgid "Failed to move the journal to a cursor from file '%s'" -+#: ../src/plugins/abrt-dump-journal-core.c:481 -+#: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 -+msgid "Start reading systemd-journal from the end" - msgstr "" - --#. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-dump-journal-oops.c:185 --msgid "Cannot save journal watch's position" -+#: ../src/plugins/abrt-dump-journal-core.c:482 -+msgid "Throttle problem directory creation to 1 per INT second" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:483 -+msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:484 -+#: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 -+msgid "Follow systemd-journal from the last seen position (if available)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:495 -+#: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 -+msgid "You need to specify either -c CURSOR or -e" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:541 -+#: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 -+msgid "Cannot open systemd-journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:544 -+msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:195 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 -+msgid "Cannot seek to the end of journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format --msgid "Cannot save journal watch's position: open('%s')" -+msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:251 --msgid "Failed to initialize systemd-journal watch" -+#: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 -+msgid "Cannot read journal data." - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:272 -+#: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" - "& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" - "\n" -@@ -1128,59 +1299,144 @@ msgid "" - "The last seen position is saved in " - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:311 --msgid "Start reading systemd-journal from the CURSOR position" -+#: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 -+msgid "Read journal files from all machines" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:312 --msgid "Start reading systemd-journal from the end" -+#: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 -+msgid "Read all journal files from directory at PATH" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:313 --msgid "Follow systemd-journal from the last seen position (if available)" -+#: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 -+#, c-format -+msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:327 --msgid "You need to specify either -c CURSOR or -e" -+#: ../src/plugins/abrt-dump-journal-oops.c:288 -+msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:356 --msgid "Cannot open systemd-journal" -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 -+#, c-format -+msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:359 --msgid "Cannot filter systemd-journal to kernel data only" -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:362 --msgid "Cannot seek to the end of journal" -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:369 --#, c-format --msgid "Failed to start watch from cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:378 --#, c-format --msgid "Failed to set systemd-journal cursor '%s'" -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:274 -+msgid "Cannot save journal watch's position" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:284 -+#, c-format -+msgid "Cannot save journal watch's position: open('%s')" -+msgstr "" -+ -+#. Only notice because this is expected -+#: ../src/plugins/abrt-journal.c:302 -+#, c-format -+msgid "Not restoring journal watch's position: file '%s' does not exist" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:304 -+#, c-format -+msgid "Cannot restore journal watch's position form file '%s'" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:311 -+#, c-format -+msgid "Cannot restore journal watch's position: path '%s' is not regular file" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:317 -+#, c-format -+msgid "" -+"Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:325 -+#, c-format -+msgid "Cannot restore journal watch's position: open('%s')" -+msgstr "" -+ -+#: ../src/plugins/abrt-journal.c:334 -+#, c-format -+msgid "Cannot restore journal watch's position: cannot read entire file '%s'" -+msgstr "" -+ -+#. abrt_journal_set_cursor() prints error message in verbose mode -+#: ../src/plugins/abrt-journal.c:346 -+#, c-format -+msgid "Failed to move the journal to a cursor from file '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " -@@ -1189,12 +1445,19 @@ msgstr "" - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -+#. - #: ../src/plugins/abrt-retrace-client.c:103 - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " - msgstr "" - -+#: ../src/plugins/abrt-retrace-client.c:131 -+#: ../src/plugins/abrt-retrace-client.c:168 -+#, c-format -+msgid "Can't execute '%s'" -+msgstr "" -+ - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 - #: ../src/plugins/abrt-retrace-client.c:677 -@@ -1211,8 +1474,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:1011 - #: ../src/plugins/abrt-retrace-client.c:1070 - #, c-format --msgid "" --"Unexpected HTTP response from server: %d\n" -+msgid "Unexpected HTTP response from server: %d\n" - "%s" - msgstr "" - -@@ -1281,8 +1543,8 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:628 - #, c-format - msgid "" --"The size of your archive is %s, but the retrace server only accepts archives" --" smaller or equal to %s." -+"The size of your archive is %s, but the retrace server only accepts archives " -+"smaller or equal to %s." - msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:640 -@@ -1343,8 +1605,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format --msgid "" --"Task Id: %s\n" -+msgid "Task Id: %s\n" - "Task Password: %s\n" - msgstr "" - -@@ -1354,8 +1615,7 @@ msgstr "" - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format --msgid "" --"Task Status: %s\n" -+msgid "Task Status: %s\n" - "%s\n" - msgstr "" - -@@ -1471,8 +1731,8 @@ msgstr "" - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" - "Needs to downloads debuginfo packages, which might take significant time, " --"and take up disk space. However, unlike RetraceServer, doesn't send coredump" --" to remote machines." -+"and take up disk space. However, unlike RetraceServer, doesn't send coredump " -+"to remote machines." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 -@@ -1481,11 +1741,11 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" --"Uploads coredump to a server, which generates backtrace and returns it. " --"Pros: no need for debuginfo downloads. Retrace server's database of " --"debuginfos is more complete. Retrace server may generate better backtraces. " --"Cons: coredump you upload contains all the data from the crashed program, " --"including your private data, if any." -+"Uploads coredump to a server, which generates backtrace and returns it. Pros:" -+" no need for debuginfo downloads. Retrace server's database of debuginfos is " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " -+"private data, if any." - msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 -@@ -1506,9 +1766,9 @@ msgstr "" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" --"Write \"insecure\" to allow insecure connection <a " --"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" --" >(warning)</a>" -+"Write \"insecure\" to allow insecure connection <a href=\"https://" -+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(warning)</a>" - msgstr "" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 -@@ -1596,133 +1856,140 @@ msgstr "" - msgid "Failed to wrap TCP socket by SSL." - msgstr "" - --#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 --#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 -+#: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:223 -+#: ../src/plugins/https-utils.c:220 -+msgid "Failed to enable SSL3." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:222 -+msgid "Failed to enable TLS." -+msgstr "" -+ -+#: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:232 -+#: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:240 -+#: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." - msgstr "" - --#: ../src/plugins/https-utils.c:246 -+#: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." - msgstr "" - --#: ../src/plugins/https-utils.c:250 -+#: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." - msgstr "" - --#: ../src/plugins/https-utils.c:257 -+#: ../src/plugins/https-utils.c:258 - #, c-format - msgid "Failed to complete SSL handshake: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:266 -+#: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." - msgstr "" - --#: ../src/plugins/https-utils.c:331 -+#: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" - msgstr "" - --#: ../src/plugins/https-utils.c:368 -+#: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." - msgstr "" - --#: ../src/plugins/https-utils.c:397 -+#: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." - msgstr "" - --#: ../src/plugins/https-utils.c:422 -+#: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." - msgstr "" - --#: ../src/plugins/https-utils.c:428 -+#: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." - msgstr "" - --#: ../src/plugins/https-utils.c:443 -+#: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." - msgstr "" - --#: ../src/plugins/oops-utils.c:71 -+#: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:205 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:210 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:225 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:233 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" --"An update exists which might fix your problem. You can install it by " --"running: %s. Do you want to continue with reporting the bug?" -+"An update exists which might fix your problem. You can install it by running:" -+" %s. Do you want to continue with reporting the bug?" - msgstr "" - - #: ../src/hooks/abrt-merge-pstoreoops.c:85 -@@ -1740,114 +2007,126 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:91 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:130 --msgid "& list [options] [DIR]..." -+#: ../src/cli/list.c:127 -+msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:139 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:141 ../src/cli/list.c:194 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:142 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:143 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:175 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" --"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" -+"The Autoreporting feature is disabled. Please consider enabling it by " -+"issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:186 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:195 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:215 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:70 --msgid "& status [DIR]..." -+#: ../src/cli/status.c:66 -+msgid "& status" - msgstr "" - --#: ../src/cli/status.c:78 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:79 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:104 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1856,24 +2135,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -@@ -1886,8 +2320,8 @@ msgid "" - "user doesn't want to upload his coredump to anywhere the event performs " - "local analysis. Local analysis is run event if remote analysis fails. Pros: " - "no need for debuginfo downloads. Retrace server's database of debuginfos is " --"more complete. Retrace server may generate better backtraces. Cons: coredump" --" you upload contains all the data from the crashed program, including your " -+"more complete. Retrace server may generate better backtraces. Cons: coredump " -+"you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" - -@@ -1944,8 +2378,8 @@ msgstr "" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:3 - msgid "" --"Checks if there are .vimrc and .gvimrc in your home directory and saves them" --" as user_vimrc and user_gvimrc, respectively." -+"Checks if there are .vimrc and .gvimrc in your home directory and saves them " -+"as user_vimrc and user_gvimrc, respectively." - msgstr "" - - #: ../src/plugins/post_report.xml.in.h:1 -diff --git a/po/sr.po b/po/sr.po -index 12a7cf7..93e82f6 100644 ---- a/po/sr.po -+++ b/po/sr.po -@@ -4,155 +4,185 @@ - # - # Translators: - # Jiří Moskovčák , 2011 -+# Momcilo Medic , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2015-09-17 07:58-0400\n" -+"Last-Translator: Momcilo Medic \n" - "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/" - "language/sr/)\n" - "Language: sr\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" --msgstr "" -+msgstr "Пријављивање проблема" - - #: ../src/applet/abrt-applet.desktop.in.h:2 - msgid "View and report application crashes" --msgstr "" -+msgstr "Види и пријави програмски пад" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" --msgstr "" -+msgstr "Не могу да преузмем власништво над '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" --msgstr "" -+msgstr "Не могу да отворим директоријум за упис '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" --msgstr "" -+msgstr "Не могу да затворим обавештење: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" --msgstr "" -+msgstr "Упс!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Пријава" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" --msgstr "" -+msgstr "Покрени поново" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Овај проблем је аутоматски пријављен." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Овај проблем ће бити аутоматски пријављен " -+"чим интернет буде доступан." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Молим да контактирате програмера ако " -+"желите пријавити проблем." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" -+"Нажалост, изгледа да се %s срушио. Ако желите да помогнете у решавању овог " -+"проблема, молим да пошаљете извештај." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" -+"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем је " -+"аутоматски пријављен." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" -+"Нажалост, изгледа да се догодио проблем у компоненти. Овај проблем ће бити " -+"пријављен аутоматски чим интернет буде доступан." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" -+"Нажалост, изгледа да се догодио проблем. Ако желите да помогнете у решавању " -+"овог проблема, молим да пошаљете извештај." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" --msgstr "" -+msgstr "Не могу да прикажем обавештење: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" --msgstr "" -+msgstr "Не могу да читам са gio канала: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" --msgstr "" -+msgstr "Не могу да поставим кодирање на gio каналу: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" --msgstr "" -+msgstr "Не могу да укључим неблокирајући режим за gio каналу: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" -+"& [-v] [DIR]...\n" -+"\n" -+"Програмчић који обавештава корисника када ABRT открије нове проблеме\n" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" --msgstr "" -+msgstr "Питати пре крађе директоријума" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:2 - msgid "Automatically send uReport" --msgstr "" -+msgstr "Аутоматски пошаљи uReport" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:3 - msgid "Shortened reporting" --msgstr "" -+msgstr "Скраћено пријављивање" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:4 - msgid "Silent shortened reporting" --msgstr "" -+msgstr "Тихо скраћено пријављивање" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:5 - msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -162,6 +192,10 @@ msgid "" - "directory. With this option disabled ABRT will move the problem directory " - "without asking." - msgstr "" -+"ABRT чува податке о проблему у директоријумима. Кад год је ABRT-у неопходан " -+"директоријум за упис, директоријум ће бити премештен са системске локације у " -+"ваш лични директоријум. Када је ова опција онемогућена ABRT ће преместити " -+"директоријум проблема без питања." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:7 - msgid "" -@@ -170,6 +204,10 @@ msgid "" - "uReport is sent at beginning of reporting process. With this option enabled " - "uReports are sent automatically immediately after problem detection." - msgstr "" -+"uReport је кратки и потпуно анонимни опис проблема. ABRT користи uReport-ове " -+"за брзо глобално откривање дупликата. У подразумеваној конфигурацији uReport " -+"се шаље на почету процеса пријављивања. Када је ова опција омогућена uReport " -+"се шаљу аутоматски одмах након откривања проблема." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:8 - msgid "" -@@ -177,71 +215,98 @@ msgid "" - "in problem notification bubble will be interrupted after uReport is sent. " - "You can always use the default problem browser to make complete report." - msgstr "" -+"Када је ова опција омогућена поступак пријављивања започет кликом на Пријави " -+"дугме у балону обавештења о проблему, ће бити прекинут након што је uReport " -+"послат. Можете увек употребити подразумевани прегледач проблема да направите " -+"комплетну пријаву." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:9 - msgid "" - " With this option enabled ABRT never shows notifications of reported " - "problems. Takes effect only if Shortened reporting is enabled." - msgstr "" -+"Када је ова опција омогућена ABRT никад не приказује обавештења о " -+"пријављеним проблемима. Има ефекта само када је омогућено скраћено " -+"пријављивање." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" -+"Када је ова опција омогућена ABRT увек прави карту програмске грешке са " -+"ограниченим приступом ако су откривени могући осетљиви подаци." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" --msgstr "" -+msgstr "Захтевати приватну карту за осетљиве информације" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" --msgstr "" -+msgstr "Обавести о непотпуним проблемима" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" -+"Непотпуни проблеми су откривени када се рачунар искључује или се корисник " -+"одјављује. Да би се пружили корисни извештаји о проблемима, ABRT вам неће " -+"дозволити да пошаљете ове проблеме." -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" - - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" --msgstr "" -+msgstr "_Затвори" - - #: ../src/configuration-gui/system-config-abrt.c:88 - msgid "_Defaults" --msgstr "" -+msgstr "_Подразумеване вредности" - - #: ../src/configuration-gui/system-config-abrt.c:116 - #: ../src/configuration-gui/main.c:36 - msgid "Problem Reporting Configuration" --msgstr "" -+msgstr "Подешавање пријављивања проблема" - - #: ../src/configuration-gui/main.c:75 - msgid "About System Config ABRT" --msgstr "" -+msgstr "О програму за системско подешавање ABRT-а" - - #: ../src/configuration-gui/main.c:105 - msgid "About" --msgstr "" -+msgstr "О програму" - - #: ../src/configuration-gui/main.c:106 - msgid "Quit" --msgstr "" -+msgstr "Излаз" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" -+"& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" -+"\n" -+"Пошаљи упит бази података пакета и сними име пакета и компоненте" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -251,120 +316,117 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:55 - #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 - msgid "Problem directory" --msgstr "" -+msgstr "Директоријум проблема" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" --msgstr "" -+msgstr "Датотека подешавања" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" --msgstr "" -+msgstr "Користи овај директоријум као RPM корен" - - #: ../src/daemon/abrt-action-save-container-data.c:199 - msgid "& [-v] -d DIR\n" - "\n" - "Save container metadata" --msgstr "" -+msgstr "& [-v] -d DIR\n" -+"\n" -+"Сачувај метаподатке контејнера" - - #: ../src/daemon/abrt-action-save-container-data.c:211 - msgid "Root directory for running container commands" --msgstr "" -+msgstr "Корени директоријум за извршавање контејнер команди" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" --msgstr "" -+msgstr "& [опције]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" --msgstr "" -+msgstr "Користи NUM као uid клијента" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" --msgstr "" -+msgstr "Записник у syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" --msgstr "" -+msgstr "Додај имена програма у записник" - - #: ../src/dbus/abrt-dbus.c:132 - msgid "Unknown error" --msgstr "" -+msgstr "Непозната грешка" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' није исправно име елемента" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' није исправан директоријум проблема" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "" -+msgstr "Неовлашћен" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" -+msgid "'%s' element can't be modified" -+msgstr "'%s' елемент не може бити измењен" -+ -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" -+"Промена власништва директоријума неуспешна. Проверите системске записе за " -+"више детаља." - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" --msgstr "" -+msgstr "Не могу да добијем величину '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" --msgstr "" -+msgstr "Није остало места за проблеме" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" --msgstr "" -+msgstr "Не могу да обришем елемент '%s' из директоријума проблема '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" - "The name '%s' has been lost, please check if other service owning the name " - "is not running.\n" - msgstr "" -+"Име '%s' је изгубљено, молим проверите да ли други сервис са власништвом над " -+"именом није покренут.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" --msgstr "" -+msgstr "Изађи након NUM секунди неактивности" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." --msgstr "" -+msgstr "Овај програм мора бити извршен под root налогом." - - #: ../src/daemon/abrtd.c:389 - msgid "" -@@ -374,31 +436,40 @@ msgid "" - "problem. If you have time and want to help the developers in their effort to " - "sort out this problem, please contact them directly." - msgstr "" -+"Подаци о проблему су непотпуни. Ово се обично дешава када се открије проблем " -+"док се рачунар искључује или се корисник одјављује. Да би се пружили корисни " -+"извештаји о проблемима, ABRT вам неће дозволити да пошаљете овај проблем. " -+"Ако имате времена и желите да помогнете програмерима у њиховом настојању да " -+"реше овај проблем, молим да их контактирате директно." - - #: ../src/daemon/abrtd.c:457 - msgid "Do not daemonize" --msgstr "" -+msgstr "Немој покренути као сервис" - - #: ../src/daemon/abrtd.c:458 - msgid "Log to syslog even with -d" --msgstr "" -+msgstr "Записуј у syslog чак и са -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" --msgstr "" -+msgstr "Изврши EVENT над DIR-ом" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" -+msgstr "Пренеси директно са кориснику" -+ -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" - msgstr "" - - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" --msgstr "" -+msgstr "Нема слободних радника и бафер је пун. Прескачем архиву '%s'" - - #: ../src/daemon/abrt-upload-watch.c:258 - msgid "" -@@ -411,86 +482,96 @@ msgid "" - "If UPLOAD_DIRECTORY is not provided, uses a value of\n" - "WatchCrashdumpArchiveDir option from abrt.conf" - msgstr "" -+"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" -+"\n" -+"\n" -+"Прати UPLOAD_DIRECTORY и отпакује архиве које пристижу у DumpLocation\n" -+"назначену у abrt.conf\n" -+"\n" -+"Ако UPLOAD_DIRECTORY није задат, користи вредност\n" -+"WatchCrashdumpArchiveDir опције из abrt.conf" - - #: ../src/daemon/abrt-upload-watch.c:281 - msgid "Daemize" --msgstr "" -+msgstr "Као сервис" - - #: ../src/daemon/abrt-upload-watch.c:282 - msgid "Number of concurrent workers. Default is " --msgstr "" -+msgstr "Број упоредних радника. Подразумевано је " - - #: ../src/daemon/abrt-upload-watch.c:283 - msgid "Maximal cache size in MiB. Default is " --msgstr "" -+msgstr "Максимална величина кеша у MiB. Подразумевано је " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " --msgstr "" -+msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" --msgstr "" -+msgstr "Искључује аутентификацију" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" --msgstr "" -+msgstr "Red Hat Support корисничко име" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" -+"Red Hat Support лозинка, ако није задата, онда ће бити издат упит за њу" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" --msgstr "" -+msgstr "uReport SSL путање сертификата или врста сертификата" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" --msgstr "" -+msgstr "Такође је потребно да назначите --username за --password" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" --msgstr "" -+msgstr "Можете користити или --username или --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" --msgstr "" -+msgstr "Можете користити или --username или --anonymous" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" --msgstr "" -+msgstr "Можете користити или --anonymous или --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" --msgstr "" -+msgstr "Неисправан број аргумената" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" --msgstr "" -+msgstr "Непозната вредност опције: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" --msgstr "" -+msgstr "Лозинка:" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" --msgstr "" -+msgstr "Не могу наставити без лозинке\n" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" --msgstr "" -+msgstr "HTTP аутентификовано аутоматско пријављивање" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" --msgstr "" -+msgstr "SSL Client аутентификовано аутоматско пријављивање" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" --msgstr "" -+msgstr "анонимно аутоматско пријављивање" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,112 +582,127 @@ msgid "" - " UPLOAD_DIR - Directory where uploaded archives are stored\n" - " FILENAME - Uploaded archive file name\n" - msgstr "" -+"Употреба: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -+"\n" -+" -v - Брбљивост\n" -+" -d - Обриши послату архиву\n" -+" ABRT_SPOOL_DIR - Директоријум где се отпакују исправне послате архиве\n" -+" UPLOAD_DIR - Директоријум где се чувају послате архиве\n" -+" FILENAME - Име датотеке послате архиве\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" --msgstr "" -+msgstr "Није директоријум: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" --msgstr "" -+msgstr "Прескачем: '{0}' (почиње косом цртом)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" --msgstr "" -+msgstr "Прескачем: '{0}' (почиње тачком)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" --msgstr "" -+msgstr "Прескачем: '{0}' (садржи ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" --msgstr "" -+msgstr "Прескачем: '{0}' (садржи размак)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" --msgstr "" -+msgstr "Прескачем: '{0}' (садржи таб)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" --msgstr "" -+msgstr "Не могу променити директоријум на '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" --msgstr "" -+msgstr "Непозната врста датотеке: '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" --msgstr "" -+msgstr "Не могу да направим радни директоријум у '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" --msgstr "" -+msgstr "Не могу преместити '{0}' на '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" --msgstr "" -+msgstr "Не могу копирати '{0}' на '{1}'" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" --msgstr "" -+msgstr "Грешка при провери '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" --msgstr "" -+msgstr "Отпакујем '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" --msgstr "" -+msgstr "Не могу да направим '{0}' директоријум" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" --msgstr "" -+msgstr "Не могу да отпакујем '{0}'" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" --msgstr "" -+msgstr "'{0}' успешно обрађено" - - #. Let user know what's going on - #: ../src/lib/hooklib.c:253 - msgid "Generating backtrace" --msgstr "" -+msgstr "Стварам стабло позивања" - - #: ../src/lib/problem_api_dbus.c:42 - #, c-format - msgid "Can't connect to system DBus: %s" --msgstr "" -+msgstr "Не могу да се повежем на системски DBus: %s" - - #: ../src/lib/problem_api_dbus.c:68 - #, c-format - msgid "Can't chown '%s': %s" --msgstr "" -+msgstr "Не могу да chown-ујем '%s': %s" - - #: ../src/lib/problem_api_dbus.c:97 - #, c-format - msgid "Deleting problem directory failed: %s" --msgstr "" -+msgstr "Грешка при брисању директоријума проблема: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" --msgstr "" -+msgstr "Не могу преузети списак проблема од abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не могу да преузмем податке о проблему од abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Не могу испробати да ли елемент постоји преко abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format - msgid "Can't create temporary file '%s'" --msgstr "" -+msgstr "Не могу направити привремену датотеку '%s'" - - #: ../src/lib/ignored_problems.c:250 - #, c-format -@@ -614,12 +710,14 @@ msgid "" - "Can't write to '%s'. Problem '%s' will not be removed from the ignored " - "problems '%s'" - msgstr "" -+"Не могу да упишем у '%s'. Проблем '%s' неће бити уклоњен из занемарених " -+"проблема '%s'" - - #. Something nefarious happened - #: ../src/lib/ignored_problems.c:264 - #, c-format - msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" --msgstr "" -+msgstr "Не могу да преименујем '%s' у '%s'. Грешка при уклањању проблема '%s'" - - #: ../src/plugins/abrt-action-analyze-backtrace.c:41 - msgid "" -@@ -628,6 +726,11 @@ msgid "" - "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" - "and identifies crash function in problem directory DIR" - msgstr "" -+"& [опције] -d DIR\n" -+"\n" -+"Анализира C/C++ стабло позивања, ствара збир понављања, оцену стабла " -+"позивања\n" -+"и идентификује срушену функцију у директоријуму проблема DIR" - - #. - #. * The parser failed. Compute the duphash from the executable -@@ -637,11 +740,11 @@ msgstr "" - #: ../src/plugins/abrt-action-analyze-backtrace.c:90 - #, c-format - msgid "Backtrace parsing failed for %s" --msgstr "" -+msgstr "Неуспешна обрада стабла позивања за %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" --msgstr "" -+msgstr "Срушена нит није пронађена" - - #: ../src/plugins/abrt-action-analyze-c.c:130 - msgid "" -@@ -649,25 +752,28 @@ msgid "" - "\n" - "Calculates and saves UUID of coredump in problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID coredump-а у директоријуму проблема DIR" - - #: ../src/plugins/abrt-action-analyze-core.in:72 - #, c-format - msgid "Analyzing coredump '%s'" --msgstr "" -+msgstr "Анализирам coredump '%s'" - - #: ../src/plugins/abrt-action-analyze-core.in:110 - #, c-format - msgid "Missing build id: %s" --msgstr "" -+msgstr "Недостаје id изградње: %s" - - #: ../src/plugins/abrt-action-analyze-core.in:142 - #, c-format - msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" --msgstr "" -+msgstr "Употреба: %s [-v] [-o OUTFILE] -c COREFILE" - - #: ../src/plugins/abrt-action-analyze-core.in:164 - msgid "COREFILE is not specified" --msgstr "" -+msgstr "COREFILE није назначен" - - #: ../src/plugins/abrt-action-analyze-oops.c:37 - msgid "" -@@ -675,6 +781,9 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH for oops problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID и DUPHASH за директоријум oops проблема DIR" - - #: ../src/plugins/abrt-action-analyze-oops.c:79 - msgid "" -@@ -683,6 +792,11 @@ msgid "" - "your computer. ABRT will not allow you to create a report in a bug tracking " - "system but you can contact kernel maintainers via e-mail." - msgstr "" -+"Стабло развоја не садржи довољно смислених оквира функције да би било " -+"пријављено. Ово је непријатно али не указује обавезно на проблем са вашим " -+"рачунаром. ABRT вам неће дозволити да направите извештај у систему праћења " -+"програмских грешака али можете контактирати програмере језгра преко " -+"електронске поште." - - #: ../src/plugins/abrt-action-analyze-xorg.c:73 - msgid "" -@@ -690,11 +804,14 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH for xorg problem directory DIR" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID и DUPHASH за директоријум xorg проблема DIR" - - #: ../src/plugins/abrt-action-analyze-xorg.c:113 - #, c-format - msgid "Module '%s' was loaded - won't report this crash" --msgstr "" -+msgstr "Модул '%s' је био учитан - нећу пријавити овај крах" - - #: ../src/plugins/abrt-action-analyze-python.c:36 - msgid "" -@@ -702,37 +819,75 @@ msgid "" - "\n" - "Calculates and saves UUID and DUPHASH of python crash dumps" - msgstr "" -+"& [-v] -d DIR\n" -+"\n" -+"Израчунава и чува UUID и DUPHASH за python crash dump-ове" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:52 - msgid "Usage: {0} [-v[v]] [--core=VMCORE]" --msgstr "" -+msgstr "Употреба: {0} [-v[v]] [--core=VMCORE]" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:79 - msgid "File {0} doesn't exist" --msgstr "" -+msgstr "Датотека {0} не постоји" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:82 - msgid "Extracting the oops text from core" --msgstr "" -+msgstr "Извлачим oops текст из језгра" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:87 - msgid "Can't process {0}:\n" - "{1}" --msgstr "" -+msgstr "Не могу да обрадим {0}:\n" -+"{1}" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:95 - msgid "Can't extract the oops message: '{0}'" --msgstr "" -+msgstr "Не могу да извучем oops поруку: '{0}'" - - #: ../src/plugins/abrt-action-analyze-vmcore.in:98 - msgid "Oops text extracted successfully" --msgstr "" -+msgstr "Oops текст успешно извучен" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" -+"Запис језгра указује на пронађене хардверске грешке.\n" -+"Ово највероватније није програмски проблем.\n" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" - - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" -@@ -740,14 +895,18 @@ msgid "" - "\n" - "Analyzes coredump in problem directory DIR, generates and saves backtrace" - msgstr "" -+"& [опције] -d DIR\n" -+"\n" -+"Анализира coredump у директоријуму проблема DIR, ствара и чува стабло " -+"развоја" - - #: ../src/plugins/abrt-action-generate-backtrace.c:56 - msgid "Additional debuginfo directories" --msgstr "" -+msgstr "Додатни debuginfo директоријуми" - - #: ../src/plugins/abrt-action-generate-backtrace.c:57 - msgid "Kill gdb if it runs for more than NUM seconds" --msgstr "" -+msgstr "Убиј gdb ако се извршава дуже од NUM секунди" - - #. Don't be completely silent. gdb run takes a few seconds, - #. * it is useful to let user know it (maybe) worked. -@@ -755,7 +914,7 @@ msgstr "" - #: ../src/plugins/abrt-action-generate-backtrace.c:103 - #, c-format - msgid "Backtrace is generated and saved, %u bytes" --msgstr "" -+msgstr "Стабло развоја је направљено и сачувано, %u бајтова" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 - msgid "" -@@ -763,28 +922,32 @@ msgid "" - "\n" - "Creates coredump-level backtrace from core dump and corresponding binary" - msgstr "" -+"& [-v] [-r] -d DIR\n" -+"\n" -+"Ствара стабло развоја coredump нивоа из core dump-а и одговарајуће бинарне " -+"датотеке" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 - msgid "Do not hash fingerprints" --msgstr "" -+msgstr "Немој правити збир отисака" - - #. Let user know what's going on - #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 - msgid "Generating core_backtrace" --msgstr "" -+msgstr "Правим core_backtrace" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 - msgid "Error: GDB did not return any data" --msgstr "" -+msgstr "Грешка: GDB није вратио никакве податке" - - #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 - #, c-format - msgid "Error: %s" --msgstr "" -+msgstr "Грешка: %s" - - #: ../src/plugins/abrt-action-install-debuginfo.in:51 - msgid "Exiting on user command" --msgstr "" -+msgstr "Излазим по команди корисника" - - #: ../src/plugins/abrt-action-install-debuginfo.in:89 - #, c-format -@@ -812,48 +975,104 @@ msgid "" - " --repo Pattern to use when searching for repos.\n" - " Default: *debug*\n" - msgstr "" -+"Употреба: %s [-vy] [--ids=BUILD_IDS_FILE] [--pkgmgr=(yum|dnf)]\n" -+" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " -+"[--size_mb=SIZE]\n" -+" [-e, --exact=PATH[:PATH]...]\n" -+"\n" -+"Инсталира debuginfos за све build-id-ове наведене у BUILD_IDS_FILE\n" -+"у CACHEDIR, користећи TMPDIR као привремени простор за постављање.\n" -+"Старе датотеке у CACHEDIR се бришу све док не постање мањи од SIZE.\n" -+"\n" -+"Reads configuration from /etc/abrt/plugins/CCpp.conf\n" -+"\n" -+" -v Буди брбљив\n" -+" -y Без интеракције, претпостави 'Да' за сва питања\n" -+" --ids Подразумевано: build_ids\n" -+" --tmpdir Подразумевано: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" -+"RANDOM_SUFFIX\n" -+" --cache Подразумевано: /var/cache/abrt-di\n" -+" --size_mb Подразумевано: 4096\n" -+" --pkgmgr Подразумевано: PackageManager из CCpp.conf или 'dnf'\n" -+" -e,--exact Преузми само назначене датотеке\n" -+" --repo Шаблон који се користи када се траже ризнице.\n" -+" Подразумевано: *debug*\n" - - #: ../src/plugins/abrt-action-install-debuginfo.in:175 - msgid "Can't open {0}: {1}" --msgstr "" -+msgstr "Не могу да отворим {0}: {1}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:212 - msgid "Coredump references {0} debuginfo files, {1} of them are not installed" --msgstr "" -+msgstr "Coredump помиње {0} debuginfo датотека, {1} од њих није инсталирано" - - #: ../src/plugins/abrt-action-install-debuginfo.in:215 - msgid "{0} of debuginfo files are not installed" --msgstr "" -+msgstr "{0} debuginfo датотека није инсталирано" - - #: ../src/plugins/abrt-action-install-debuginfo.in:234 - #, c-format - msgid "Invalid configuration of CCpp addon, unsupported Package manager: '%s'" --msgstr "" -+msgstr "Неисправно подешавање CCpp додатка, неподржан управник пакетима: '%s'" - - #: ../src/plugins/abrt-action-install-debuginfo.in:249 - msgid "Missing requested file: {0}" --msgstr "" -+msgstr "Недостаје захтевана датотека: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:254 - msgid "Missing debuginfo file: {0}" --msgstr "" -+msgstr "Недостаје debuginfo датотека: {0}" - - #: ../src/plugins/abrt-action-install-debuginfo.in:257 - msgid "All debuginfo files are available" -+msgstr "Све debuginfo датотеке су доступне" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" -+"Да ли је у реду послати coredump? (Може садржати осетљиве податке). Ако је " -+"ваш одговор 'Не', траг стека ће бити створен локално. (Можда ће преузети " -+"огромну количину података)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." - msgstr "" -+"Да ли желите створити траг стека локално? (Можда ће преузети огромну " -+"количину података али извештај не може наставити без трага стека)." - - #: ../src/plugins/abrt-action-trim-files.c:222 - msgid "" -@@ -863,172 +1082,180 @@ msgid "" - "SIZE.\n" - "FILEs are preserved (never deleted)." - msgstr "" -+"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" -+"\n" -+"Брише проблематичне директоријуме (-d) или датотеке (-f) у DIR-екторијумима " -+"све док не буду мањи од SIZE.\n" -+"FILE-ови су очувани (никад обрисани)." - - #: ../src/plugins/abrt-action-trim-files.c:236 - msgid "Delete whole problem directories" --msgstr "" -+msgstr "Обриши све директоријуме проблема" - - #: ../src/plugins/abrt-action-trim-files.c:237 - msgid "Delete files inside this directory" --msgstr "" -+msgstr "Обриши датотеке унутар овог директоријума" - - #: ../src/plugins/abrt-action-trim-files.c:238 - msgid "Preserve this directory" --msgstr "" -+msgstr "Очувај овај директоријум" - - #: ../src/plugins/abrt-action-ureport:59 - #, c-format - msgid "Unable to start '%s', error message was: '%s'" --msgstr "" -+msgstr "Не могу да покренем '%s', порука о грешки је: '%s'" - - #: ../src/plugins/abrt-action-ureport:70 - #, c-format - msgid "Not a number in file '%s'" --msgstr "" -+msgstr "Није број у датотеци '%s'" - - #: ../src/plugins/abrt-action-ureport:99 - #, c-format - msgid "Usage: %s [-v]" --msgstr "" -+msgstr "Употреба: %s [-v]" - - #: ../src/plugins/abrt-action-ureport:120 - msgid "Unable to get current working directory as it was probably deleted" - msgstr "" -+"Не могу да добијем тренутни радни директоријум јер је вероватно обрисан" - - #: ../src/plugins/abrt-action-ureport:148 - msgid "A bug was already filed about this problem:" --msgstr "" -+msgstr "Већ је пријављена програмска грешка у вези са овим проблемом:" - - #: ../src/plugins/abrt-action-ureport:158 - msgid "uReport was already sent, not sending it again" --msgstr "" -+msgstr "uReport је већ послат, не шаљем га поново" - - #: ../src/plugins/abrt-action-ureport:179 - msgid "Adding you to CC List of the existing bugzilla bug" --msgstr "" -+msgstr "Додајем те на CC списак тренутне програмске грешке на bugzilla-и" - - #: ../src/plugins/abrt-action-ureport:193 - #, c-format - msgid "reporter-ureport failed with exit code %d" --msgstr "" -+msgstr "reporter-ureport неуспешан са излазним кодом %d" - - #: ../src/plugins/abrt-gdb-exploitable:529 - msgid "Signal sent by userspace code" --msgstr "" -+msgstr "Сигнал послат од стране кода из корисничког простора" - - #: ../src/plugins/abrt-gdb-exploitable:533 - msgid "Signal sent by timer/IO/async event" --msgstr "" -+msgstr "Сигнал послат од стране timer/IO/async догађаја" - - #: ../src/plugins/abrt-gdb-exploitable:541 - msgid "Signal has siginfo.si_code = SI_USER" --msgstr "" -+msgstr "Сигнал има siginfo.si_code = SI_USER" - - #: ../src/plugins/abrt-gdb-exploitable:544 - msgid "Signal due to write to closed pipe" --msgstr "" -+msgstr "Сигнал приспео за упис на затворен канал" - - #: ../src/plugins/abrt-gdb-exploitable:550 - #: ../src/plugins/abrt-gdb-exploitable:575 - msgid "Signal sent by keyboard" --msgstr "" -+msgstr "Сигнал послат од стране тастатуре" - - #: ../src/plugins/abrt-gdb-exploitable:554 - #: ../src/plugins/abrt-gdb-exploitable:579 - msgid "Job control signal sent by kernel" --msgstr "" -+msgstr "Сигнал контроле послова послат од кернела" - - #: ../src/plugins/abrt-gdb-exploitable:558 - #: ../src/plugins/abrt-gdb-exploitable:587 - msgid "Signal sent by window resize" --msgstr "" -+msgstr "Сигнал послат променом величине прозора" - - #: ../src/plugins/abrt-gdb-exploitable:562 - #: ../src/plugins/abrt-gdb-exploitable:591 - msgid "Signal sent by alarm(N) expiration" --msgstr "" -+msgstr "Сигнал послат истицањем аларма(N)" - - #: ../src/plugins/abrt-gdb-exploitable:583 - msgid "Signal due to write to broken pipe" --msgstr "" -+msgstr "Сигнал приспео за упис на покварен канал" - - #: ../src/plugins/abrt-gdb-exploitable:607 - msgid "ABRT signal (abort() was called?)" --msgstr "" -+msgstr "ABRT сигнал (abort() је позван?)" - - #: ../src/plugins/abrt-gdb-exploitable:616 - msgid "XCPU signal (over CPU time limit)" --msgstr "" -+msgstr "XCPU сигнал (преко CPU временског ограничења)" - - #: ../src/plugins/abrt-gdb-exploitable:620 - msgid "XFSZ signal (over file size limit)" --msgstr "" -+msgstr "XFSZ сигнал (преко ограничења величине датотеке)" - - #: ../src/plugins/abrt-gdb-exploitable:624 - msgid "TRAP signal (can be a bug in a debugger/tracer)" --msgstr "" -+msgstr "TRAP сигнал (може бити програмска грешка у октлањачу грешака/трагачу)" - - #: ../src/plugins/abrt-gdb-exploitable:628 - msgid "SYS signal (unknown syscall was called?)" --msgstr "" -+msgstr "SYS сигнал (непознат системски позив је позван?)" - - #: ../src/plugins/abrt-gdb-exploitable:633 - msgid "Arithmetic exception" --msgstr "" -+msgstr "Аритметичка грешка" - - #: ../src/plugins/abrt-gdb-exploitable:637 - msgid "Division by zero" --msgstr "" -+msgstr "Дељење нулом" - - #: ../src/plugins/abrt-gdb-exploitable:641 - msgid "Illegal instruction (jump to a random address?)" --msgstr "" -+msgstr "Неправилна инструкција (скок на насумичну адресу?)" - - #: ../src/plugins/abrt-gdb-exploitable:647 - msgid "Non-crash related signal" --msgstr "" -+msgstr "Сигнал који није узрокован отказивањем" - - #: ../src/plugins/abrt-gdb-exploitable:652 - msgid "Stack overflow" --msgstr "" -+msgstr "Преливање стека" - - #: ../src/plugins/abrt-gdb-exploitable:656 - msgid "Write to an invalid address" --msgstr "" -+msgstr "Упис на неисправну адресу" - - #: ../src/plugins/abrt-gdb-exploitable:660 - msgid "Subroutine return to an invalid address (corrupted stack?)" --msgstr "" -+msgstr "Подрутина се вратила на неисправну адресу (оштећен стек?)" - - #: ../src/plugins/abrt-gdb-exploitable:666 - #: ../src/plugins/abrt-gdb-exploitable:670 - msgid "Jump to an invalid address" --msgstr "" -+msgstr "Скок на неисправну адресу" - - #: ../src/plugins/abrt-gdb-exploitable:674 - msgid "" - "Access past the end of mapped file, invalid address, unaligned access, etc" - msgstr "" -+"Приступ након завршетка мапиране датотеке, неисправна адреса, приступ ван " -+"поравнања, итд" - - #: ../src/plugins/abrt-gdb-exploitable:693 - msgid "Can't get signal no and do exploitability analysis\n" --msgstr "" -+msgstr "Не могу да примим сигнал не и урадим анализу злоупотребе\n" - - #: ../src/plugins/abrt-gdb-exploitable:706 - msgid "Likely crash reason: " --msgstr "" -+msgstr "Вероватни узрок отказивања:" - - #: ../src/plugins/abrt-gdb-exploitable:707 - msgid "Exploitable rating (0-9 scale): " --msgstr "" -+msgstr "Рејтинг злоупотребе (скала 0-9):" - - #: ../src/plugins/abrt-gdb-exploitable:709 - msgid "Current instruction: " --msgstr "" -+msgstr "Тренутна инструкција:" - - #: ../src/plugins/abrt-gdb-exploitable:711 - msgid "Exploitability analysis came up empty\n" --msgstr "" -+msgstr "Анализа злоупотребе није ништа пронашла\n" - - #: ../src/plugins/abrt-watch-log.c:142 - msgid "" -@@ -1036,10 +1263,13 @@ msgid "" - "\n" - "Watch log file FILE, run PROG when it grows or is replaced" - msgstr "" -+"& [-vs] [-F STR]... FILE PROG [ARGS]\n" -+"\n" -+"Прати датотеку записа FILE, изврши PROG када порасте или буде замењена" - - #: ../src/plugins/abrt-watch-log.c:154 - msgid "Don't run PROG if STRs aren't found" --msgstr "" -+msgstr "Немој покренути PROG ако STR-ови нису пронађени" - - #: ../src/plugins/abrt-dump-oops.c:77 - msgid "" -@@ -1047,11 +1277,14 @@ msgid "" - "\n" - "Extract oops from FILE (or standard input)" - msgstr "" -+"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" -+"\n" -+"Извуци oops из FILE (или стандардног улаза)" - - #: ../src/plugins/abrt-dump-oops.c:98 - #: ../src/plugins/abrt-dump-journal-oops.c:220 - msgid "Print found oopses on standard output" --msgstr "" -+msgstr "Испиши пронађене oops-еве на стандардни излаз" - - #. oopses don't contain any sensitive info, and even - #. * the old koops app was showing the oopses to all users -@@ -1059,62 +1292,70 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:102 - #: ../src/plugins/abrt-dump-journal-oops.c:224 - msgid "Create new problem directory in DIR for every oops found" --msgstr "" -+msgstr "Направи нови директоријум проблема у DIR за сваки пронађени oops" - - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" --msgstr "" -+msgstr "Исто као -d DumpLocation, DumpLocation је назначена у abrt.conf" - - #: ../src/plugins/abrt-dump-oops.c:104 - msgid "Save the extracted information in PROBLEM" --msgstr "" -+msgstr "Сачувај извучене информације у PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" --msgstr "" -+msgstr "Учини директоријум проблема читљивим за свет" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" --msgstr "" -+msgstr "Успори стварање директоријума проблема на један по секунди" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" --msgstr "" -+msgstr "Испиши текст(ове) претраге на стандардни излаз и изађи" - - #: ../src/plugins/abrt-dump-oops.c:127 - #: ../src/plugins/abrt-dump-journal-oops.c:128 - msgid "Failed to compile regex" -+msgstr "Неуспешна изградња регуларног израза" -+ -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 - msgid "Failed to obtain all required information from journald" --msgstr "" -+msgstr "Неуспешно преузимање свих неопходних информација од journald-а" - - #. We don't want to update the counter here. - #: ../src/plugins/abrt-dump-journal-core.c:401 - #, c-format - msgid "Not saving repeating crash after %ds (limit is %ds)" --msgstr "" -+msgstr "Не чувам поновне крахове након %ds (граница је %ds)" - - #: ../src/plugins/abrt-dump-journal-core.c:407 - msgid "Failed to save detect problem data in abrt database" --msgstr "" -+msgstr "Неуспешно чување података откривеног проблема у abrt бази података" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" --msgstr "" -+msgstr "Неуспешна иницијализација systemd-journal надзора" - - #: ../src/plugins/abrt-dump-journal-core.c:447 - msgid "" -@@ -1129,62 +1370,80 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsf] [-e]/[-c CURSOR] [-t INT]/[-T] [-d DIR]/[-D]\n" -+"\n" -+"Извуци coredump-ове из systemd-journal\n" -+"\n" -+"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" -+"\n" -+"-e је корисно само за -f зато што праћење дневника почиње читањем \n" -+"целог дневника ако последња прегледана позиција није доступна.\n" -+"\n" -+"Последња прегледана позиција је сачувана у " - - #: ../src/plugins/abrt-dump-journal-core.c:478 - msgid "Create new problem directory in DIR for every coredump" --msgstr "" -+msgstr "Направи нови директоријум проблема у DIR за сваки coredump" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" --msgstr "" -+msgstr "Почни читање systemd-journal од позиције CURSOR" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" --msgstr "" -+msgstr "Почни читање systemd-journal од краја" - - #: ../src/plugins/abrt-dump-journal-core.c:482 - msgid "Throttle problem directory creation to 1 per INT second" --msgstr "" -+msgstr "Успори стварање директоријума проблема на један по INT секунди" - - #: ../src/plugins/abrt-dump-journal-core.c:483 - msgid "Same as -t INT, INT is specified in plugins/CCpp.conf" --msgstr "" -+msgstr "Исто као -t INT, INT је назначен у plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" --msgstr "" -+msgstr "Прати systemd-journal од последње виђене позиције (ако је доступна)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" --msgstr "" -+msgstr "Потребно је да назначите или -c CURSOR или -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" --msgstr "" -+msgstr "Не могу да отворим systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:544 - msgid "Cannot filter systemd-journal to systemd-coredump data only" --msgstr "" -+msgstr "Не могу да филтрирам systemd-journal на само systemd-coredump податке" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" --msgstr "" -+msgstr "Не могу да пређем на крај дневника" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" --msgstr "" -+msgstr "Неуспешно постављање systemd-journal курсора '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." --msgstr "" -+msgstr "Не могу да прочитам податке дневника." - - #: ../src/plugins/abrt-dump-journal-oops.c:186 - msgid "" -@@ -1199,97 +1458,171 @@ msgid "" - "\n" - "The last seen position is saved in " - msgstr "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Извуци oops из systemd-journal\n" -+"\n" -+"опције -c и -e су у конфликту јер обе назначавају прву прочитану поруку.\n" -+"\n" -+"-e је корисно само за -f зато што праћење дневника почиње читањем \n" -+"целог дневника ако последња прегледана позиција није доступна.\n" -+"\n" -+"Последња прегледана позиција је сачувана у " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" --msgstr "" -+msgstr "Прочитај датотеке дневника са свих машина" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Прочитај све датотеке дневника из директоријума на PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Не могу да иницијализујем systemd-journal у директоријуму '%s'" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" --msgstr "" -+msgstr "Не могу да филтрирам systemd-journal на само податке о језгру" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" -+msgstr "Неуспешно започињање прегледа од курсора '%s'" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" -+"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" -+"\n" -+"Извуци Xorg крах из FILE (или стандардног улаза)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" --msgstr "" -+msgstr "Испиши пронађене податке о краху на стандардни излаз" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" -+msgstr "Направи директоријум проблема у DIR за сваки пронађени крах" -+ -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" --msgstr "" -+msgstr "Не могу да снимим позицију прегледача дневника" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" --msgstr "" -+msgstr "Не могу да снимим позицију прегледача дневника: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" --msgstr "" -+msgstr "Не враћам позицију прегледања дневника: датотека '%s' не постоји" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" --msgstr "" -+msgstr "Не могу да вратим позицију прегледања дневника из датотеке '%s'" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" -+"Не могу да вратим позицију прегледања дневника: путања '%s' није редовна " -+"датотека" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" -+"Не могу да вратим позицију прегледања дневника: датотека '%s' превазилази " -+"%dB ограничење величине" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" --msgstr "" -+msgstr "Не могу да вратим позицију прегледања дневника: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -+"Не могу да вратим позицију прегледања дневника: не могу прочитати целу " -+"датотеку '%s'" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" --msgstr "" -+msgstr "Неуспешно померање дневника на курсор из датотеке '%s'" - - #: ../src/plugins/abrt-retrace-client.c:70 - msgid "" - "Retrace server can not be used, because the crash is too large. Try local " - "retracing." - msgstr "" -+"Сервер за поновни траг не може бити употревљен, зато што је крах превелик. " -+"Покушајте локално поновно трагање." - - #. Hopefully, by this time child emitted more meaningful - #. * error message. But just in case it didn't: -@@ -1298,13 +1631,13 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:182 - #: ../src/plugins/abrt-retrace-client.c:186 - msgid "Can't create temporary file in " --msgstr "" -+msgstr "Не могу направити привремену датотеку у " - - #: ../src/plugins/abrt-retrace-client.c:131 - #: ../src/plugins/abrt-retrace-client.c:168 - #, c-format - msgid "Can't execute '%s'" --msgstr "" -+msgstr "Не могу извршити '%s'" - - #: ../src/plugins/abrt-retrace-client.c:211 - #: ../src/plugins/abrt-retrace-client.c:398 -@@ -1312,7 +1645,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:842 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d" --msgstr "" -+msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d" - - #: ../src/plugins/abrt-retrace-client.c:223 - #: ../src/plugins/abrt-retrace-client.c:412 -@@ -1324,7 +1657,8 @@ msgstr "" - #, c-format - msgid "Unexpected HTTP response from server: %d\n" - "%s" --msgstr "" -+msgstr "Неочекивани HTTP одговор од сервера: %d\n" -+"%s" - - #: ../src/plugins/abrt-retrace-client.c:232 - #: ../src/plugins/abrt-retrace-client.c:755 -@@ -1333,7 +1667,7 @@ msgstr "" - #: ../src/plugins/abrt-retrace-client.c:992 - #: ../src/plugins/abrt-retrace-client.c:1062 - msgid "Invalid response from server: missing HTTP message body." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје HTTP тело поруке." - - #: ../src/plugins/abrt-retrace-client.c:424 - #, c-format -@@ -1341,24 +1675,27 @@ msgid "" - "Retrace server is unable to process package '%s.%s'.\n" - "Is it a part of official '%s' repositories?" - msgstr "" -+"Сервер поновног трага не успева да обради пакет '%s.%s.'\n" -+"Да ли је то део званичних '%s' ризница?" - - #: ../src/plugins/abrt-retrace-client.c:444 - msgid "Querying server settings" --msgstr "" -+msgstr "Захтевам поставке сервера" - - #: ../src/plugins/abrt-retrace-client.c:452 - msgid "The server is fully occupied. Try again later." --msgstr "" -+msgstr "Сервер је потпуно заузет. Покушајте поново касније." - - #: ../src/plugins/abrt-retrace-client.c:453 - msgid "The server denied your request." --msgstr "" -+msgstr "Сервер је одбио ваш захтев." - - #: ../src/plugins/abrt-retrace-client.c:484 - #: ../src/plugins/abrt-retrace-client.c:500 - #, c-format - msgid "'%s' must be a regular file in order to use Retrace server." - msgstr "" -+"'%s' мора бити редовна датотека да бисте користили сервер за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:520 - #, c-format -@@ -1366,27 +1703,29 @@ msgid "" - "The size of your crash is %s, but the retrace server only accepts crashes " - "smaller or equal to %s." - msgstr "" -+"Величина вашег краха је %s, али сервер за поновни траг прихвата само крахове " -+"мање или једнаке са %s." - - #: ../src/plugins/abrt-retrace-client.c:540 - msgid "The server does not support xz-compressed tarballs." --msgstr "" -+msgstr "Сервер не подржава xz-компресоване tarball-ове." - - #: ../src/plugins/abrt-retrace-client.c:577 - #, c-format - msgid "The release '%s' is not supported by the Retrace server." --msgstr "" -+msgstr "Издање '%s' није подржано од стране сервера за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:581 - msgid "The server is not able to handle your request." --msgstr "" -+msgstr "Сервер не може да обради ваш захтев." - - #: ../src/plugins/abrt-retrace-client.c:600 - msgid "Unknown package sent to Retrace server." --msgstr "" -+msgstr "Непознат пакет послат серверу за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:609 - msgid "Preparing an archive to upload" --msgstr "" -+msgstr "Припремање архиве за слање" - - #: ../src/plugins/abrt-retrace-client.c:628 - #, c-format -@@ -1394,187 +1733,204 @@ msgid "" - "The size of your archive is %s, but the retrace server only accepts archives " - "smaller or equal to %s." - msgstr "" -+"Величина ваше архиве је %s, али сервер за поновни траг прихвата само архиве " -+"мање или једнаке са %s." - - #: ../src/plugins/abrt-retrace-client.c:640 - #, c-format - msgid "You are going to upload %s. Continue?" --msgstr "" -+msgstr "Послаћете %s. Наставити?" - - #: ../src/plugins/abrt-retrace-client.c:649 - msgid "Cancelled by user" --msgstr "" -+msgstr "Отказано од стране корисника" - - #: ../src/plugins/abrt-retrace-client.c:683 - #, c-format - msgid "Uploading %s\n" --msgstr "" -+msgstr "Шаљем %s\n" - - #: ../src/plugins/abrt-retrace-client.c:709 - #, c-format - msgid "Uploading %d%%\n" --msgstr "" -+msgstr "Шаљем %d%%\n" - - #: ../src/plugins/abrt-retrace-client.c:721 - msgid "Failed to read from a pipe" --msgstr "" -+msgstr "Неуспешно читање са тунела" - - #: ../src/plugins/abrt-retrace-client.c:734 - #, c-format - msgid "Failed to send data: NSS error %d (%s): %s" --msgstr "" -+msgstr "Неуспешно слање података: NSS грешка %d (%s): %s" - - #: ../src/plugins/abrt-retrace-client.c:745 - msgid "Upload successful" --msgstr "" -+msgstr "Успешно слање" - - #: ../src/plugins/abrt-retrace-client.c:767 - msgid "" - "Your problem directory is corrupted and can not be processed by the Retrace " - "server." - msgstr "" -+"Ваш директоријум проблема је оштећен и не може бити обрађен од стране " -+"сервера за поновни траг." - - #: ../src/plugins/abrt-retrace-client.c:769 - msgid "" - "The archive contains malicious files (such as symlinks) and thus can not be " - "processed." - msgstr "" -+"Архива садржи злонамерне датотеке (као што су симболички линкови) те не може " -+"бити обрађена." - - #: ../src/plugins/abrt-retrace-client.c:782 - msgid "Invalid response from server: missing X-Task-Id." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје X-Task-Id." - - #: ../src/plugins/abrt-retrace-client.c:788 - msgid "Invalid response from server: missing X-Task-Password." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје X-Task-Password." - - #: ../src/plugins/abrt-retrace-client.c:795 - msgid "Retrace job started" --msgstr "" -+msgstr "Започет посао поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:808 - #, c-format - msgid "Task Id: %s\n" - "Task Password: %s\n" --msgstr "" -+msgstr "Id задатка: %s\n" -+"Лозинка задатка: %s\n" - - #: ../src/plugins/abrt-retrace-client.c:866 - msgid "Invalid response from server: missing X-Task-Status." --msgstr "" -+msgstr "Неисправан одговор од сервера: недостаје X-Task-Status." - - #: ../src/plugins/abrt-retrace-client.c:878 - #, c-format - msgid "Task Status: %s\n" - "%s\n" --msgstr "" -+msgstr "Стање задатка: %s\n" -+"%s\n" - - #: ../src/plugins/abrt-retrace-client.c:909 - #: ../src/plugins/abrt-retrace-client.c:983 - #: ../src/plugins/abrt-retrace-client.c:1053 - #, c-format - msgid "Failed to send HTTP header of length %d: NSS error %d." --msgstr "" -+msgstr "Неуспешно слање HTTP заглавља дужине %d: NSS грешка %d." - - #: ../src/plugins/abrt-retrace-client.c:1170 - msgid "" - "Retrace failed. Try again later and if the problem persists report this " - "issue please." - msgstr "" -+"Неуспешан поновни траг. Покушајте поново касније и ако и даље постоји " -+"проблем молим да га пријавите." - - #: ../src/plugins/abrt-retrace-client.c:1217 - msgid "log to syslog" --msgstr "" -+msgstr "записник у syslog" - - #: ../src/plugins/abrt-retrace-client.c:1219 - msgid "allow insecure connection to retrace server" --msgstr "" -+msgstr "дозволи несигурне везе до сервера поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:1221 - msgid "" - "do not check whether retrace server is able to process given package before " - "uploading the archive" - msgstr "" -+"немој проверавати да ли је сервер поновног трага способан да обради дати " -+"пакет пре но што се пошаље архива" - - #: ../src/plugins/abrt-retrace-client.c:1224 - msgid "retrace server URL" --msgstr "" -+msgstr "URL сервера поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:1226 - msgid "retrace server port" --msgstr "" -+msgstr "порт сервера поновног трага" - - #: ../src/plugins/abrt-retrace-client.c:1228 - msgid "(debug) show received HTTP headers" --msgstr "" -+msgstr "(откривање програмских грешака) прикажи примљена HTTP заглавља" - - #: ../src/plugins/abrt-retrace-client.c:1229 - msgid "For create and batch operations" --msgstr "" -+msgstr "За стварање и обједињене операције" - - #: ../src/plugins/abrt-retrace-client.c:1231 - msgid "read data from ABRT problem directory" --msgstr "" -+msgstr "читај податке из ABRT директоријума проблема" - - #: ../src/plugins/abrt-retrace-client.c:1233 - msgid "read data from coredump" --msgstr "" -+msgstr "читај податке из coredump-а" - - #: ../src/plugins/abrt-retrace-client.c:1235 - msgid "Delay for polling operations" --msgstr "" -+msgstr "Пауза за операције упита" - - #: ../src/plugins/abrt-retrace-client.c:1237 - msgid "(debug) do not delete temporary archive created from dump dir in " - msgstr "" -+"(отклањање програмских грешака) немој брисати привремене архиве створене из " -+"директоријума излаза у " - - #: ../src/plugins/abrt-retrace-client.c:1239 - msgid "For status, backtrace, and log operations" --msgstr "" -+msgstr "За стање, стабло позивања и запис операција" - - #: ../src/plugins/abrt-retrace-client.c:1241 - msgid "id of your task on server" --msgstr "" -+msgstr "id вашег задатка на серверу" - - #: ../src/plugins/abrt-retrace-client.c:1243 - msgid "password of your task on server" --msgstr "" -+msgstr "лозинка вашег задатка на серверу" - - #: ../src/plugins/abrt-retrace-client.c:1247 - msgid "" - "abrt-retrace-client [options]\n" - "Operations: create/status/backtrace/log/batch/exploitable" - msgstr "" -+"abrt-retrace-client [опције]\n" -+"Операције: create/status/backtrace/log/batch/exploitable" - - #: ../src/plugins/abrt-retrace-client.c:1292 - #: ../src/plugins/abrt-retrace-client.c:1298 - msgid "Either problem directory or coredump is needed." --msgstr "" -+msgstr "Потребан је или директоријум проблема или coredump." - - #: ../src/plugins/abrt-retrace-client.c:1304 - #: ../src/plugins/abrt-retrace-client.c:1312 - #: ../src/plugins/abrt-retrace-client.c:1320 - #: ../src/plugins/abrt-retrace-client.c:1328 - msgid "Task id is needed." --msgstr "" -+msgstr "Id задатка је неопходан." - - #: ../src/plugins/abrt-retrace-client.c:1306 - #: ../src/plugins/abrt-retrace-client.c:1314 - #: ../src/plugins/abrt-retrace-client.c:1322 - #: ../src/plugins/abrt-retrace-client.c:1330 - msgid "Task password is needed." --msgstr "" -+msgstr "Лозинка задатка је неопходна." - - #: ../src/plugins/abrt-retrace-client.c:1334 - #, c-format - msgid "Unknown operation: %s." --msgstr "" -+msgstr "Непозната операција: %s." - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 - msgid "Local GNU Debugger" --msgstr "" -+msgstr "Локални GNU програм за отклањање програмских грешака" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 - msgid "Download debuginfo packages and generate backtrace locally using GDB" - msgstr "" -+"Преузми debuginfo пакете и створи стабло позивања локално користећи GDB" - - #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 - msgid "" -@@ -1582,10 +1938,13 @@ msgid "" - "and take up disk space. However, unlike RetraceServer, doesn't send coredump " - "to remote machines." - msgstr "" -+"Потребно је преузети debuginfo пакете, што може захтевати значајан период " -+"времена, и заузимати простор на диску. Међутим, за разлику од RetraceServer-" -+"а, не шаље coredump на удаљене машине." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 - msgid "Send core dump to remote retrace server for analysis" --msgstr "" -+msgstr "Пошаљи coredump на удаљени сервер за поновни траг на анализу" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 - msgid "" -@@ -1595,22 +1954,27 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" -+"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Предности: " -+"нема потребе за преузимањем debuginfo-а. База података debuginfo-а сервера " -+"за поновни траг је комплетнија. Сервер за поновни траг може створити боља " -+"стабла позивања. Мане: coredump који шаљете садржи све податке о срушеном " -+"програму, укључујући и ваше приватне податке, ако их има." - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 - msgid "Retrace server URL" --msgstr "" -+msgstr "URL сервера поновног трага" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 - msgid "Address of the retrace server" --msgstr "" -+msgstr "Адреса сервера поновног трага" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 - msgid "Insecure" --msgstr "" -+msgstr "Несигурно" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 - msgid "Whether or not to use insecure connection" --msgstr "" -+msgstr "Да ли да користи несигурну везу или не" - - #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 - msgid "" -@@ -1618,227 +1982,244 @@ msgid "" - "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " - ">(warning)</a>" - msgstr "" -+"Напиши \"insecure\" да дозволите несигурну везу <a href=\"https://" -+"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " -+">(warning)</a>" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:1 - msgid "Collect .xsession-errors" --msgstr "" -+msgstr "Скупи .xsession-errors" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:2 - msgid "Save relevant lines from ~/.xsession-errors file" --msgstr "" -+msgstr "Сачувај значајне линије из ~/.xsession-errors датотеке" - - #: ../src/plugins/collect_xsession_errors.xml.in.h:3 - msgid "" - "Scans through ~/.xsession-errors file and saves those lines which contain " - "executable's name. The result is saved as 'xsession_errors' element." - msgstr "" -+"Скенира кроз ~/.xsession-errors датотеку и снима оне линије које садрже име " -+"извршне датотеке. Резултат је сачуван као 'xsession_errors' елемент." - - #: ../src/plugins/https-utils.c:62 - msgid "An error occurred on the server side." --msgstr "" -+msgstr "Догодила се грешка са серверске стране." - - #: ../src/plugins/https-utils.c:65 - #, c-format - msgid "A server-side error occurred on '%s'" --msgstr "" -+msgstr "На серверској страни се догодила грешка на '%s'" - - #: ../src/plugins/https-utils.c:74 - msgid "An error occurred while connecting to the server" --msgstr "" -+msgstr "Догодила се грешка при повезивању на сервер" - - #: ../src/plugins/https-utils.c:77 - #, c-format - msgid "An error occurred while connecting to '%s'" --msgstr "" -+msgstr "Грешка се догодила при повезивању на '%s'" - - #: ../src/plugins/https-utils.c:97 - #, c-format - msgid "Issuer certificate is invalid: '%s'." --msgstr "" -+msgstr "Издавач сертификата није исправан: '%s'." - - #: ../src/plugins/https-utils.c:100 - #, c-format - msgid "Certificate is signed by an untrusted issuer: '%s'." --msgstr "" -+msgstr "Сертификат је потписан од издавача који није поуздан: '%s'." - - #: ../src/plugins/https-utils.c:103 - #, c-format - msgid "Certificate subject name '%s' does not match target host name '%s'." - msgstr "" -+"Име наслова сертификата '%s' се не подудара са циљним именом домаћина '%s'." - - #: ../src/plugins/https-utils.c:107 - msgid "Remote certificate has expired." --msgstr "" -+msgstr "Удаљени сертификат је истекао." - - #: ../src/plugins/https-utils.c:110 - #, c-format - msgid "Certificate issuer is not recognized: '%s'." --msgstr "" -+msgstr "Издавач сертификата није препознат: '%s'." - - #: ../src/plugins/https-utils.c:113 - #, c-format - msgid "Bad certificate received. Subject '%s', issuer '%s'." --msgstr "" -+msgstr "Примљен лош сертификат. Наслов '%s', издавач '%s'." - - #: ../src/plugins/https-utils.c:149 - #, c-format - msgid "Failed to get slot 'PEM Token #0': %d." --msgstr "" -+msgstr "Грешка при примању слота 'PEM Token #0': %d." - - #: ../src/plugins/https-utils.c:182 - #, c-format - msgid "Can't resolve host name '%s'. NSS error %d." --msgstr "" -+msgstr "Не могу да разрешим име домаћина '%s'. NSS грешка %d." - - #. Host exists, but has neither IPv4 nor IPv6?? - #: ../src/plugins/https-utils.c:203 - #, c-format - msgid "Can't resolve host name '%s'." --msgstr "" -+msgstr "Не могу да разрешим име домаћина '%s'." - - #: ../src/plugins/https-utils.c:210 - msgid "Failed to set socket blocking mode." --msgstr "" -+msgstr "Неуспешно постављање блокирајућег режима." - - #: ../src/plugins/https-utils.c:213 - msgid "Failed to wrap TCP socket by SSL." --msgstr "" -+msgstr "Неуспешно умотавање TCP прикључка SSL-ом." - - #: ../src/plugins/https-utils.c:215 - msgid "Failed to enable client handshake to SSL socket." --msgstr "" -+msgstr "Неуспешно омогућавање клијентског руковања са SSL прикључком." - - #: ../src/plugins/https-utils.c:220 - msgid "Failed to enable SSL3." --msgstr "" -+msgstr "Неуспешно омогућавање SSL3." - - #: ../src/plugins/https-utils.c:222 - msgid "Failed to enable TLS." --msgstr "" -+msgstr "Неуспешно омогућавање TLS-а." - - #: ../src/plugins/https-utils.c:224 - msgid "Failed to set URL to SSL socket." --msgstr "" -+msgstr "Неуспешно постављање URL-а на SSL прикључак." - - #: ../src/plugins/https-utils.c:233 - #, c-format - msgid "Can't connect to '%s'" --msgstr "" -+msgstr "Не могу да се повежем на '%s'" - - #: ../src/plugins/https-utils.c:241 - msgid "Failed to set certificate hook." --msgstr "" -+msgstr "Неуспешно постављање прикључка сертификата." - - #: ../src/plugins/https-utils.c:247 - msgid "Failed to set handshake callback." --msgstr "" -+msgstr "Неуспешно постављање руковања повратног позива." - - #: ../src/plugins/https-utils.c:251 - msgid "Failed to reset handshake." --msgstr "" -+msgstr "Неуспешно поновно постављање руковања." - - #: ../src/plugins/https-utils.c:258 - #, c-format - msgid "Failed to complete SSL handshake: NSS error %d." --msgstr "" -+msgstr "Неуспешно завршавање SSL руковања: NSS грешка %d." - - #: ../src/plugins/https-utils.c:267 - msgid "Failed to close SSL socket." --msgstr "" -+msgstr "Неуспешно затварање SSL прикључка." - - #: ../src/plugins/https-utils.c:332 - #, c-format - msgid "Malformed HTTP response header: '%s'" --msgstr "" -+msgstr "Лоше HTTP заглавље одговора : '%s'" - - #: ../src/plugins/https-utils.c:369 - #, c-format - msgid "Receiving of data failed: NSS error %d." --msgstr "" -+msgstr "Примање података неуспешно: NSS грешка %d." - - #: ../src/plugins/https-utils.c:398 - msgid "Malformed chunked response." --msgstr "" -+msgstr "Лош збирни одговор." - - #: ../src/plugins/https-utils.c:423 - msgid "Failed to initialize NSS." --msgstr "" -+msgstr "Неуспешна иницијализација NSS-а." - - #: ../src/plugins/https-utils.c:429 - msgid "Failed to initialize security module." --msgstr "" -+msgstr "Неуспешна иницијализација сигурносног модула." - - #: ../src/plugins/https-utils.c:444 - msgid "Failed to shutdown NSS." --msgstr "" -+msgstr "Неуспешно искључивање NSS-а." - - #: ../src/plugins/oops-utils.c:73 - #, c-format - msgid "Sleeping for %d seconds" --msgstr "" -+msgstr "Спавање %d секунди" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" -+"Догодио се проблем са кернелом због неисправног BIOS-а. Нажалост, такви " -+"проблеми не могу бити поправљени од стране кернел програмера." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" -+"Догодио се проблем са кернелом, али ваш хардвер није подржан, стога кернел " -+"програмери не могу да поправе овај проблем." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" -+"Догодио се проблем са кернелом, али ваш кернел је укаљан (flags:%s). Кернел " -+"програмери не могу да установе дијагнозу укаљаних извештаја." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." --msgstr "" -+msgstr "Укаљани модули: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" --msgstr "" -+msgstr "Списак идентификатора програмских грешака" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" --msgstr "" -+msgstr "Назначите URL bodhi сервера" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" --msgstr "" -+msgstr "Назначите издање" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" -+"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" -+"\n" -+"Потражите ажурирања на bodhi серверу" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" --msgstr "" -+msgstr "Тражим ажурирања" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" --msgstr "" -+msgstr "Нису пронађена ажурирања за овај пакет" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" --msgstr "" -+msgstr "Локална верзија пакета је новија него доступна ажурирања" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" - " %s. Do you want to continue with reporting the bug?" - msgstr "" -+"Постоји ажурирање које би могло решити ваш проблем. Можете га инсталирати " -+"извршавањем: %s. Да ли желите наставити са пријавом програмске грешке?" - - #: ../src/hooks/abrt-merge-pstoreoops.c:85 - msgid "" -@@ -1846,148 +2227,323 @@ msgid "" - "\n" - "Scans files for split oops message. Can print and/or delete them." - msgstr "" -+"& [-v] [-od] ДАТОТЕКА...\n" -+"\n" -+"Претражује датотеке за раздељеном oops поруком. Може је исписати и/или " -+"обрисати." - - #: ../src/hooks/abrt-merge-pstoreoops.c:97 - msgid "Print found oopses" --msgstr "" -+msgstr "Исписује пронађене oops-еве" - - #: ../src/hooks/abrt-merge-pstoreoops.c:98 - msgid "Delete files with found oopses" --msgstr "" -+msgstr "Обриши датотеке са пронађеним oops-евима" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" --msgstr "" -+msgstr "'%s' показује на више од једног директоријума проблема" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" --msgstr "" -+msgstr "Листај проблеме [у DIR-овима]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" --msgstr "" -+msgstr "Уклони директоријум проблема DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" --msgstr "" -+msgstr "Анализирај и пријави податке проблема у DIR-у" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" --msgstr "" -+msgstr "Прикажи информације о DIR-у" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" --msgstr "" -+msgstr "Прикажи број недавних крахова" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" --msgstr "" -+msgstr "Обради више проблема" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" --msgstr "" -+msgstr "Погледајте 'abrt-cli КОМАНДА --help' за више информација" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [опције]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" --msgstr "" -+msgstr "Прикажи само проблеме који нису пријављени" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" --msgstr "" -+msgstr "Прикажи детаљан извештај" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" --msgstr "" -+msgstr "Прикажи само проблеме млађе од наведеног момента у времену" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" --msgstr "" -+msgstr "Прикажи само проблеме старије од наведеног момента у времену" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " - "issuing\n" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" -+"Могућност аутоматског пријављивања је онемогућена. Молим да размотрите " -+"омогућавање исте извршавањем\n" -+"'abrt-auto-reporting enabled' као корисник са root привилегијама\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." --msgstr "" -+msgstr "& info [опције] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" --msgstr "" -+msgstr "Текст већи од овога ће бити приказан сажето" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" --msgstr "" -+msgstr "Не постоји директоријум проблема '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" --msgstr "" -+msgstr "Прикажи само број проблема без икакве поруке" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" --msgstr "" -+msgstr "Прикажи само проблеме млађе од наведеног момента у времену" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" -+"ABRT је открио %u проблем(а). За више информација извршите: abrt-cli " -+"list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" --msgstr "" -+msgstr "Уклањам '%s'" -+ -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [опције] DIR..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Уклони PROBLEM_DIR након пријављивања" - - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" --msgstr "" -+msgstr "Акције: уклони(rm), инфо(i), прескочи(s):" - - #: ../src/cli/process.c:66 - msgid "Actions: remove(rm), report(e), info(i), skip(s):" --msgstr "" -+msgstr "Акције: уклони(rm), извештај(e), инфо(i), прескочи(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" --msgstr "" -+msgstr "Пријављујем '%s'" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" --msgstr "" -+msgstr "За следећи проблем притисните ЕНТЕР:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." --msgstr "" -+msgstr "Без --since аргумента, пролази кроз све откривене проблеме." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" -+msgstr "Означава само проблеме откривене након момента у времену" -+ -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" - msgstr "" - - #: ../src/plugins/analyze_CCpp.xml.in.h:1 -@@ -1995,6 +2551,8 @@ msgid "" - "Send core dump to remote retrace server for analysis or perform local " - "analysis if the remote analysis fails" - msgstr "" -+"Пошаљи coredump на удаљени сервер за поновни траг на анализу или изврши " -+"локалну анализу ако удаљена анализа није успешна" - - #: ../src/plugins/analyze_CCpp.xml.in.h:2 - msgid "" -@@ -2006,72 +2564,89 @@ msgid "" - "you upload contains all the data from the crashed program, including your " - "private data, if any." - msgstr "" -+"Шаље coredump на сервер, који ствара стабло позивања и враћа га. Ако " -+"корисник не жели да пошаље свој coredump нигде овај догађај ће извршити " -+"локалну анализу. Локална анализа се извршава и у случају да удаљена анализа " -+"није успешна. Предности: нема потребе за преузимањем debuginfo-а. База " -+"података debuginfo-а сервера за поновни траг је комплетнија. Сервер за " -+"поновни траг може створити боља стабла позивања. Мане: coredump који шаљете " -+"садржи све податке о срушеном програму, укључујући и ваше приватне податке, " -+"ако их има." - - #: ../src/plugins/analyze_VMcore.xml.in.h:1 - msgid "Analyze VM core" --msgstr "" -+msgstr "Анализирај VM језгро" - - #: ../src/plugins/analyze_VMcore.xml.in.h:2 - msgid "" - "Install kernel debuginfo packages, generate kernel log and oops message" - msgstr "" -+"Инсталирај кернел debuginfo пакете, створи запис кернела и oops поруку" - - #: ../src/plugins/analyze_VMcore.xml.in.h:3 - msgid "" - "Needs to install kernel debuginfo packages, which might take significant " - "time, and take up disk space." - msgstr "" -+"Потребно је инсталирати кернел debuginfo пакете, што може захтевати значајан " -+"период времена, и заузимати простор на диску." - - #: ../src/plugins/collect_GConf.xml.in.h:1 - msgid "Collect GConf configuration" --msgstr "" -+msgstr "Сакупи GConf подешавања" - - #: ../src/plugins/collect_GConf.xml.in.h:2 - msgid "Save configuration from application's GConf directory" --msgstr "" -+msgstr "Сачувај подешавања из GConf директоријума програма" - - #: ../src/plugins/collect_GConf.xml.in.h:3 - msgid "" - "Runs gconftool-2 --recursive-list /apps/executable and saves it as " - "'gconf_subtree' element." - msgstr "" -+"Извршава gconftool-2 --recursive-list /apps/executable и чува га као " -+"'gconf_subtree' елеменат." - - #: ../src/plugins/collect_vimrc_system.xml.in.h:1 - msgid "Collect system-wide vim configuration files" --msgstr "" -+msgstr "Сакупља датотеке за подешавање vim-а на системском нивоу" - - #: ../src/plugins/collect_vimrc_system.xml.in.h:2 - msgid "Save /etc/vimrc and /etc/gvimrc" --msgstr "" -+msgstr "Сачувај /etc/vimrc и /etc/gvimrc" - - #: ../src/plugins/collect_vimrc_system.xml.in.h:3 - msgid "" - "Checks if there are vimrc and gvimrc files in /etc and saves them as " - "system_vimrc and system_gvimrc, respectively." - msgstr "" -+"Проверава да ли постоје vimrc и gvimrc датотеке у /etc и чува их као " -+"system_vimrc и system_gvimrc, респективно." - - #: ../src/plugins/collect_vimrc_user.xml.in.h:1 - msgid "Collect yours vim configuration files" --msgstr "" -+msgstr "Скупља ваше vim датотеке за подешавање" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:2 - msgid "Save .vimrc and .gvimrc from your home directory" --msgstr "" -+msgstr "Чува .vimrc и .gvimrc из вашег личног директоријума" - - #: ../src/plugins/collect_vimrc_user.xml.in.h:3 - msgid "" - "Checks if there are .vimrc and .gvimrc in your home directory and saves them " - "as user_vimrc and user_gvimrc, respectively." - msgstr "" -+"Проверава да ли постоје vimrc и gvimrc датотеке у вашем личном директоријуму " -+"и чува их као user_vimrc и user_gvimrc, респективно." - - #: ../src/plugins/post_report.xml.in.h:1 - msgid "Post report" --msgstr "" -+msgstr "Након извештаја" - - #: ../src/plugins/post_report.xml.in.h:2 - msgid "Executed after the reporting is finished" --msgstr "" -+msgstr "Извршава се након што је пријављивање завршено" - - #: ../src/plugins/post_report.xml.in.h:3 - msgid "Used for updating of the databases" --msgstr "" -+msgstr "Користи се за освежавање база података" -diff --git a/po/sr@latin.po b/po/sr@latin.po -index 962be2c..43f6459 100644 ---- a/po/sr@latin.po -+++ b/po/sr@latin.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "Language: sr@latin\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -29,108 +29,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Prijava" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -152,7 +163,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -185,30 +198,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -234,14 +259,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -253,11 +278,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -271,24 +296,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -296,60 +322,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -357,12 +373,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -383,18 +399,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -424,73 +444,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -502,68 +523,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -587,18 +608,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -639,7 +668,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -728,12 +757,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -842,14 +903,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1064,7 +1154,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1074,16 +1165,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1092,8 +1185,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1113,6 +1210,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1136,11 +1234,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1154,16 +1254,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1171,18 +1274,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1201,14 +1307,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1217,70 +1326,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1777,63 +1936,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1855,65 +2014,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1921,49 +2081,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1972,24 +2142,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/sv.po b/po/sv.po -index 156d987..e3af612 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -31,16 +31,16 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-26 04:08-0400\n" -+"PO-Revision-Date: 2015-08-01 11:41-0400\n" - "Last-Translator: Göran Uddeborg \n" - "Language-Team: Swedish \n" - "Language: sv\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -50,34 +50,34 @@ msgstr "Problemrapportering" - msgid "View and report application crashes" - msgstr "Visa och rapportera programkrascher" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Kan inte ta över ägandet av ”%s”" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Kan inte öppna katalog för att skriva '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Kan inte stänga notifikation: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Ojdå!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapport" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Starta om" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -86,7 +86,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Problemet har " - "rapporterats automatiskt." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -95,8 +95,8 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Problemet kommer " - "rapporteras när internet kan nås." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -105,7 +105,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Kontakta utvecklaren om " - "du vill rapportera saken." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -114,7 +114,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att %s kraschade. Om du vill hjälpa till " - "att lösa problement, skicka då en rapport." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -122,7 +122,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " - "Problemet har rapporterats automatiskt." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -130,7 +130,7 @@ msgstr "" - "Vi är ledsna, men det verkar som att ett problem uppstod i en komponent. " - "Problemet kommer rapporteras när internet kan nås." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -138,28 +138,28 @@ msgstr "" - "Vi är ledsna, men det verkar som att ett problem uppstod. OM du vill hjälpa " - "till att lösa problemet, skicka då en rapport." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Kan inte visa notifiering: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Kan inte läsa från gio-kanal: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Kan inte sätta kodning på gio-kanal: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Kan inte slå på ej blockerande läge för gio-kanal: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -169,6 +169,17 @@ msgstr "" - "\n" - "Miniprogram som meddelar användare när nya problem upptäcks av ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Fråga före en katalog stjäls" -@@ -190,13 +201,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Filen med minnesdumpen behövs för att skapa stackspår vilket är en åtgärd " --"som kostar tid och utrymme. ABRT tillhandahåller en tjänst som genererar " --"stackspåret från en minnesdump men du måste skicka minnesdumpen till denna " --"tjänst. Med detta alternativ avaktiverat kommer ABRT skicka minnesdumpen " --"utan att fråga." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -243,10 +251,6 @@ msgstr "" - "är aktiverat." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Fråga före minnesutskrifter skickas" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -254,15 +258,15 @@ msgstr "" - " Med denna flagga aktiverad skapar ABRT alltid felrapporter med begränsad " - "åtkomst om eventuellt känsliga data detekteras." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Begär privat rapport för känslig information" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Notifiera om ofullständiga problem" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -272,6 +276,22 @@ msgstr "" - "loggar ut. För att kunna skapa användbara problemrapporter kommer ABRT inte " - "tillåta dig att skicka dessa problem." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_Stäng" -@@ -297,7 +317,7 @@ msgstr "Om" - msgid "Quit" - msgstr "Avsluta" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -307,7 +327,7 @@ msgstr "" - "\n" - "Fråga paketdatabasen och spara paket- och komponentnamn" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -319,11 +339,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Problemkatalog" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Konfigurationsfil" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Använd denna katalog som RPM-rot" - -@@ -339,24 +359,25 @@ msgstr "& [-v] -d KAT\n" - msgid "Root directory for running container commands" - msgstr "Rotkatalogen för att köra behållarkommandon" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [flaggor]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Använd NUM som klient-uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Logga till syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Lägg till programnamn till loggen" - -@@ -364,62 +385,52 @@ msgstr "Lägg till programnamn till loggen" - msgid "Unknown error" - msgstr "Okänt fel" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "”%s” är inte en giltig problemkatalog" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' är inte ett giltigt elementnamn" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Elementet '%s' kan inte modifieras" -+msgid "'%s' is not a valid problem directory" -+msgstr "”%s” är inte en giltig problemkatalog" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Inte auktoriserad" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Kan inte komma åt problemet för modifikation" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Elementet '%s' kan inte modifieras" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Chownoperationen på katalogen misslyckades. Kolla systemloggarna för fler " - "detaljer." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Kan inte komma åt problemet för läsning" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' är inte ett giltigt elementnamn" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Det går inte att få storleken på '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Inget utrymme kvar" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Kan inte radera elementet '%s' från problemkatalogen '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -429,12 +440,12 @@ msgstr "" - "Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet " - "inte kör.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Avsluta efter ANT sekunders inaktivitet" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Detta program måste köra som root." - -@@ -460,18 +471,22 @@ msgstr "Bli inte demon" - msgid "Log to syslog even with -d" - msgstr "Logga till syslog även med -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event HÄNDELSEKAT…" -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Kör HÄNDELSE på KAT" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Kommunicera direkt med användaren" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -509,88 +524,89 @@ msgstr "Antal samtidiga arbetare. Standard är " - msgid "Maximal cache size in MiB. Default is " - msgstr "Maximal cachestorlek i MiB. Standard är " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Slår av autenticering" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support-användarnamn" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat Support-lösenord, om det inte ges kommer en fråga efter det att " - "ställas" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL-certifikatsökvägar eller certifikattyp" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Du behöver även ange --username för --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Du kan använda antingen --username eller --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Du kan använda antingen --username eller --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Du kan använda antingen --anonymous eller --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Fel antal argument" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Okänt parametervärde: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Lösenord:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Kan inte fortsätta utan lösenord\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP-autenticerad automatrapportering" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL-klientautenticerad automatrapportering" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Göran Uddeborg --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "anonym automatrapportering" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -609,68 +625,68 @@ msgstr "" - " SKICKA_KAT - Katalog där skickade arkiv lagras\n" - " FILNAMN - Skickat arkivs filnamn\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Inte en katalog: ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Hoppar över: ”{0}” (börjar med ett snedstreck)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Hoppar över: ”{0}” (börjar med en punkt)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Hoppar över: ”{0}” (innehåller ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Hoppar över: ”{0}” (innehåller blanktecken)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Hoppar över: ”{0}” (innehåller tabulator)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Kan inte byta katalog till ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Okänd filtyp: ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Kan inte skapa en arbetskatalog i ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Kan inte flytta ”{0}” till ”{1}”" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Kan inte kopiera ”{0}” till ”{1}”" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Verifieringsfel på ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Packar upp ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Kan inte skapa katalogen ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Kan inte packa upp ”{0}”" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "”{0}” behandlad" - -@@ -694,21 +710,29 @@ msgstr "Kan inte ändra ägare av ”%s”: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Misslyckades att radera en problemkatalog: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Kan inte hämta problemdata från abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Kan inte hämta problemlistan från abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Kan inte hämta problemdata från abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Kan inte testa huruvida elementet finns via abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -755,7 +779,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Stackspårstolkning misslyckades för %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Kraschtråden kan inte finnas" - -@@ -862,7 +886,7 @@ msgstr "Kan inte extrahera oops-meddelandet: ”{0}”" - msgid "Oops text extracted successfully" - msgstr "Oops-texten extraherad" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -870,6 +894,38 @@ msgstr "" - "Kärnloggen indikerar att hårdvarufel inträffat.\n" - "Detta är troligen inte ett mjukvaruproblem.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -1011,7 +1067,36 @@ msgstr "Saknad felsökningsfil: {0}" - msgid "All debuginfo files are available" - msgstr "Alla felsökningsinformationsfiler är tillgängliga" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1021,7 +1106,7 @@ msgstr "" - "svarar 'Nej' kommer en stackspårning att skapas lokalt. (Det kan komma att " - "ladda ner en stor mängd data)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1249,7 +1334,8 @@ msgstr "Skapa ny problemkatalog i KAT för varje oops som hittas" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Samma som -d DumpPlats, DumpPlats anges i abrt.conf" - -@@ -1259,16 +1345,18 @@ msgstr "Spara den extraherade information i PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Gör problemkatalogen läsbar för alla" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Begränsa skapandet av problemkataloger till 1 per sekund" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Skriv söksträngar till standard ut och avsluta" - -@@ -1277,9 +1365,13 @@ msgstr "Skriv söksträngar till standard ut och avsluta" - msgid "Failed to compile regex" - msgstr "Misslyckades att kompilera reguljäruttryck" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "Kan inte uppdatera problemet: hittade mer än en oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1298,6 +1390,7 @@ msgstr "Misslyckades att spara data för felupptäckt i abrt-databasen" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Misslyckades att initiera läsning av systemd-journal" - -@@ -1333,11 +1426,13 @@ msgstr "Skapa en ny problemkatalog i KAT för varje minnesdump" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Börja att läsa systemd-journal från MARKÖR-positionen" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Börja att läsa systemd-journal från slutet" - -@@ -1351,17 +1446,20 @@ msgstr "Samma som -t INT, INT anges i plugins/CCpp.conf" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Följ systemd-journal från den senast observerade positionen (om tillgänglig)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "De behöver ange antingen -c MARKÖR eller -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Kan inte öppna systemd-journal" - -@@ -1369,18 +1467,21 @@ msgstr "Kan inte öppna systemd-journal" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "Kan inte filtrera systemd-journal till endast systemd-coredump-data" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Kan inte söka till slutet på journalen" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Misslyckades att sätta markören för systemd-journal ”%s”" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Kan inte läsa journaldata." - -@@ -1413,28 +1514,77 @@ msgstr "" - "Den senast observerade positionen sparas i " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Läs journalfiler från alla maskiner" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Läs alla journalfiler från katalogen vid SÖKVÄG" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Kan inte initiera systemd-journal i katalogen ”%s”" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Kan inte filtrera ut endast kärndata från systemd-journal" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Misslyckades att starta läsning från markören ”%s”" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1444,43 +1594,47 @@ msgstr "" - "\n" - "Extrahera en Xorg-krasch från FIL (eller standard in)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Skriv funna kraschdata på standard ut" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "Skapa problemkatalog i KAT för varje krasch som hittas" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Kan inte spara journalläsningens position" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Kan inte spara journalläsningens position: open(”%s”)" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "Återställer inte journalläsningens position: filen ”%s” finns inte" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Kan inte återställa journalläsningens position från filen ”%s”" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Kan inte återställa journalläsningens position: sökvägen ”%s” är inte en " - "normal fil" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1488,12 +1642,12 @@ msgstr "" - "Kan inte återställa journalläsningens position: filen ”%s” överskrider " - "storleksgränsen %d B" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Kan inte återställa journalläsningens position: open(”%s”)" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1501,7 +1655,7 @@ msgstr "" - "”%s”" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Misslyckades att flytta journalen till en markör från filen ”%s”" -@@ -2035,7 +2189,7 @@ msgstr "Misslyckades att stänga ner NSS." - msgid "Sleeping for %d seconds" - msgstr "Sover i %d sekunder" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2043,7 +2197,7 @@ msgstr "" - "Ett kärnproblem inträffade på grund av trasigt BIOS. Tyvärr går sådana " - "problem inte att rätta utav kärnutvecklare." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2051,7 +2205,7 @@ msgstr "" - "Ett kärnproblem har inträffat, men din hårdvara stödjs inte, därför kan inte " - "kärnutvecklare fixa detta problem." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2060,24 +2214,24 @@ msgstr "" - "Ett problem i kärnan inträffade, men din kärna har fläckats (flaggor:%s). " - "De som underhåller kärnan kan inte diagnostisera fläckade rapporter." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Fläckande moduler: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Lista över fel-id:n" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Ange en bodhi-server-url" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Ange en utgåva" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2087,21 +2241,21 @@ msgstr "" - "\n" - "Sök efter uppdateringar på bodhi-servern" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Söker efter uppdateringar" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Inga uppdateringar av detta paket hittades" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "Den lokala versionen av paketet är nyare än de tillgängliga uppdateringarna" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2129,65 +2283,66 @@ msgstr "Visa hittade oopsmeddelanden" - msgid "Delete files with found oopses" - msgstr "Radera filer med hittade oopsmeddelanden" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "”%s” identifierar mer än en problemkatalog" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Användning: abrt-cli [--version] KOMMANDO [KAT]…" -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Lista problem [i KAT]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Ta bort problemkatalogen KAT" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Analysera och rapportera problemdata i KAT" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Skriv ut information om KAT" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Visa antalet nyliga krascher" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Bearbeta flera problem" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [flaggor]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Lista endast orapporterade problem" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Visa detaljerad rapport" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "Visa bara problem nyare än angiven tidsstämpel" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "Visa bara problem äldre än angiven tidsstämpel" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2199,51 +2354,60 @@ msgstr "" - "att köra ”abrt-auto-reporting enabled” som en användare med root-" - "rättigheter\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [flaggor] KAT…" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "Text längre än detta kommer visas förkortad" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Problemkatalogen finns inte ”%s”" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Visa bara antalet problem utan några meddelanden" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "Visa bara problem nyare än angiven tidsstämpel" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n" --"\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& rapport [flaggor] KAT…" -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Tar bort ”%s”" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& rapport [flaggor] KAT…" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Åtgärder: remove(rm), info(i), skip(s):" -@@ -2252,24 +2416,179 @@ msgstr "Åtgärder: remove(rm), info(i), skip(s):" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Åtgärder: remove(rm), report(e), info(i), skip(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Rapporterar ”%s”" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "För nästa problem tryck RETUR:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "Utan argumentet --since, itererar över alla upptäckta problem." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Väljer endast problem upptäckta efter tidsstämpeln" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ta.po b/po/ta.po -index a74a517..cef4f2a 100644 ---- a/po/ta.po -+++ b/po/ta.po -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -25,7 +25,7 @@ msgstr "" - "language/ta/)\n" - "Language: ta\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -35,102 +35,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' ஐ எழுத கோப்பகத்தைத் திறக்க முடியவில்லை" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "அறிவிப்பை மூட முடியவில்லை: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "அறிக்கையிடு" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "அறிவிப்பைக் காண்பிக்க முடியவில்லை: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio சேனலில் இருந்து வாசிக்க முடியவில்லை: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio சேனலில் குறியீடாக்கத்தை அமைக்க முடியவில்லை: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio சேனலுக்கு தடுக்காத பயன்முறையை இயக்க முடியவில்லை: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -140,6 +140,17 @@ msgstr "" - "\n" - "ABRT புதிய சிக்கல்களைக் கண்டறியும் போது அதைப் பற்றி அறிவிக்கும் பயன்பாடு\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "கோப்பகத்தை எடுத்துக்கொள்ளும் முன்பு கேட்கவும்" -@@ -161,13 +172,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"அதிக நேரமும் இடமும் தேவைப்படுகின்ற, ஸ்டேக் ட்ரேஸை உருவாக்கும் செயலைச் செய்ய " --"coredump கோப்பு அவசியமாகும். கோர்டம்ப்பிலிருந்து ஸ்டேக் ட்ரேஸை உருவாக்க ABRT " --"ஒரு சேவையை வழங்குகிறது, ஆனால் நீங்கள் இந்தச் சேவைக்கு கோர்டம்ப்பைப் பதிவேற்ற " --"வேண்டும். இந்த விருப்பம் முடக்கப்பட்டிருந்தால், ABRT கேட்காமலே கோர்டம்ப்பைப் " --"பதிவேற்றும்." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -216,10 +224,6 @@ msgstr "" - "செயல்படும்." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "கோர்டம்ப்பைப் பதிவேற்றும் முன் கேட்கவும்" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -228,15 +232,15 @@ msgstr "" - "கண்டறியப்பட்டால், ABRT பயன்பாடு எப்போதும் கட்டுப்படுத்தப்பட்ட அணுகலுடனான வழு " - "டிக்கட்டை உருவாக்கும்." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "முக்கியமான தகவலுக்கு தனிப்பட்ட டிக்கட்டைக் கோரவும்" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "நிறைவடையாத சிக்கல்கள் குறித்து அறிவி" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -247,6 +251,22 @@ msgstr "" - "வழங்குவதற்காக ABRT பயன்பாடு இந்தச் சிக்கல்களைச் சமர்ப்பிக்க உங்களை " - "அனுமதிக்காது." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "மூடு (_C)" -@@ -272,14 +292,14 @@ msgstr "அறிமுகம்" - msgid "Quit" - msgstr "வெளியேறு" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -291,11 +311,11 @@ msgstr "" - msgid "Problem directory" - msgstr "சிக்கல் கோப்பகம்" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "அமைவாக்கக் கோப்பு" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -309,24 +329,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM ஐ கிளையன்ட் uid ஆகப் பயன்படுத்தவும்" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "syslog க்கு பதியவும்" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "நிரல் பெயர்களை பதிவில் சேர்க்கவும்" - -@@ -334,62 +355,52 @@ msgstr "நிரல் பெயர்களை பதிவில் சேர - msgid "Unknown error" - msgstr "தெரியாத பிழை" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "அங்கீகாரம் இல்லை" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "மாற்றம் செய்ய சிக்கலை அணுக முடியவில்லை" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' கூறில் மாற்றம் செய்ய முடியாது" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "கோப்பகத்தை Chown செய்தல் தோல்வியடைந்தது. மேலும் விவரங்களுக்கு கணினி " - "பதிவுகளைப் பார்க்கவும்." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' இன் அளவைப் பெற முடியவில்லை" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "சிக்கல் இடம் மீதம் இல்லை" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "சிக்கல் கோப்பகம் '%s' இலிருந்து கூறு '%s' ஐ நீக்க முடியவில்லை" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -399,12 +410,12 @@ msgstr "" - "'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் " - "இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM விநாடிகளுக்கு செயலில்லாமல் இருந்த பிறகு வெளியேறவும்" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "இந்த நிரலை மூலப் பயனராகவே இயக்க வேண்டும்." - -@@ -431,18 +442,22 @@ msgstr "டெமனைஸ் செய்ய வேண்டாம்" - msgid "Log to syslog even with -d" - msgstr "-d உடனும் syslog இல் பதிவு செய்யவும்" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "DIR இல் EVENT ஐ இயக்கு" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "நேரடியாக பயனரிடம் தொடர்புகொள்ளவும்" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -482,89 +497,90 @@ msgstr "ஒத்த சமய ஒர்க்கர்களின் எண் - msgid "Maximal cache size in MiB. Default is " - msgstr "MiB இல் அதிகபட்ச தேக்கக அளவு. முன்னிருப்பு:" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "அங்கீகரிப்பை முடக்கும்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat ஆதரவு பயனர் பெயர்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Red Hat ஆதரவு கடவுச்சொல், கொடுக்கப்படாவிட்டால், அதைக் கேட்கும் இடைமுகம் " - "காட்டப்படும்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL சான்றிதழ் பாதைகள் அல்லது சான்றிதழ் வகை" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "--password க்கு --username ஐயும் வழங்க வேண்டும்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "--username அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "--username அல்லது --anonymous இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "--anonymous அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "செல்லுபடியாகாத மதிப்புருக்களின் எண்ணிக்கை" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "தெரியாத விருப்ப மதிப்பு: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "கடவுச்சொல்:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "கடவுச்சொல் இல்லாமல் தொடர முடியாது\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP அங்கீகரித்த தானியக்க அறிக்கையிடல்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL கிளையன் அங்கீகரித்த தானியக்க அறிக்கையிடல்" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Shantha kumar --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "பெயரிலா தானியக்க அறிக்கையிடல்" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -585,83 +601,83 @@ msgstr "" - " FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "ஒரு கோப்பகமல்ல: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (சாய்வுக் கோட்டில் தொடங்குகிறது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (புள்ளியில் தொடங்குகிறது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (.. ஐக் கொண்டுள்ளது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (இடைவெளியைக் கொண்டுள்ளது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "இதைத் தவிர்க்கிறது: '{0}' (தத்தலைக் கொண்டுள்ளது)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "கோப்பகத்தை '{0}' க்கு மாற்றியமைக்க முடியாது" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "தெரியாத கோப்பு வகை: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' இல் பணிக் கோப்பகத்தை உருவாக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ஐ '{1}' க்கு நகர்த்த முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ஐ '{1}' இல் நகலெடுக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' இல் சரிபார்ப்புப் பிழை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' ஐப் பிரித்தெடுக்கிறது" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' கோப்பகத்தை உருவாக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' ஐப் பிரித்தெடுக்க முடியவில்லை" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' வெற்றிகரமாக செயலாக்கப்பட்டது" - -@@ -685,18 +701,26 @@ msgstr "'%s' ஐ chown செய்ய முடியவில்லை: %s" - msgid "Deleting problem directory failed: %s" - msgstr "சிக்கல் கோப்பகத்தை நீக்குவது தோல்வியடைந்தது: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus இலிருந்து சிக்கல் பட்டியலைப் பெற முடியவில்லை: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -746,7 +770,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s க்கு பின் தடமறிதல் பாகுபடுத்துதல் தோல்வியடைந்தது" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "செயலிழப்பு இழை காணப்படவில்லை" - -@@ -854,7 +878,7 @@ msgstr "oops செய்தியை பிரித்தெடுக்க - msgid "Oops text extracted successfully" - msgstr "Oops உரை வெற்றிகரமாக பிரித்தெடுக்கப்பட்டது" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -862,6 +886,38 @@ msgstr "" - "கெர்னல் பதிவு வன்பொருள் பிழைகள் கண்டறியப்பட்டதாகக் குறிக்கிறது.\n" - "அநேகமாக இது மென்பொருள் தொடர்பான பிரச்சனையாக இருக்காது.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -980,7 +1036,36 @@ msgstr "விடுப்பட்ட வழுநீக்கல் தகவ - msgid "All debuginfo files are available" - msgstr "வழுநீக்கல் தகவல் கோப்புகள் அனைத்தும் உள்ளன" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -990,7 +1075,7 @@ msgstr "" - "'இல்லை' என்பது உங்கள் பதிலாக இருந்தால், கணினியில் ஒரு ஸ்டேக் டிரேஸ் " - "உருவாக்கப்படும். (அது மிகப் பெரிய அளவிலான தரவைப் பதிவிறக்கலாம்)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1236,7 +1321,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - "-d DumpLocation போன்றது DumpLocation ஆனது abrt.conf இல் " -@@ -1248,16 +1334,18 @@ msgstr "பிரித்தெடுத்த தகவலை PROBLEM இல - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "சிக்கல் கோப்பகத்தை அனைவரும் வாசிக்கும்படி அமை" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "ஒரு வினாடிக்கு த்ராட்டில் சிக்கல் கோப்பக உருவாக்கம் 1" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "தேடல் சரங்களை stdout இல் அச்சிட்டு வெளியேறு" - -@@ -1267,11 +1355,13 @@ msgstr "தேடல் சரங்களை stdout இல் அச்சி - msgid "Failed to compile regex" - msgstr "சுருங்குறித் தொடரை கம்பைல் செய்வதில் தோல்வியடைந்தது" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops " --"கண்டறியப்பட்டுள்ளது" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1290,6 +1380,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1313,11 +1404,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1331,16 +1424,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1348,18 +1444,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1378,14 +1477,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1394,12 +1496,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1409,60 +1557,64 @@ msgstr "" - "\n" - "FILE இல் (அல்லது தரநிலை உள்ளீட்டில்) இருந்து Xorg ஐப் பிரித்தெடு" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "கண்டறிந்த செயலிழப்பு தரவை தரநிலையான வெளியீட்டில் அச்சிடு" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "கண்டறியப்படும் ஒவ்வொரு செயலிழப்புக்கும் DIR இல் ஒரு சிக்கல் கோப்பகத்தை " - "உருவாக்கு" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -2003,7 +2155,7 @@ msgstr "NSS ஐ பணிநிறுத்த முடியவில்லை - msgid "Sleeping for %d seconds" - msgstr "%d வினாடிகளுக்கு தூங்குகிறது" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2011,7 +2163,7 @@ msgstr "" - "பழுதடைந்த BIOS ஆல் ஒரு கெர்னல் சிக்கல் ஏற்பட்டது. துரதிருஷ்டவசமாக இத்தகைய " - "சிக்கல்கள் கெர்னல் பராமரிப்பாளர்களால் தீர்க்கப்படுவதில்லை." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2019,7 +2171,7 @@ msgstr "" - "ஒரு கெர்னல் சிக்கல் ஏற்பட்டது, ஆனால் உங்கள் வன்பொருளுக்கு ஆதரவில்லை, " - "ஆகவேகெர்னல் பரிமாரிப்பாளர்களால் இந்த சிக்கலைத் தீர்க்க முடியாது." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2029,24 +2181,24 @@ msgstr "" - "(கொடிகள்:%s). கெர்னல் பராமரிப்பு தொகுதிகளால் சிதைவடைந்தவை பற்றிய அறிக்கைகளை " - "உருவாக்க முடியவில்லை." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " பாதிக்கப்பட்ட தொகுதிக்கூறுகள்: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "வழு ஐடிகளின் பட்டியல்" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "ஒரு போதி சேவையக url ஐக் குறிப்பிடவும்" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "ஒரு வெளியீட்டைக் குறிப்பிடவும்" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2056,21 +2208,21 @@ msgstr "" - "\n" - "போதி சேவையகத்தில் புதுப்பிப்புகள் உள்ளதா எனத் தேடு" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "புதுப்பிப்புகள் உள்ளதா எனத் தேடுகிறது" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "இந்தத் தொகுப்புக்கு புதுப்பிப்பு எதுவும் இல்லை" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - "கிடைக்கக்கூடிய புதுப்பிப்புகளைக் காட்டிலும், தற்போதுள்ள பதிப்பு புதியது" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2098,66 +2250,67 @@ msgstr "கண்டறியப்பட்ட oopses ஐ அச்சிடு - msgid "Delete files with found oopses" - msgstr "கண்டறியப்பட்ட oopses கொண்டுள்ள கோப்புகளை அழி" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ஒன்றுக்கு மேற்பட்ட சிக்கல் கோப்பகங்களைக் கண்டறிகிறது" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "பயன்பாடு: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "[in DIRs] சிக்கல்களையும் பட்டியலிடு" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "DIR என்ற சிக்கல் கோப்பகத்தை நீக்கவும்" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "DIR இல் உள்ள சிக்கல் தரவை ஆராய்ந்து அறிவிக்கவும்" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR பற்றி தகவலை அச்சிடவும்" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "சமீபத்திய செயலிழப்புகளின் எண்ணிக்கையை அச்சிடு" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "பல சிக்கல்களைச் செயலாக்கவும்" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவலுக்கு பார்க்கவும்" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "அறிக்கையிடாத சிக்கல்களை மட்டும் பட்டியலிடு" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "விவரமான அறிக்கையை காட்டவும்" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் பிறகான சிக்கல்களை மட்டும் பட்டியலிடு" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் முந்தைய சிக்கல்களை மட்டும் பட்டியலிடு" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2167,55 +2320,65 @@ msgstr "" - "Autoreporting அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \n" - "'abrt-auto-reporting enabled' கட்டளையை இயக்கி அதை செயல்படுத்தவும்\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "இதை விட பெரிய உரை அப்ரிட்ஜ் செய்யப்பட்டு காண்பிக்கப்படும்" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "இப்படி ஒரு சிக்கல் கோப்பகம் இல்லை '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "எந்த செய்தியும் இன்றி சிக்கல் எண்ணிக்கையை மட்டும் அச்சிடு" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "குறிப்பிடப்பட்ட நேர முத்திரைக்கு சமீபமான சிக்கல்களை மட்டும் அச்சிடு" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u சிக்கல்களைக் கண்டறிந்துள்ளது. மேலும் தகவலுக்கு இந்தக் கட்டளையை " - "இயக்கவும்: abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' ஐ அழிக்கிறது" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& அறிக்கையிடவும் [விருப்பங்கள்] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "அறிக்கையிட்ட பிறகு PROBLEM_DIR ஐ அகற்றவும்" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' ஐ அழிக்கிறது" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "செயல்கள்: நீக்குதல்(rm), தகவல்(i), தவிர்த்தல்(s):" -@@ -2226,30 +2389,185 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "செயல்கள்: நீக்குதல்(rm), அறிக்கையிடுதல்(e), தகவல்(i), தவிர்த்தல்(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' ஐ அறிக்கையிடுகிறது" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "அடுத்த சிக்கலுக்கு ENTER ஐ அழுத்தவும்:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் " - "மீண்டும் மீண்டும் செயல்படுத்தப்படும்." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - "நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/te.po b/po/te.po -index 9b1eef8..a68f9bb 100644 ---- a/po/te.po -+++ b/po/te.po -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -26,7 +26,7 @@ msgstr "" - "language/te/)\n" - "Language: te\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -36,102 +36,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s' వ్రాయుట కొరకు డైరెక్టరీ తెరువలేదు" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ప్రకటనను మూయలేదు: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "నివేదించు" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ప్రకటనను చూపలేదు: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "gio చానల్‌నుండి చదువలేదు: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "gio చానల్ నందు యెన్కోడింగ్ అమర్చలేదు: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "gio చానల్ కొరకు నాన్‌బ్లాకింగ్ రీతిని ఆన్ చేయలేదు: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -141,6 +141,17 @@ msgstr "" - "\n" - "ABRT చేత కొత్త సమస్యలు గుర్తించబడినప్పుడు వినియోగదారికి తెలుపు ఆప్లెట్\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "సంచయాన్ని దొంగిలించుటకు ముందుగా అడుగుము" -@@ -162,12 +173,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"స్టాక్ ట్రేస్ పుట్టించుటకు కోర్‌డంప్ ఫైలు తప్పనిసరి ఇది సమయం మరియు జాగా " --"ఖర్చుచేసే కార్యక్రమం. స్టాక్ ట్రేస్ నుండి కోర్‌డంప్‌ను పుట్టించే సేవను ABRT " --"అందిస్తుంది అయితే మీరు కోర్‌డంప్‌ను దాని సేవకు ఎక్కించాలి. ఈ ఐచ్చికం " --"ఆచేతించినచో ABRT కోర్‌డంప్‌ను అడగకుండానే అప్‌లోడ్ చేయును." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -213,10 +222,6 @@ msgstr "" - "చూపదు. షార్టెన్డ్ నివేదీకరణ చేతనమైతేనే దీని ప్రభావంవుంటుంది." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "కోర్‌డంప్‌ను అప్‌లోడ్ చేయుటకు ముందుగా అడుగుము" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -224,15 +229,15 @@ msgstr "" - "ఈ ఐచ్చికం చేతనించివున్నప్పుడు, సెన్సిటివ్ అవ్వగల డేటా ఏదైనా గుర్తించబడితే " - "ABRT ఎప్పుడూ బగ్ టికెట్‌ను పరిమిత ఏక్సెస్‌తో సృష్టించును." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "సున్నితమైన సమాచారం కొరకు వ్యక్తిగత టికెట్‌ను అభ్యర్ధించును" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "అసంపూర్ణ సమస్యలను ప్రకటించుము" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -242,6 +247,22 @@ msgstr "" - "అసంపూర్ణ సమస్యలను గుర్తించబడెను. సమస్య యొక్క విలువైన నివేదికలను అందించుటకు, " - "ABRT మిమ్ములను ఈ సమస్యలను దాఖలుచేయడానికి అనుమతించదు." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "మూసివేయి (_C)" -@@ -267,14 +288,14 @@ msgstr "గురించి" - msgid "Quit" - msgstr "నిష్క్రమించు" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -286,11 +307,11 @@ msgstr "" - msgid "Problem directory" - msgstr "సమస్య డైరెక్టరీ" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "ఆకృతీకరణ ఫైలు" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -304,24 +325,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [ఐచ్చికాలు]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "NUM క్లైంట్ uid వలె వుపయోగించు" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "సిస్‌లాగ్‌కు లాగ్" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరులను జతచేయి" - -@@ -329,62 +351,52 @@ msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరుల - msgid "Unknown error" - msgstr "తెలియని దోషం" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "'%s' మూలకం సవరించలేదు" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ధృవీకరించబడలేదు" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "సవరణ కొరకు సమస్యను యాక్సెస్ చేయలేము" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "'%s' మూలకం సవరించలేదు" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "సంచయం chown చేయుట విఫలమైంది. మరిన్ని వివరాల కొరకు వ్యవస్థ లాగ్‌లను " - "పరిశీలించండి." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "'%s' యొక్క పరిమాణం పొందలేదు" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ఏ సమస్య ఖాళీ విడువలేదు" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "మూలకం '%s'ను సమస్య డైరెక్టరీ '%s' నుండి తొలగించలేదు" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -392,12 +404,12 @@ msgid "" - "is not running.\n" - msgstr "పేరు '%s' పోయంది, వేరే సేవ యీ పేరు పొంది నడువకుండా చూడండి.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "NUM క్షణాల క్రియాహీనత తరువాత నిష్క్రమించు" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "ఈ ప్రోగ్రామ్ root గా నడువవలెను." - -@@ -423,18 +435,22 @@ msgstr "డెమొనైజ్ చేయవద్దు" - msgid "Log to syslog even with -d" - msgstr "సిస్‌లాగ్‌కు -d తో లాగ్ అవ్వుము" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "EVENT ను DIR పై నడుపుము" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "వాడుకరిని నేరుగా సంప్రదించు" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -473,87 +489,88 @@ msgstr "ఏకకాలంలో పనిచేయు వారి సంఖ్ - msgid "Maximal cache size in MiB. Default is " - msgstr "గరిష్ట క్యాచీ పరిమాణం MiB నందు. అప్రమేయం" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "ధృవీకరణను ఆఫ్ చేయును" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat తోడ్పాటు వాడుకరి పేరు" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat తోడ్పాటు సంకేతపదం, ఇవ్వకపోతే, దానికొరకు ప్రామ్ట్ జారీ అగును" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL ధృవీకరణపత్రం పాత్స్ లేదా ధృవీకరణపత్రం రకం" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "మీరు --username మరియు --password తెలపాలి" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "మీరు --username లేదా --certificate ఉపయోగించవచ్చు" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "మీరు --username లేదా --anonymous ఉపయోగించవచ్చు" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "మీరు --anonymous లేదా --certificate ఉపయోగించవచ్చు" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "చెల్లని ఆర్గుమెంట్ల సంఖ్య" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "తెలియని ఐచ్చికం విలువ: '%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "సంకేతపదం:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "సంకేతపదం లేకుండా కొనసాగించలేము\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP ధృవీకృత స్వయంచాలన నివేదీకరణ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL క్లైంట్ ధృవీకృత స్వయంచాలన నివేదీకరణ" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Krishnababu Krothapalli --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "పేరులేకుండా స్వయంచాలన నివేదీకరణ" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -573,83 +590,83 @@ msgstr "" - " FILENAME - Uploaded archive file name\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "సంచయం కాదు: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "దాటవేస్తోంది: '{0}' (స్లాష్‌తో ప్రారంభమగును)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "దాటవేస్తోంది: '{0}' (డాట్‌తో ప్రారంభమగును)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "దాటవేస్తోంది: '{0}' (.. కలిగివుంది)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "దాటవేస్తోంది: '{0}' (ఖాళీ కలిగివుంది)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "దాటవేస్తోంది: '{0}' (టాబ్ కలిగివుంది)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "సంచయంను '{0}' కు మార్చలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "తెలియని ఫైల్ రకం: '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "'{0}' నందు పనిచేయుచున్న సంచయం సృష్టించలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "'{0}' ను '{1}' కు కదల్చలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "'{0}' ను '{1}' కు నకలుతీయలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' పై నిర్ధారణ దోషం" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "'{0}' విడమర్చుతోంది" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "'{0}' సంచయం సృష్టించలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "'{0}' విడమర్చలేదు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "'{0}' విజయవంతంగా ప్రోసెసైంది" - -@@ -673,18 +690,26 @@ msgstr "chown '%s' కాలేదు: %s" - msgid "Deleting problem directory failed: %s" - msgstr "సమస్యా డైరెక్టరీను తొలగించుట విఫలమైంది: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "abrt-dbus నుండి సమస్య జాబితాను పొందలేదు: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -732,7 +757,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s కొరకు బాక్‌ట్రేస్ పార్శింగ్ విఫలమైంది" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "క్రాష్ త్రెడ్ కనబడలేదు" - -@@ -838,7 +863,7 @@ msgstr "oops సందేశం బహిర్గతపరచలేదు: '{0} - msgid "Oops text extracted successfully" - msgstr "Oops పాఠం విజయవంతంగా బహిర్గతపరచెను" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -846,6 +871,38 @@ msgstr "" - "హార్డువేర్ దోషాలు గుర్తించబడెనని కెర్నల్ లాగ్ సూచిస్తోంది.\n" - "ఇది సాఫ్టువేర్ సమస్యకాదు.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -963,7 +1020,36 @@ msgstr "డీబగ్‌యిన్ఫో ఫైల్ తప్పిపో - msgid "All debuginfo files are available" - msgstr "అన్ని డీబగ్‌యిన్ఫో ఫైళ్ళు అందుబాటులో వున్నాయి" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -973,7 +1059,7 @@ msgstr "" - "సమాధానం 'వద్దు' అయితే గనుక, స్టాక్ ట్రేస్ స్థానికంగా జనియింపబడును. (అది " - "పెద్ద మొత్తంలో దత్తాంశమును డౌనులోడు చేయవచ్చు)." - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1211,7 +1297,8 @@ msgstr "కనుగొనబడిన ప్రతి oopsకు కొత్ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "-d DumpLocation వలె, DumpLocation అనునది abrt.conf నందు తెలుపబడెను" - -@@ -1221,16 +1308,18 @@ msgstr "వెలికితీసిన సమాచారం PROBLEM నం - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "సమస్యాత్మక డైరెక్టరీను అందరూ చదువదగినదిగా చేయి" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "డైరెక్టరీ సృష్టించుటలో సమస్యను ఒక్కో క్షణానికి 1 కి బిగించు." - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద్రించి నిష్క్రమించు" - -@@ -1240,9 +1329,13 @@ msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద - msgid "Failed to compile regex" - msgstr "regex కంపైల్ చేయుటకు విఫలమైంది" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "సమస్యను నవీకరించలేము: ఒకటి కన్నా ఎక్కువ oops కనబడెను" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1261,6 +1354,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1284,11 +1378,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1302,16 +1398,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1319,18 +1418,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1349,14 +1451,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1365,12 +1470,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1380,58 +1531,62 @@ msgstr "" - "\n" - "Xorg క్రాష్ ఫైలు నుండి (లేదా ప్రామాణిక యిన్పుట్) నుండి వెలికితీయి" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "కనుగొనిన క్రాష్ దత్తాంశం ప్రామాణిక అవుట్పుట్‌పై ముద్రించు" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "కనుగొనిన ప్రతి క్రాష్‌నకు DIR నందు సమస్య డైరెక్టరీ సృష్టించుము" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1966,7 +2121,7 @@ msgstr "NSS మూసివేతకు విఫలమైంది." - msgid "Sleeping for %d seconds" - msgstr "%d క్షణాలు స్లీపింగ్" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1974,7 +2129,7 @@ msgstr "" - "పాడైన BIOS కారణంగా కెర్నల్ సమస్య తలెత్తెను. దురదృష్టవశాత్తు, అటువంటి సమస్యలు " - "కెర్నల్ నిర్వాహకుల చే పరిష్కరించబడవు." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1982,7 +2137,7 @@ msgstr "" - "కెర్నల్ సమస్య తలెత్తెను, అయితే మీ హార్డువేర్ తోడ్పాటులేదు, కనుక కెర్నల్ " - "నిర్వాహకులు ఈ సమస్యను పరిష్కరించలేరు." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1991,24 +2146,24 @@ msgstr "" - "కెర్నల్ సమస్య యెదురైంది, అయితే మీ కెర్నల్ కల్మషమైంది (flags:%s). కల్మషమైన " - "నివేదికలను కెర్నల్ నిర్వాహకులు విశ్లేషించలేక పోయినారు." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "టైన్టెట్ మాడ్యూళ్ళు: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "బగ్ ఐడిల జాబితా" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "బోదీ సేవిక url తెలుపుము" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "విడుదల తెలుపుము" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2018,20 +2173,20 @@ msgstr "" - "\n" - "బోదీ సేవికపై నవీకరణల కొరకు వెతుకుము" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "నవీకరణల కొరకు వెతుకుచున్నది" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "ఈ ప్యాకేజీ కొరకు యే నవీకరణలు కనుగొనబడలేదు" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "అందుబాటులోని నవీకరణల కన్నా స్థానికంగా వున్న ప్యాకేజీ వర్షన్ కొత్తది" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2059,66 +2214,67 @@ msgstr "కనుగొన్న oopses ముద్రించు" - msgid "Delete files with found oopses" - msgstr "కనుగొన్న oopses తో ఫైళ్ళు తొలగించు" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' ఒకటి కన్నా ఎక్కువ సమస్య డైరెక్టరీలు గుర్తించెను" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "వా‍డుక: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "సమస్యల జాబితా [DIRల నందు]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "సమస్య డైరెక్టరీ DIR తీసివేయి" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "సమస్య డాటాను DIR నందు విశ్లేషించు మరియు నివేదించు" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "DIR గురించి సమాచారం ముద్రించు" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "ఇటీవలి క్రాష్‌ల లెక్కను ముద్రించు" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "పలు సమస్యలను ప్రోసెస్‌చేయి" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND --help' చూడండి" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "నివేదించని సమస్యలు మాత్రమే జాబితాచేయి" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "విశదీకృత నివేదిక చూపుము" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా యిటీవలి సమస్యలు మాత్రమే జాబితాచేయి" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా పాత సమస్యలు మాత్రమే జాబితాచేయి" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2128,55 +2284,65 @@ msgstr "" - "స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. root అనుమతులగల వాడుకరితో\n" - "'abrt-auto-reporting enabled' జారీచేసి దానిని చేతనం చేయుము.\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "దీనికన్నా పెద్దదైన పాఠం సంక్షిప్తంగా చూపబడును" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "అటువంటి సమస్యా డైరెక్టరీ '%s' లేదు" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "ఏ సందేశం లేకుండా సమస్య లెక్కను మాత్రమే ముద్రించు" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా కొత్తవైన సమస్యలను మాత్రమే ముద్రించు" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT %u సమస్య(లు) గుర్తించెను. మరింత సమాచారం కోసం యిది నడుపండి: abrt-cli " - "list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "'%s' తొలగిస్తోంది" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "నివేదించిన తరువాత PROBLEM_DIR తీసివేయి" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "'%s' తొలగిస్తోంది" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "చర్యలు: remove(rm), info(i), skip(s):" -@@ -2187,28 +2353,183 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "చర్యలు: remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "'%s' నివేదిస్తోంది" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "తరువాతి సమస్య కొరకు ENTER వత్తండి:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "టైమ్‌స్టాంప్ తరువాత గుర్తించిన సమస్యలను మాత్రమే ఎంపికచేయును" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/tg.po b/po/tg.po -index aa4cbf0..28494e3 100644 ---- a/po/tg.po -+++ b/po/tg.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -17,7 +17,7 @@ msgstr "" - "language/tg/)\n" - "Language: tg\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -27,108 +27,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Гузориш" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -150,7 +161,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -183,30 +196,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -232,14 +257,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -251,11 +276,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Файли танзимотӣ" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -269,24 +294,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [имконот]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Номҳои барномаҳоро ба журнал илова кунед" - -@@ -294,60 +320,50 @@ msgstr "Номҳои барномаҳоро ба журнал илова кун - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -355,12 +371,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -381,18 +397,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -422,73 +442,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -500,68 +521,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -585,18 +606,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -637,7 +666,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -726,12 +755,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -840,14 +901,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1062,7 +1152,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1072,16 +1163,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1090,8 +1183,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1111,6 +1208,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1134,11 +1232,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1152,16 +1252,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1169,18 +1272,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1199,14 +1305,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1215,70 +1324,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1775,63 +1934,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1853,65 +2012,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1919,49 +2079,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1970,24 +2140,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/th.po b/po/th.po -index 1eac660..077c9ba 100644 ---- a/po/th.po -+++ b/po/th.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/th/)\n" - "Language: th\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,102 +28,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "ไม่สามารถเป็นเจ้าของ '%s'" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "ไม่สามารถเปิดไดเรกทอรีสำหรับการเขียน '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "ไม่สามารถปิดการแจ้งเตือน: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "รายงาน" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "ไม่สามารถแสดงการแจ้งเตือน: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "ไม่สามารถอ่านจาก gio channel: '%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "ไม่สามารถตั้งการเข้ารหัสบน gio channel: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "ไม่สามารถเปิด nonblocking mode ให้ gio channel: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -133,6 +133,17 @@ msgstr "" - "\n" - "Applet ซึ่งเตือนผู้ใช้เมื่อพบปัญหาใหม่ถูกตรวจพบโดย ABRT\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "ถามก่อนขโมยข้อมูลในไดเรกทอรี" -@@ -154,12 +165,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"แฟ้ม coredump เป็นสิ่งที่จำเป็นสำหรับการสร้าง stack trace " --"ซึ่งเป็นเวลาและการดำเนินการการใช้พื้นที่ ABRT จะใหบริการโดยการสร้าง stack " --"trace จาก coredump แต่คุณต้องอัปโหลด coredump บนบริการนี้ก่อน " --"ด้วยทางเลือกนี้ การปิดใช้งาน ABRT จะอัปโหลด coredump โดยไม่ถามก่อน" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -204,10 +213,6 @@ msgstr "" - "มีผลก็ต่อเมื่อการรายงานสั้นถูกเปิดใช้งาน" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "ถามก่อนอัปโหลด coredump" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -216,15 +221,15 @@ msgstr "" - "ที่เปิดใช้งานแล้วจะสร้างตั๋วปัญหาด้วยการเข้าถึงที่จำกัดเสมด " - "หากพบข้อมูลสำคัญที่เป็นไปได้" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "ขอตั๋วส่วนตัวสำหรับข้อมูลสำคัญ" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "เตือนปัญหาที่ยังไม่สมบูรณ์" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -233,6 +238,22 @@ msgstr "" - "ปัญหาที่ไม่สมบูรณ์จะถูกพบขณะปิดเครื่องหรือออกจากระบบ " - "ในการจัดทำรายงานปัญหาที่มีค่า ABRT จะไม่อนุญาตให้คุณส่งรายงานปัญหาเหล่านี้" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "_ปิด" -@@ -258,14 +279,14 @@ msgstr "เกี่ยวกับ" - msgid "Quit" - msgstr "ออก" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -277,11 +298,11 @@ msgstr "" - msgid "Problem directory" - msgstr "ไดเรกทอรีปัญหา" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "แฟ้มค่ากำหนด" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -295,24 +316,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "ใช้ NUM เป็น client uid" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "บันทึกไปที่ปูมระบบ" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "เพิ่มชื่อโปรแกรมที่ต้องการบันทึก" - -@@ -320,61 +342,51 @@ msgstr "เพิ่มชื่อโปรแกรมที่ต้องก - msgid "Unknown error" - msgstr "ข้อผิดพลาดที่ไม่รู้จัก" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "element '%s' แก้ไม่ได้" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "ไม่มีตัวตน" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "ไม่สามารถเข้าถึงปัญหาเพื่อแก้ไข" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "element '%s' แก้ไม่ได้" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "การ Chowning directory ล้มเหลว กรุณาตรวจสอบปูมระบบสำหรับข้อมูลเพิ่มเติม" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "ไม่สามารถรับขนาด '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "ไม่มีพื้นที่ว่างเหลือสำหรับปัญหา" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "ไม่สามารถลบ element '%s' จากไดเรกทอรีปัญหา '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -383,12 +395,12 @@ msgid "" - msgstr "" - "ชื่อ '%s' หายไปแล้ว กรุณาตรวจสอบ หากบริการอื่นที่เป็นเจ้าของชื่อไม่ทำงาน\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "ออกหลังจากไม่ใช้งาน NUM วินาที" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "โปรแกรมนี้ต้องเรียกใช้ในฐานะผู้ดูแลระบบ" - -@@ -414,18 +426,22 @@ msgstr "อย่าทำงานแบบภูติ" - msgid "Log to syslog even with -d" - msgstr "บันทึกไปที่ปูมระบบแม้แต่ -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "เรียกใช้ EVENT บน DIR" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "สื่อสารกับผู้ใช้โดยตรง" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -463,73 +479,74 @@ msgstr "จำนวนคนงานที่ทำงานพร้อมก - msgid "Maximal cache size in MiB. Default is " - msgstr "จำนวนสูงสุดของจำนวนเมกะไบต์ของแคช ค่าเริ่มต้นคือ" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "จำนวนอาร์กิวเมนต์ไม่ถูกต้อง" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "ไม่รู้ค่าของตัวเลือก: '%s'\n" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -541,68 +558,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -626,18 +643,26 @@ msgstr "ไม่สามารถทำการ chown '%s': '%s'" - msgid "Deleting problem directory failed: %s" - msgstr "การลบไดเรกทอรีปัญหาล้มเหลว: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "ไม่สามารถรับรายการปัญหาจาก abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -684,7 +709,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "การวิเคราะห์ Backtrace ล้มเหลวสำหรับ %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "ไม่พบ Crash thread" - -@@ -786,13 +811,45 @@ msgstr "ไม่สามารถแยกข้อความ oops: '{0}'" - msgid "Oops text extracted successfully" - msgstr "แยกข้อความ Oops สำเร็จ" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "ปูมของเคอร์เนลบ่งชี้ว่าพบปัญหาฮาร์ดแวร์\n" - "นี่อาจจะไม่ใช่ปัญหาซอฟต์แวร์\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -908,7 +965,36 @@ msgstr "แฟ้ม debuginfo หายไป: {0}" - msgid "All debuginfo files are available" - msgstr "แฟ้ม debuginfo ทั้งหมดมีให้ใช้งาน" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -917,7 +1003,7 @@ msgstr "" - "ตกลงจะอัปโหลด core dump หรือไม่? (อาจมีข้อมูลสำคัญ) หากคุณตอบ 'ไม่' stack " - "trace จะถูกสร้างอยู่ในเครื่อง (อาจจะต้องดาวน์โหลดข้อมูลขนาดใหญ่หลวง)" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1144,7 +1230,8 @@ msgstr "สร้างไดเรกทอรีปัญหาใหม่ใ - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "เหมือนกับ -d DumpLocation DumpLocation ถูกระบุใน abrt.conf" - -@@ -1154,16 +1241,18 @@ msgstr "บันทึกข้อมูลที่แยกแล้วใน - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "ทำให้อ่านโลกของไดเรกทอรีปัญหาได้" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit" - -@@ -1172,9 +1261,13 @@ msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "ไม่สามารถปรับปรุงปัญหาได้: พบ oops มากกว่าหนึ่ง" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1193,6 +1286,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1216,11 +1310,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1234,16 +1330,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1251,18 +1350,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1281,14 +1383,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1297,12 +1402,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1312,58 +1463,62 @@ msgstr "" - "\n" - "แยก Xorg crash จาก FILE (หรือการป้อนมาตรฐาน)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Print พบ crash data บนการป้อนมาตรฐาน" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "สร้างไดเรกทอรีปัญหาใน DIR สำหรับทุก crash ที่พบ" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1860,7 +2015,7 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "หลับเป็นเวลา %d วินาที" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -1868,7 +2023,7 @@ msgstr "" - "เกิดปัญหากับเคอร์เนลเพราะ BIOS เสียหาย น่าเสียดายจัง " - "ปัญหาบางประการไม่สามารถซ่อมได้โดยผู้เชี่ยวชาญด้านเคอร์เนล" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -1876,7 +2031,7 @@ msgstr "" - "เกิดปัญหากับเคอร์เนล แต่ฮาร์ดแวร์ของคุณไม่ถูกรองรับ ดังนั้น " - "ผู้เชี่ยวชาญด้านเคอร์เนลจะแก้ปัญหานี้ไม่ได้" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -1885,44 +2040,44 @@ msgstr "" - "เกิดปัญหากับเคอร์เนล แต่เคอร์เนลของคุณเสีย (flags:%s) ดังนั้น " - "ผู้เชี่ยวชาญด้านเคอร์เนลจะวิเคราะห์การรายงานส่วนที่เสียหายไม่ได้" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "โมดูลที่เสีย: %s" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1944,65 +2099,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2010,49 +2166,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2061,24 +2227,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/tr.po b/po/tr.po -index 4c9676e..5557193 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "language/tr/)\n" - "Language: tr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -34,41 +34,41 @@ msgstr "Sorun Raporlama" - msgid "View and report application crashes" - msgstr "Uygulama çökmelerini görüntüle ve raporla" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "'%s' sahipliği alınamıyor" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "'%s''i yazmak için dizin açılamıyor" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Bildirim kapatılamadı: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Tüh!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Rapor" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Yeniden Başlat" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun otomatik olarak raporlandı." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -77,8 +77,8 @@ msgstr "" - "Üzgünüz, %s çökmüş gibi gözüküyor. Sorun İnternet bağlantısı olduğunda " - "raporlanacak." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -87,7 +87,7 @@ msgstr "" - "Üzgünüz, %s çökmüş gibi gözüküyor. Eğer bu durumu raporlamak istiyorsanız " - "lütfen geliştirici ile iletişime geçin." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -96,7 +96,7 @@ msgstr "" - "Üzgünüz, %s çökmüş gibi gözüküyor. Sorunun çözümüne yardımcı olmak " - "istiyorsanız lütfen bir rapor gönderin." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -104,7 +104,7 @@ msgstr "" - "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun otomatik " - "olarak raporlandı." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -112,7 +112,7 @@ msgstr "" - "Üzgünüz, bileşende bir problem meydana gelmiş gibi gözüküyor. Sorun, " - "İnternet bağlantısı olduğunda raporlanacak." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -120,34 +120,45 @@ msgstr "" - "Üzgünüz, bir sorun olmuş gibi gözüküyor. Eğer sorunun çözümüne yardımcı " - "olmak isterseniz lütfen bir rapor gönderin." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Bildirim gösterilemiyor: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -169,7 +180,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -202,30 +215,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -251,14 +276,14 @@ msgstr "Hakkında" - msgid "Quit" - msgstr "Çıkış" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -270,11 +295,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Dİzin problemi" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Yapılandırma dosyası" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -288,24 +313,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [seçenekler]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Sistem günlüğüne kaydet" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Program adlarını günlüğe ekle" - -@@ -313,60 +339,50 @@ msgstr "Program adlarını günlüğe ekle" - msgid "Unknown error" - msgstr "Bilinmeyen hata" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -374,12 +390,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -400,18 +416,22 @@ msgstr "Daemonize etme" - msgid "Log to syslog even with -d" - msgstr "Syslogları -d parametresi ile kullanın" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -441,73 +461,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -519,68 +540,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -604,18 +625,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -656,7 +685,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "%s için geri izleme ayrıştırması başarısız oldu" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -745,12 +774,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -859,14 +920,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1081,7 +1171,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1091,16 +1182,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1109,8 +1202,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1130,6 +1227,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1153,11 +1251,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1171,16 +1271,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1188,18 +1291,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1218,14 +1324,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1234,70 +1343,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1475,7 +1634,7 @@ msgstr "Geri izleme işi başladı." - #, c-format - msgid "Task Id: %s\n" - "Task Password: %s\n" --msgstr "Görev Id: %s\n" -+msgstr "Görev Id: %d\n" - "\n" - "Görev Şifresi: %s\n" - -@@ -1808,63 +1967,63 @@ msgstr "NSS in kapatılması başarısız" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1886,65 +2045,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Detaylı raporu göster" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1952,49 +2112,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -2003,24 +2173,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/uk.po b/po/uk.po -index c025538..b00aa7b 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -14,7 +14,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,7 +24,7 @@ msgstr "" - "Language: uk\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " - "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -34,34 +34,34 @@ msgstr "Звітування щодо проблем" - msgid "View and report application crashes" - msgstr "Перегляд і звітування щодо аварійних завершень програм" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "Не вдалося визначити права доступу до «%s»" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "Не вдалося відкрити каталог для запису, «%s»" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "Не вдалося закрити сповіщення: %s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "Оце тобі!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Повідомити" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "Перезапустити" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " -@@ -70,7 +70,7 @@ msgstr "" - "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Звіт " - "щодо проблеми створено у автоматичному режимі." - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " -@@ -80,8 +80,8 @@ msgstr "" - "щодо проблеми буде створено у автоматичному режимі, щойно стане доступним " - "інтернет-з’єднання." - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " -@@ -90,7 +90,7 @@ msgstr "" - "Вибачте, здається, програма %s завершила роботу у аварійному режимі. Будь " - "ласка, зв’яжіться із розробником, якщо ви хочете створити звіт щодо вади." - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " -@@ -100,7 +100,7 @@ msgstr "" - "хочете допомогти у розв’язанні цієї проблеми, будь ласка, надішліть звіт " - "щодо вади." - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." -@@ -108,7 +108,7 @@ msgstr "" - "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми створено " - "у автоматичному режимі." - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." -@@ -116,7 +116,7 @@ msgstr "" - "Вибачте, здається, у компоненті сталася помилка. Звіт щодо проблеми буде " - "створено, щойно буде отримано доступ до інтернет-з’єднання." - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." -@@ -124,28 +124,28 @@ msgstr "" - "Вибачте, здається, у компоненті сталася помилка. Якщо ви хочете допомогти у " - "розв’язанні цієї проблеми, будь ласка, надішліть звіт щодо вади." - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "Не вдалося показати сповіщення: %s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "Не вдалося виконати читання з каналу gio: «%s»" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "Не вдалося встановити кодування на каналі gio: %s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "Не вдалося увімкнути режим без блокування для каналу gio: %s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -155,6 +155,17 @@ msgstr "" - "\n" - "Аплет для сповіщення користувача про виявлені ABRT проблеми\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "Питати перед перехопленням каталогу" -@@ -176,13 +187,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"Файл дампу ядра (coredump) потрібен для створення даних трасування стека, " --"тривалої і ресурсомісткої дії. У ABRT передбачено службу створення " --"трасування стека на основі дампу ядра, але для роботи з нею слід вивантажити " --"дамп ядра на сервер служби. Якщо не буде позначено цей пункт, ABRT " --"вивантажуватиме дамп ядра без додаткових підтверджень." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -228,10 +236,6 @@ msgstr "" - "звітованих проблем. Працюватиме, лише якщо увімкнено скорочене звітування." - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "Питати перед вивантаженням дампу ядра" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." -@@ -240,15 +244,15 @@ msgstr "" - "вади з обмеженим доступом, якщо існуватиме можливість потрапляння до звіту " - "конфіденційних даних." - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "Обмежувати доступ до звітів з конфіденційними даними" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "Сповіщати про неповні дані щодо проблеми" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " -@@ -258,6 +262,22 @@ msgstr "" - "виходу користувача з системи. З метою забезпечення змістовності звітів щодо " - "вад ABRT не дозволить вам надіслати повідомлення щодо таких проблем." - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "З_акрити" -@@ -283,7 +303,7 @@ msgstr "Відомості" - msgid "Quit" - msgstr "Вийти" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -293,7 +313,7 @@ msgstr "" - "\n" - "Отримати дані з бази даних пакунків і зберегти назву пакунка і компонента" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -305,11 +325,11 @@ msgstr "" - msgid "Problem directory" - msgstr "Проблемний каталог" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "Файл налаштувань" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "Використовувати цей каталог як кореневий для RPM" - -@@ -325,24 +345,25 @@ msgstr "& [-v] -d КАТАЛОГ\n" - msgid "Root directory for running container commands" - msgstr "Кореневий каталог для запуску команд контейнера" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [параметри]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "Використовувати вказане число як uid клієнта" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "Записувати до журналу syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "Додати назви програм до журналу" - -@@ -350,62 +371,52 @@ msgstr "Додати назви програм до журналу" - msgid "Unknown error" - msgstr "Невідома помилка" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "«%s» не є коректним каталогом проблеми" -+msgid "'%s' is not a valid element name" -+msgstr "«%s» не є коректною назвою елемента" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "Не вдалося змінити елемент «%s»" -+msgid "'%s' is not a valid problem directory" -+msgstr "«%s» не є коректним каталогом проблеми" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "Не уповноважено" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "Не вдалося отримати доступ до проблеми для внесення змін" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "Не вдалося змінити елемент «%s»" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Спроба змінити власника каталогу зазнала невдачі. Докладніші дані можна " - "знайти у журналах системи." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "Не вдалося отримати доступ до проблеми для читання" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "«%s» не є коректною назвою елемента" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Не вдалося визначити розмір «%s»" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "Не залишилося вільного місця для записів щодо проблем" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "Не вдалося вилучити елемент «%s» з каталогу проблеми «%s»" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -415,12 +426,12 @@ msgstr "" - "Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу " - "з цією назвою.\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "Завершувати роботу після вказаної кількості секунд бездіяльності" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "Цю програму слід запускати від імені адміністратора (root)." - -@@ -447,18 +458,22 @@ msgstr "Не запускати фонової служби" - msgid "Log to syslog even with -d" - msgstr "Записувати до журналу syslog навіть з параметром -d" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event ПОДІЯ КАТАЛОГ..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "Виконати ДІЮ над даними каталогу КАТАЛОГ" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "Обмінюватися даними безпосередньо з користувачем" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -496,88 +511,89 @@ msgstr "Кількість паралельних потоків обробки. - msgid "Maximal cache size in MiB. Default is " - msgstr "Максимальний розмір кешу у МіБ. Типовим є" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "Вимикає розпізнавання" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Ім’я користувача у системі Red Hat Support" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - "Пароль у системі Red Hat Support. Якщо не вказано, програма надішле запит " - "щодо його введення." - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "Шляхи до сертифікатів SSL uReport або тип сертифікатів" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "Вам також слід вказати --username, якщо використовується --password" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "Ви можете скористатися --username або --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "Ви можете скористатися --username або --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "Ви можете скористатися --anonymous або --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "Некоректна кількість параметрів" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "Невідоме значення параметра: «%s»\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "Пароль:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "Неможливо продовжувати без пароля\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "Автозвітування з розпізнаванням HTTP" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "Автозвітування з розпізнаванням клієнта SSL" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Yuri Chornoivan --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "анонімне автозвітування" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -597,68 +613,68 @@ msgstr "" - " КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n" - " НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "Не є каталогом: «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "Пропускаємо: «{0}» (починається з похилої риски)" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "Пропускаємо: «{0}» (починається з крапки)" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "Пропускаємо: «{0}» (містить ..)" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "Пропускаємо: «{0}» (містить пробіл)" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "Пропускаємо: «{0}» (містить символ табуляції)" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "Не вдалося змінити каталог на «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "Невідомий тип файла: «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "Не вдалося створити робочий каталог у «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "Не вдалося пересунути «{0}» до «{1}»" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "Не вдалося скопіювати «{0}» до «{1}»" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "Помилка під час перевірки «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "Розпаковуємо «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "Не вдалося створити каталог «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "Не вдалося розпакувати «{0}»" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "«{0}» успішно оброблено" - -@@ -682,21 +698,29 @@ msgstr "Не вдалося змінити власника «%s»: %s" - msgid "Deleting problem directory failed: %s" - msgstr "Спроба вилучення каталогу проблеми зазнала невдачі: %s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "Не вдалося отримати список проблем з abrt-dbus: %s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "Не вдалося перевірити, чи існує елемент, за допомогою abrt-dbus: %s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -743,7 +767,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "Не вдалося обробити дані зворотного трасування для %s" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "Не знайдено аварійного потоку обробки даних" - -@@ -852,7 +876,7 @@ msgstr "Не вдалося видобути повідомлення щодо - msgid "Oops text extracted successfully" - msgstr "Текст повідомлення щодо помилки успішно видобуто" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" -@@ -861,6 +885,38 @@ msgstr "" - "обладнанням.\n" - "Ймовірно, цю проблему не пов’язано з програмним забезпеченням.\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -1006,7 +1062,36 @@ msgstr "Не вистачає файла діагностичних даних: - msgid "All debuginfo files are available" - msgstr "Доступні всі файли діагностичних даних" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " -@@ -1017,7 +1102,7 @@ msgstr "" - "призвести до значного навантаження не мережу і використання значного об’єму " - "пам’яті на диску.)" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1257,7 +1342,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "Зберегти як -d DumpLocation, DumpLocation вказано у abrt.conf" - -@@ -1267,16 +1353,18 @@ msgstr "Зберегти отримані дані у каталозі ПРОБ - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "Зробити каталог даних проблеми доступним для всіх користувачів" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "Встановлення інтервалу створення каталогу проблеми у 1 секунду" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "Вивести рядки пошуку до стандартного виведення і завершити роботу" - -@@ -1285,11 +1373,13 @@ msgstr "Вивести рядки пошуку до стандартного в - msgid "Failed to compile regex" - msgstr "Не вдалося скомпілювати формальний вираз" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" --"Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про " --"помилки." - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1310,6 +1400,7 @@ msgstr "Не вдалося зберегти дані виявленої про - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "Не вдалося ініціалізувати спостереження systemd-journal" - -@@ -1345,11 +1436,13 @@ msgstr "Створювати новий каталог проблеми для - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "Почати читання systemd-journal з позиції КУРСОР" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "Почати читання systemd-journal з кінця" - -@@ -1365,17 +1458,20 @@ msgstr "Те саме, що і -t INT, INT визначається у plugins/C - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - "Стежити за systemd-journal з останньої позиції спостереження (якщо така є)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "Слід вказати або -c КУРСОР або -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "Не вдалося відкрити systemd-journal" - -@@ -1384,18 +1480,21 @@ msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - "Не вдалося відфільтрувати у systemd-journal лише дані systemd-coredump" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "Не вдалося пересунути курсор до кінця журналу" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "Не вдалося встановити позицію курсора systemd-journal «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "Не вдалося прочитати дані журналу." - -@@ -1426,28 +1525,77 @@ msgstr "" - "Остання позиція спостереження зберігається у " - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "Прочитати файли журналу з усіх машин" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" --msgstr "" -+msgstr "Прочитати усі файли журналу з каталогу у PATH" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" --msgstr "" -+msgstr "Не вдалося ініціалізувати systemd-journal у каталозі «%s»" - - #: ../src/plugins/abrt-dump-journal-oops.c:288 - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "Не вдалося відфільтрувати у systemd-journal лише дані ядра" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "Не вдалося розпочати спостереження з позиції курсора «%s»" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1458,45 +1606,49 @@ msgstr "" - "Видобути дані аварії Xorg з файла ФАЙЛ (або стандартного джерела вхідних " - "даних)" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "Вивести знайдені дані щодо аварії до стандартного виводу" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - "Створювати каталог проблеми для кожного знайденого повідомлення про аварійне " - "завершення роботи" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "Не вдалося зберегти позицію спостереження журналу" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "Не вдалося зберегти позицію спостереження журналу: open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "Не відновлюємо позицію спостереження журналу: файла «%s» не існує" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "Не вдалося відновити позицію спостереження з файла «%s»" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - "Не вдалося відновити позицію спостереження журналу: шлях «%s» не є адресою " - "звичайного файла" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" -@@ -1504,12 +1656,12 @@ msgstr "" - "Не вдалося відновити позицію спостереження журналу: файл «%s» перевищує за " - "розміром обмеження у %d байтів" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "Не вдалося відновити позицію спостереження журналу: open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" -@@ -1517,7 +1669,7 @@ msgstr "" - "увесь файл «%s»" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "Не вдалося пересунути журнал до розташування курсора з файла «%s»" -@@ -2069,7 +2221,7 @@ msgstr "Не вдалося завершити роботу NSS." - msgid "Sleeping for %d seconds" - msgstr "Очікуємо %d секунд" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." -@@ -2077,7 +2229,7 @@ msgstr "" - "Проблеми з ядром виникли через помилки у BIOS. На жаль, супровідники ядра " - "системи не зможуть усунути такі проблеми." - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." -@@ -2085,7 +2237,7 @@ msgstr "" - "Виникли проблеми з ядром, підтримки обладнання у системі не передбачено, " - "тому супровідники ядра не зможуть усунути цю проблему." - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " -@@ -2095,24 +2247,24 @@ msgstr "" - "(прапорці:%s). Супровідники коду ядра не зможуть проаналізувати звіти щодо " - "ядра з небажаними модулями." - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr " Модулі сумнівної якості: %s." - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Список ідентифікаторів вад" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "Вкажіть адресу сервера bodhi" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "Вкажіть випуск" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -2122,20 +2274,20 @@ msgstr "" - "\n" - "Виконати пошук оновлень на сервері bodhi" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "Пошук оновлень" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "Для цього пакунка оновлень не знайдено" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "Локальна версія пакунка є новішою за доступні оновлення" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -2164,68 +2316,69 @@ msgstr "Вивести знайдені повідомлення про поми - msgid "Delete files with found oopses" - msgstr "Вилучити файли зі знайденими даними щодо помилок ядра" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "«%s» визначає декілька каталогів проблем" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "Користування: abrt-cli [--version] КОМАНДА [КАТАЛОГ]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "Показати список проблем [у вказаних каталогах]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "Вилучити каталог даних проблеми КАТАЛОГ" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "Проаналізувати і створити звіт за даними з вказаного каталогу" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "Показати дані щодо каталогу КАТАЛОГ" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "Вивести кількість нещодавніх аварійних завершень роботи" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "Обробка декількох проблем" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" --msgstr "" -+msgstr "& list [параметри]" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "Показати список лише проблем, щодо яких не складено звітів" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Показати докладний звіт" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - "Вивести список лише тих проблем, які сталися після вказаної часової позначки" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - "Вивести список лише тих проблем, які сталися до вказаної часової позначки" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2237,53 +2390,63 @@ msgstr "" - "«abrt-auto-reporting enabled», відданої від імені користувача з правами " - "доступу root\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [параметри] КАТАЛОГ..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - "Текст з розмірами, що перевищують вказані, буде обрізано під час показу" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "Каталогу проблеми «%s» не існує" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" --msgstr "" -+msgstr "& status" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "Вивести лише кількість проблеми без жодних повідомлень" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - "Вивести дані щодо проблем, які сталися після вказаної часової позначки" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - "ABRT виявлено записи проблем (%u). Докладніші дані може бути отримано за " - "допомогою такої команди: abrt-cli list%s\n" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." --msgstr "& report [параметри] КАТАЛОГ..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" --msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "Вилучаємо «%s»" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "& report [параметри] КАТАЛОГ..." -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "Дії: вилучити(rm), інформація(i), пропустити(s):" -@@ -2292,25 +2455,180 @@ msgstr "Дії: вилучити(rm), інформація(i), пропусти - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "Дії: вилучити(rm), звітувати(e), інформація(i), пропустити(s):" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "Звітуємо щодо «%s»" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "Для переходу до наступної проблеми натисніть ENTER:" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - "Без аргументу --since, циклічний перехід між усіма виявленими проблемами." - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "Вибирає лише проблеми, виявлені після вказаної часової позначки" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/ur.po b/po/ur.po -index 5ff9b8d..9eae788 100644 ---- a/po/ur.po -+++ b/po/ur.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/ur/)\n" - "Language: ur\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,60 +321,50 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -356,12 +372,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -382,18 +398,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -423,73 +443,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -501,68 +522,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -586,18 +607,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -638,7 +667,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -727,12 +756,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -841,14 +902,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1063,7 +1153,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1073,16 +1164,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1091,8 +1184,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1112,6 +1209,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1135,11 +1233,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1153,16 +1253,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1170,18 +1273,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1200,14 +1306,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1216,70 +1325,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1776,63 +1935,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1854,65 +2013,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1920,49 +2080,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1971,24 +2141,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/vi.po b/po/vi.po -index 1eba27c..a4a6fac 100644 ---- a/po/vi.po -+++ b/po/vi.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "language/vi/)\n" - "Language: vi\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -28,108 +28,119 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "Báo cáo" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "" -@@ -151,7 +162,9 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 -@@ -184,30 +197,42 @@ msgid "" - msgstr "" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "" -@@ -233,14 +258,14 @@ msgstr "" - msgid "Quit" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -252,11 +277,11 @@ msgstr "" - msgid "Problem directory" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -270,24 +295,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "" - -@@ -295,62 +321,52 @@ msgstr "" - msgid "Unknown error" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" -+msgid "'%s' is not a valid element name" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" -+msgid "'%s' is not a valid problem directory" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "" - "Đổi quyền chủ nhân thư mục không thành. Kiểm tra bản ghi hệ thống để biết " - "thêm chi tiết." - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "Không thể có được kích thước của '%s'" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -358,12 +374,12 @@ msgid "" - "is not running.\n" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "" - -@@ -384,18 +400,22 @@ msgstr "" - msgid "Log to syslog even with -d" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -425,73 +445,74 @@ msgstr "" - msgid "Maximal cache size in MiB. Default is " - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [" - --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "" - - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "" - --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -503,68 +524,68 @@ msgid "" - " FILENAME - Uploaded archive file name\n" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "" - --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "" - -@@ -588,18 +609,26 @@ msgstr "" - msgid "Deleting problem directory failed: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -640,7 +669,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr "" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "" - -@@ -729,12 +758,44 @@ msgstr "" - msgid "Oops text extracted successfully" - msgstr "" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -843,14 +904,43 @@ msgstr "" - msgid "All debuginfo files are available" - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1065,7 +1155,8 @@ msgstr "" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "" - -@@ -1075,16 +1166,18 @@ msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "" - -@@ -1093,8 +1186,12 @@ msgstr "" - msgid "Failed to compile regex" - msgstr "" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 -@@ -1114,6 +1211,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1137,11 +1235,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1155,16 +1255,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1172,18 +1275,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1202,14 +1308,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1218,70 +1327,120 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "Extract Xorg crash from FILE (or standard input)" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1778,63 +1937,63 @@ msgstr "" - msgid "Sleeping for %d seconds" - msgstr "" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" - "Search for updates on bodhi server" - msgstr "" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1856,65 +2015,66 @@ msgstr "" - msgid "Delete files with found oopses" - msgstr "" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." - msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "" - --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "Hiển thị báo cáo chi tiết" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -1922,49 +2082,59 @@ msgid "" - "'abrt-auto-reporting enabled' as a user with root privileges\n" - msgstr "" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "" - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "" - --#: ../src/cli/report.c:28 --msgid "& report [options] DIR..." -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" - msgstr "" - --#: ../src/cli/report.c:38 --msgid "Remove PROBLEM_DIR after reporting" -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" - msgstr "" - --#: ../src/cli/report.c:71 ../src/cli/process.c:70 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 - #, c-format - msgid "Deleting '%s'" - msgstr "" - -+#: ../src/cli/report.c:79 -+msgid "& report [options] DIR..." -+msgstr "" -+ -+#: ../src/cli/report.c:89 -+msgid "Remove PROBLEM_DIR after reporting" -+msgstr "" -+ - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "" -@@ -1973,24 +2143,179 @@ msgstr "" - msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "" - --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "" - - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "" - --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "" - --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/zh_CN.po b/po/zh_CN.po -index 9a528f6..0fad725 100644 ---- a/po/zh_CN.po -+++ b/po/zh_CN.po -@@ -27,7 +27,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -37,7 +37,7 @@ msgstr "" - "abrt/language/zh_CN/)\n" - "Language: zh-CN\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -47,102 +47,102 @@ msgstr "" - msgid "View and report application crashes" - msgstr "" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "无法获取 '%s' 的所有权" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "无法打开目录以写入 '%s'" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "无法关闭通知:%s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "报告" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "无法显示通知:%s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "无法读取 gio 频道:'%s'" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "无法在 gio 频道中设定编码:%s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "无法为 gio 频道设定非阻断模式:%s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -151,6 +151,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "ABRT 探测到问题后,小程序会通知用户\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "占用目录前询问" -@@ -172,10 +183,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"核心转储对于执行费时费空间的栈回溯是一个必需的操作。ABRT 提供从核心转储生成栈回溯的远程服务但是您必须上传核心转储到该服务器。当禁用此选项后 " --"ABRT 将自动上传核心转储而不再询问。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -210,30 +221,42 @@ msgid "" - msgstr "当启用该选项后 ABRT 不再提示汇报问题。仅在缩略报告启用的情况下生效。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "在上传核心转储前询问" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr "当启用这个选项后一旦检测到敏感数据 ABRT 将创建访问受限的错误报告。" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "为敏感信息请求隐私条目保护" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "通知不完整的问题" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "不完整的问题通常在电脑关机或用户登出时产生。为了提供有效的错误报告,ABRT 将不允许您提交此类问题。" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "关闭(_C)" -@@ -259,14 +282,14 @@ msgstr "关于" - msgid "Quit" - msgstr "退出" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "Query package database and save package and component name" - msgstr "" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -278,11 +301,11 @@ msgstr "" - msgid "Problem directory" - msgstr "问题目录" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "配置文件" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "" - -@@ -296,24 +319,25 @@ msgstr "" - msgid "Root directory for running container commands" - msgstr "" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [options]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "使用 NUM 作为客户端 UID" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "记录至 syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "在日志中添加程序名" - -@@ -321,60 +345,50 @@ msgstr "在日志中添加程序名" - msgid "Unknown error" - msgstr "未知错误" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "'%s' 不是有效的问题目录" -+msgid "'%s' is not a valid element name" -+msgstr "'%s' 不是一个有效的元素名" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "无法修改 '%s' 元素" -+msgid "'%s' is not a valid problem directory" -+msgstr "'%s' 不是有效的问题目录" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "未授权" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "无法访问该问题进行修改" -- --#: ../src/dbus/abrt-dbus.c:470 --msgid "Chowning directory failed. Check system logs for more details." --msgstr "变更目录属主失败。请检查系统日志以了解更多。" -- --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" - msgstr "" - --#: ../src/dbus/abrt-dbus.c:630 -+#: ../src/dbus/abrt-dbus.c:317 - #, c-format --msgid "'%s' is not a valid element name" --msgstr "'%s' 不是一个有效的元素名" -+msgid "'%s' element can't be modified" -+msgstr "无法修改 '%s' 元素" - --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:536 -+msgid "Chowning directory failed. Check system logs for more details." -+msgstr "变更目录属主失败。请检查系统日志以了解更多。" -+ -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "无法获取 '%s' 的大小" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "没有留出问题空间" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "无法从问题目录 '%s' 中删除元素 '%s'" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -382,12 +396,12 @@ msgid "" - "is not running.\n" - msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "闲置 NUM 秒后退出" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "此程序必须以 root 权限运行。" - -@@ -410,18 +424,22 @@ msgstr "不要在后台运行" - msgid "Log to syslog even with -d" - msgstr "即使加入 -d 选项也记录至 syslog" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR......" -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "在 DIR 中运行 EVENT " - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "直接联系用户" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -459,87 +477,88 @@ msgstr "并行工作者数量。 默认为" - msgid "Maximal cache size in MiB. Default is " - msgstr "以 MiB 计最大缓存尺寸。默认为" - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "关闭认证" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat 支持用户名" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat 支持密码,如果不输入密码则会有提示。" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL 证书路径或者证书类型" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "您还需要为 --password 指定 --username" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "您可以使用 --username 或者 --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "您可以使用 --username 或者 --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "您可以使用 --anonymous 或者 --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "无效参数数值" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "未知选项值:'%s'\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "密码:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "需要密码才可继续\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP 认证的自动报告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL 客户端认证的自动报告" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Leah Liu --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "匿名自动报告" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -559,83 +578,83 @@ msgstr "" - " FILENAME - 已上传归档文件吗\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "不是一个目录:'{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "跳过:'{0}'(以斜杠开始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "跳过:'{0}'(以点开始)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "跳过:'{0}'(包含..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "跳过:'{0}'(包含空格)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "跳过:'{0}'(包含 tab)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "无法该为目录 '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "未知文件类型:'{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "无法在 '{0}' 在这创建工作目录" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "无法从 '{0}' 迁移到 '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "无法从 '{0}' 迁复制 '{1}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "'{0}' 中的验证错误" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "正在解压缩 '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "无法创建 '{0}' 目录" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "无法解压缩 '{0}'" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "成功处理 '{0}'" - -@@ -659,18 +678,26 @@ msgstr "无法变更 '%s' 的属主:%s" - msgid "Deleting problem directory failed: %s" - msgstr "删除问题目录失败:%s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "无法从 abrt-dbus 中获取问题数据:%s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "无法从 abrt-dbus 中获取问题列表:%s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "无法从 abrt-dbus 中获取问题数据:%s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" - msgstr "" -@@ -715,7 +742,7 @@ msgstr "" - msgid "Backtrace parsing failed for %s" - msgstr " %s 回溯解析失败" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "崩溃线程" - -@@ -817,13 +844,45 @@ msgstr "无法提取异常信息: '{0}'" - msgid "Oops text extracted successfully" - msgstr "成功提取异常文字信息" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "内核日志表明已探测到硬件错误。\n" - "这很可能不是普通的软件问题。\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -936,14 +995,43 @@ msgstr "缺少 debuginfo 文件:{0}" - msgid "All debuginfo files are available" - msgstr "所有调试信息文件均可用。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "可以上传核心转储了吗(可能包含敏感数据)?如果您的回答为“否”,则会在本地生成一个栈跟踪(可能会下载大量数据)。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1173,7 +1261,8 @@ msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "与 -d DumpLocation 相同,是在 abrt.conf 中指定 DumpLocation。" - -@@ -1183,16 +1272,18 @@ msgstr "保存提取信息到PROBLEM" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "使问题目录可读" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "每 1 秒创建一个控流问题目录" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "输出搜索字符串至标准输出并退出" - -@@ -1202,9 +1293,13 @@ msgstr "输出搜索字符串至标准输出并退出" - msgid "Failed to compile regex" - msgstr "编译正则表达式失败" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "无法更新问题:发现超过一个异常" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1223,6 +1318,7 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "" - -@@ -1246,11 +1342,13 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "" - -@@ -1264,16 +1362,19 @@ msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "" - -@@ -1281,18 +1382,21 @@ msgstr "" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "" - -@@ -1311,14 +1415,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1327,12 +1434,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1341,58 +1494,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "从文件 FILE (或标准输入)提取 Xorg 崩溃信息" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "在标准输出上输出找到的崩溃数据" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "" -@@ -1902,43 +2059,43 @@ msgstr "关闭 NSS 失败。" - msgid "Sleeping for %d seconds" - msgstr "休眠 %d 秒" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "由于 BIOS 出错出现内核问题。遗憾的是内核维护者尚未解决这个问题。" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "出现内核问题,但您的硬件不支持,因此内核维护者无法修复这个问题。" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "发生了内核问题,但您的内核已被污染(标志:%s)。内核维护器无法诊断被污染的报告。" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "受污染的模块:%s。" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "Bug 错误 ID 列表" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "指定一个 Bodhi 服务器地址" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "指定一个发行版本号" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1948,20 +2105,20 @@ msgstr "" - "\n" - "在 Bodhi 服务器上搜索更新" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "正在搜索更新" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "未找到该软件包的可用更新" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "该软件包的本地版本比可用更新的版本要高" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1985,66 +2142,67 @@ msgstr "打印已找到的内核错误" - msgid "Delete files with found oopses" - msgstr "删除已找到的内核错误文件" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "'%s' 标识出多于一个问题目录" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "列出所有问题,可指定[目录]" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "删除问题目录 DIR" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "分析并报告 DIR 中的问题数据" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "输出有关 DIR 的信息" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "显示最近的崩溃计数" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "处理多个问题" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "详情请查看 'abrt-cli COMMAND --help'" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "只列出未报告的问题" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "显示详细报告" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "仅列出比指定时间更晚的问题" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "仅列出比指定时间戳更早的问题" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2054,53 +2212,63 @@ msgstr "" - "已禁用自动报告功能。请考虑启用它,方法是\n" - "作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [options] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "大于此处的文字在显示时会被削减" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "没有问题目录 '%s'" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "仅显示问题计数。" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "仅显示比指定时间更晚的问题。" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "正在删除 '%s'" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [options] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "报告后删除 PROBLEM_DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "正在删除 '%s'" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "动作:remove(rm), info(i), skip(s):" -@@ -2111,27 +2279,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "动作:remove(rm), report(e), info(i), skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "正在报告 '%s'" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "下一个问题请按 ENTER:" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "没有 --since 参数,则重复所有探测到的问题。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "只选择时间戳之后探测到的问题" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " -diff --git a/po/zh_TW.po b/po/zh_TW.po -index f3c4ca5..8c51262 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -8,21 +8,22 @@ - # Jiří Moskovčák , 2011 - # Terry Chuang , 2011-2013 - # Chester Cheng , 2015. #zanata -+# Ding-Yi Chen , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" --"POT-Creation-Date: 2015-04-08 13:09+0200\n" -+"POT-Creation-Date: 2016-02-11 12:54+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-21 07:48-0400\n" --"Last-Translator: Cheng-Chia Tseng \n" -+"PO-Revision-Date: 2016-02-01 06:25-0500\n" -+"Last-Translator: Ding-Yi Chen \n" - "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" - "abrt/language/zh_TW/)\n" - "Language: zh-TW\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.5.1\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/applet/abrt-applet.desktop.in.h:1 - msgid "Problem Reporting" -@@ -32,102 +33,102 @@ msgstr "問題回報" - msgid "View and report application crashes" - msgstr "檢視與回報應用程式崩潰" - --#: ../src/applet/applet.c:157 -+#: ../src/applet/applet.c:260 ../src/cli/report.c:51 - #, c-format - msgid "Can't take ownership of '%s'" - msgstr "無法掌握「%s」的擁有權" - --#: ../src/applet/applet.c:165 -+#: ../src/applet/applet.c:268 - #, c-format - msgid "Can't open directory for writing '%s'" - msgstr "無法開啟目錄以寫入「%s」" - --#: ../src/applet/applet.c:442 ../src/applet/applet.c:461 -+#: ../src/applet/applet.c:546 ../src/applet/applet.c:564 - #, c-format - msgid "Can't close notification: %s" - msgstr "無法關閉通知:%s" - --#: ../src/applet/applet.c:496 -+#: ../src/applet/applet.c:598 - msgid "Oops!" - msgstr "噢喔!" - --#: ../src/applet/applet.c:514 -+#: ../src/applet/applet.c:616 - msgid "Report" - msgstr "回報" - --#: ../src/applet/applet.c:523 -+#: ../src/applet/applet.c:625 - msgid "Restart" - msgstr "重新啟動" - --#: ../src/applet/applet.c:588 -+#: ../src/applet/applet.c:694 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. The problem has been automatically " - "reported." - msgstr "我們很抱歉,%s 似乎當掉了。此問題已經自動回報。" - --#: ../src/applet/applet.c:593 -+#: ../src/applet/applet.c:699 - #, c-format - msgid "" - "We’re sorry, it looks like %s crashed. The problem will be reported when the " - "internet is available." - msgstr "我們很抱歉,%s 似乎當掉了。此問題會在網際網路可用時回報。" - --#: ../src/applet/applet.c:599 ../src/applet/applet.c:613 --#: ../src/applet/applet.c:641 -+#: ../src/applet/applet.c:705 ../src/applet/applet.c:719 -+#: ../src/applet/applet.c:747 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. Please contact the developer if you " - "want to report the issue." - msgstr "我們很抱歉,%s 似乎當掉了。如果您想要回報該議題,請聯絡開發者。" - --#: ../src/applet/applet.c:607 -+#: ../src/applet/applet.c:713 - #, c-format - msgid "" - "We're sorry, it looks like %s crashed. If you'd like to help resolve the " - "issue, please send a report." - msgstr "我們很抱歉,%s 似乎當掉了。若您想要協助解決這個議題,請傳送回報。" - --#: ../src/applet/applet.c:626 -+#: ../src/applet/applet.c:732 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "has been automatically reported." - msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題已經自動回報。" - --#: ../src/applet/applet.c:630 -+#: ../src/applet/applet.c:736 - msgid "" - "We're sorry, it looks like a problem occurred in a component. The problem " - "will be reported when the internet is available." - msgstr "我們很抱歉,似乎有個組件遭遇問題。此問題會在網際網路可用時回報。" - --#: ../src/applet/applet.c:635 -+#: ../src/applet/applet.c:741 - msgid "" - "We're sorry, it looks like a problem occurred. If you'd like to help resolve " - "the issue, please send a report." - msgstr "我們很抱歉,似乎遭遇某個問題。若您想要協助解決這個議題,請傳送回報。" - --#: ../src/applet/applet.c:680 -+#: ../src/applet/applet.c:786 - #, c-format - msgid "Can't show notification: %s" - msgstr "無法顯示通知:%s" - - #. TODO: Terminate child's process? --#: ../src/applet/applet.c:712 ../src/daemon/abrt-upload-watch.c:168 -+#: ../src/applet/applet.c:818 ../src/daemon/abrt-upload-watch.c:168 - #, c-format - msgid "Can't read from gio channel: '%s'" - msgstr "無法從 gio 通道讀取:「%s」" - --#: ../src/applet/applet.c:790 -+#: ../src/applet/applet.c:896 - #, c-format - msgid "Can't set encoding on gio channel: %s" - msgstr "無法設定 gio 通道上的編碼:%s" - --#: ../src/applet/applet.c:794 -+#: ../src/applet/applet.c:900 - #, c-format - msgid "Can't turn on nonblocking mode for gio channel: %s" - msgstr "無法為 gio 通道啟動不阻擋模式:%s" - --#: ../src/applet/applet.c:1090 -+#: ../src/applet/applet.c:1186 - msgid "" - "& [-v] [DIR]...\n" - "\n" -@@ -136,6 +137,17 @@ msgstr "& [-v] [DIR]...\n" - "\n" - "新問題被 ABRT 偵測到時通知使用者的面板程式\n" - -+#: ../src/configuration-gui/abrt-config-widget.c:483 -+msgid "" -+"The configuration option above has been moved to GSettings and the switch is " -+"linked to the value of the setting 'report-technical-problems' from the " -+"schema 'org.gnome.desktop.privacy'." -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.c:501 -+msgid "The configuration option above can be configured in" -+msgstr "" -+ - #: ../src/configuration-gui/abrt-config-widget.glade.h:1 - msgid "Ask before stealing directory" - msgstr "在佔用目錄前詢問" -@@ -157,10 +169,10 @@ msgid "" - "The coredump file is necessary for generating stack trace which is time and " - "space consuming operation. ABRT provides a service which generates the stack " - "trace from the coredump but you have to upload the coredump to this service. " --"With this option disabled ABRT will upload the coredump without asking." -+"With option 'Always' ABRT will always upload the coredump without asking. " -+"With option 'Never' the stack trace will be always generated locally. With " -+"option 'Ask' ABRT will always ask the user." - msgstr "" --"需要有核心傾印檔案才能生成堆疊追蹤資訊,而這個動作既費時又費空間。ABRT " --"提供以核心傾印生成堆疊追蹤資訊的服務,但您必須將核心傾印檔上傳到此服務中。停用此選項後,ABRT 不須詢問就會上傳核心傾印檔案。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:6 - msgid "" -@@ -196,30 +208,42 @@ msgid "" - msgstr " 啟用此選項後,ABRT 永遠不會顯示問題回報通知。僅在啟用簡短回報時生效。" - - #: ../src/configuration-gui/abrt-config-widget.glade.h:10 --msgid "Ask before uploading coredump" --msgstr "在上傳核心傾印前詢問意願" -- --#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "" - " With this option enabled ABRT always create bug ticket with restricted " - "access if possibly sensitive data are detected." - msgstr " 若啟用此選項,當 ABRT 偵測到敏感資訊時總會以限制存取方式建立臭蟲回報。" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:12 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:11 - msgid "Request private ticket for sensitive information" - msgstr "內含敏感訊息故申請隱私請票" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:13 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:12 - msgid "Notify incomplete problems" - msgstr "通知不完整的問題" - --#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+#: ../src/configuration-gui/abrt-config-widget.glade.h:13 - msgid "" - "Incomplete problems are detected while computer is shutting down or user is " - "logging out. In order to provide valuable problem reports, ABRT will not " - "allow you to submit these problems." - msgstr "資料不完整的問題通常在電腦關機動作之時,或是使用者正在登出時被偵測到。為了提供有價值的問題回報,ABRT 不會允許您提交此類問題報告。" - -+#: ../src/configuration-gui/abrt-config-widget.glade.h:14 -+msgid "Always" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:15 -+msgid "Never" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:16 -+msgid "Ask" -+msgstr "" -+ -+#: ../src/configuration-gui/abrt-config-widget.glade.h:17 -+msgid "Upload coredump for backtrace generation" -+msgstr "" -+ - #: ../src/configuration-gui/system-config-abrt.c:79 - msgid "_Close" - msgstr "關閉(_C)" -@@ -245,7 +269,7 @@ msgstr "關於" - msgid "Quit" - msgstr "退出" - --#: ../src/daemon/abrt-action-save-package-data.c:390 -+#: ../src/daemon/abrt-action-save-package-data.c:393 - msgid "" - "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" -@@ -254,7 +278,7 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - "\n" - "查詢軟體包資料庫,並儲存軟體包與組件名稱" - --#: ../src/daemon/abrt-action-save-package-data.c:403 -+#: ../src/daemon/abrt-action-save-package-data.c:406 - #: ../src/daemon/abrt-action-save-container-data.c:210 - #: ../src/plugins/abrt-action-analyze-backtrace.c:53 - #: ../src/plugins/abrt-action-analyze-c.c:141 -@@ -266,11 +290,11 @@ msgstr "& [-v] [-c CONFFILE] [-r CHROOT] -d DIR\n" - msgid "Problem directory" - msgstr "問題目錄" - --#: ../src/daemon/abrt-action-save-package-data.c:404 -+#: ../src/daemon/abrt-action-save-package-data.c:407 - msgid "Configuration file" - msgstr "組態檔" - --#: ../src/daemon/abrt-action-save-package-data.c:405 -+#: ../src/daemon/abrt-action-save-package-data.c:408 - msgid "Use this directory as RPM root" - msgstr "使用此目錄作為 RPM 根基" - -@@ -286,24 +310,25 @@ msgstr "& [-v] -d DIR\n" - msgid "Root directory for running container commands" - msgstr "執行容器指令的根基目錄" - --#: ../src/daemon/abrt-server.c:785 ../src/dbus/abrt-dbus.c:891 -+#: ../src/daemon/abrt-server.c:796 ../src/dbus/abrt-dbus.c:894 - #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:444 - msgid "& [options]" - msgstr "& [選項]" - --#: ../src/daemon/abrt-server.c:796 -+#: ../src/daemon/abrt-server.c:807 - msgid "Use NUM as client uid" - msgstr "使用 NUM 作為客戶端 UID" - --#: ../src/daemon/abrt-server.c:797 ../src/daemon/abrt-upload-watch.c:280 -+#: ../src/daemon/abrt-server.c:808 ../src/daemon/abrt-upload-watch.c:280 - #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:97 - #: ../src/plugins/abrt-dump-journal-core.c:477 - #: ../src/plugins/abrt-dump-journal-oops.c:219 --#: ../src/plugins/abrt-dump-xorg.c:244 -+#: ../src/plugins/abrt-dump-journal-xorg.c:188 -+#: ../src/plugins/abrt-dump-xorg.c:52 - msgid "Log to syslog" - msgstr "紀錄至 syslog" - --#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrtd.c:460 -+#: ../src/daemon/abrt-server.c:809 ../src/daemon/abrtd.c:460 - msgid "Add program names to log" - msgstr "加入程式名稱至紀錄檔" - -@@ -311,60 +336,50 @@ msgstr "加入程式名稱至紀錄檔" - msgid "Unknown error" - msgstr "未知錯誤" - --#: ../src/dbus/abrt-dbus.c:197 -+#: ../src/dbus/abrt-dbus.c:167 - #, c-format --msgid "'%s' is not a valid problem directory" --msgstr "「%s」不是有效的問題目錄" -+msgid "'%s' is not a valid element name" -+msgstr "「%s」不是有效的元素名稱" - --#: ../src/dbus/abrt-dbus.c:232 -+#: ../src/dbus/abrt-dbus.c:219 - #, c-format --msgid "'%s' element can't be modified" --msgstr "無法修改「%s」元素" -+msgid "'%s' is not a valid problem directory" -+msgstr "「%s」不是有效的問題目錄" - --#: ../src/dbus/abrt-dbus.c:253 ../src/dbus/abrt-dbus.c:455 --#: ../src/dbus/abrt-dbus.c:507 ../src/dbus/abrt-dbus.c:571 --#: ../src/dbus/abrt-dbus.c:737 ../src/dbus/abrt-configuration.c:618 --#: ../src/dbus/abrt-configuration.c:683 -+#: ../src/dbus/abrt-dbus.c:272 ../src/dbus/abrt-dbus.c:520 -+#: ../src/dbus/abrt-configuration.c:618 ../src/dbus/abrt-configuration.c:683 - #, c-format - msgid "Not Authorized" - msgstr "未授權" - --#: ../src/dbus/abrt-dbus.c:265 --msgid "Can't access the problem for modification" --msgstr "無法存取問題以修改" -+#: ../src/dbus/abrt-dbus.c:285 -+msgid "Can't open the problem" -+msgstr "" -+ -+#: ../src/dbus/abrt-dbus.c:317 -+#, c-format -+msgid "'%s' element can't be modified" -+msgstr "無法修改「%s」元素" - --#: ../src/dbus/abrt-dbus.c:470 -+#: ../src/dbus/abrt-dbus.c:536 - msgid "Chowning directory failed. Check system logs for more details." - msgstr "目錄擁有者變更失敗。請檢查紀錄檔瞭解更多細節。" - --#: ../src/dbus/abrt-dbus.c:581 --msgid "Can't access the problem for reading" --msgstr "無法存取問題以閱讀" -- --#: ../src/dbus/abrt-dbus.c:630 --#, c-format --msgid "'%s' is not a valid element name" --msgstr "「%s」不是有效的元素名稱" -- --#: ../src/dbus/abrt-dbus.c:651 -+#: ../src/dbus/abrt-dbus.c:665 - #, c-format - msgid "Can't get size of '%s'" - msgstr "無法取得「%s」的大小" - --#: ../src/dbus/abrt-dbus.c:666 -+#: ../src/dbus/abrt-dbus.c:680 - msgid "No problem space left" - msgstr "無剩餘問題空間" - --#: ../src/dbus/abrt-dbus.c:698 -+#: ../src/dbus/abrt-dbus.c:715 - #, c-format - msgid "Can't delete the element '%s' from the problem directory '%s'" - msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" - --#: ../src/dbus/abrt-dbus.c:725 --msgid "Can't access the problem" --msgstr "" -- --#: ../src/dbus/abrt-dbus.c:873 ../src/dbus/abrt-configuration.c:983 -+#: ../src/dbus/abrt-dbus.c:876 ../src/dbus/abrt-configuration.c:983 - #: ../src/daemon/abrtd.c:426 - #, c-format - msgid "" -@@ -372,12 +387,12 @@ msgid "" - "is not running.\n" - msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" - --#: ../src/dbus/abrt-dbus.c:900 ../src/dbus/abrt-configuration.c:1011 -+#: ../src/dbus/abrt-dbus.c:903 ../src/dbus/abrt-configuration.c:1011 - #: ../src/daemon/abrtd.c:459 - msgid "Exit after NUM seconds of inactivity" - msgstr "在停止使用 NUM 秒後離開" - --#: ../src/dbus/abrt-dbus.c:918 ../src/dbus/abrt-configuration.c:1021 -+#: ../src/dbus/abrt-dbus.c:921 ../src/dbus/abrt-configuration.c:1021 - msgid "This program must be run as root." - msgstr "此程式必須以 root 身份執行。" - -@@ -400,18 +415,22 @@ msgstr "不要在幕後運行" - msgid "Log to syslog even with -d" - msgstr "即使加上 -d 參數也紀錄至 syslog" - --#: ../src/daemon/abrt-handle-event.c:406 --msgid "& [-v -i] -e|--event EVENT DIR..." --msgstr "& [-v -i] -e|--event EVENT DIR..." -+#: ../src/daemon/abrt-handle-event.c:394 -+msgid "& [-v -i -n INCREMENT] -e|--event EVENT DIR..." -+msgstr "" - --#: ../src/daemon/abrt-handle-event.c:414 -+#: ../src/daemon/abrt-handle-event.c:403 - msgid "Run EVENT on DIR" - msgstr "於 DIR 執行 EVENT" - --#: ../src/daemon/abrt-handle-event.c:415 -+#: ../src/daemon/abrt-handle-event.c:404 - msgid "Communicate directly to the user" - msgstr "直接與使用者溝通" - -+#: ../src/daemon/abrt-handle-event.c:405 -+msgid "Increment the nice value by INCREMENT" -+msgstr "" -+ - #: ../src/daemon/abrt-upload-watch.c:118 - #, c-format - msgid "No free workers and full buffer. Omitting archive '%s'" -@@ -449,87 +468,88 @@ msgstr "同時工作序數量。預設為 " - msgid "Maximal cache size in MiB. Default is " - msgstr "最大快取大小,單位為 MiB。預設為 " - --#: ../src/daemon/abrt-auto-reporting.c:176 -+#: ../src/daemon/abrt-auto-reporting.c:198 -+#: ../src/daemon/abrt-auto-reporting.c:206 - msgid "& [ " - msgstr "& [ " - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:213 -+#: ../src/daemon/abrt-auto-reporting.c:233 - msgid "Turns the authentication off" - msgstr "關閉身份認證" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:214 -+#: ../src/daemon/abrt-auto-reporting.c:234 - msgid "Red Hat Support user name" - msgstr "Red Hat Support 使用者名稱" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:215 -+#: ../src/daemon/abrt-auto-reporting.c:235 - msgid "Red Hat Support password, if not given, a prompt for it will be issued" - msgstr "Red Hat Support 密碼;如果未提供密碼,將會發出提示" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:216 -+#: ../src/daemon/abrt-auto-reporting.c:236 - msgid "uReport SSL certificate paths or certificate type" - msgstr "uReport SSL 憑證路徑或憑證類型" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:227 -+#: ../src/daemon/abrt-auto-reporting.c:252 - msgid "You also need to specify --username for --password" - msgstr "使用 --password 時必須指定 --username" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:233 -+#: ../src/daemon/abrt-auto-reporting.c:258 - msgid "You can use either --username or --certificate" - msgstr "您可以使用 --username 或 --certificate" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:239 -+#: ../src/daemon/abrt-auto-reporting.c:264 - msgid "You can use either --username or --anonymous" - msgstr "您可以使用 --username 或 --anonymous" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:245 -+#: ../src/daemon/abrt-auto-reporting.c:270 - msgid "You can use either --anonymous or --certificate" - msgstr "您可以使用 --anonymous 或 --certificate" - --#: ../src/daemon/abrt-auto-reporting.c:251 -+#: ../src/daemon/abrt-auto-reporting.c:277 - msgid "Invalid number of arguments" - msgstr "無效的引數數目" - --#: ../src/daemon/abrt-auto-reporting.c:270 -+#: ../src/daemon/abrt-auto-reporting.c:296 - #, c-format - msgid "Unknown option value: '%s'\n" - msgstr "未知的選項值:「%s」\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:305 -+#: ../src/daemon/abrt-auto-reporting.c:336 - msgid "Password:" - msgstr "密碼:" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:308 -+#: ../src/daemon/abrt-auto-reporting.c:339 - msgid "Cannot continue without password\n" - msgstr "沒有密碼無法繼續\n" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng - #. Print only the part before ':' of a string like "username:password" --#: ../src/daemon/abrt-auto-reporting.c:347 -+#: ../src/daemon/abrt-auto-reporting.c:380 - msgid "HTTP Authenticated auto reporting" - msgstr "HTTP 身份認證自動回報" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:349 -+#: ../src/daemon/abrt-auto-reporting.c:382 - msgid "SSL Client Authenticated auto reporting" - msgstr "SSL 用戶端身份憑證自動回報" - - # translation auto-copied from project abrt, version rhel7, document abrt, author Chester Cheng --#: ../src/daemon/abrt-auto-reporting.c:351 -+#: ../src/daemon/abrt-auto-reporting.c:384 - msgid "anonymous auto reporting" - msgstr "匿名自動回報" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:69 -+#: ../src/daemon/abrt-handle-upload.in:135 - #, c-format - msgid "" - "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" -@@ -549,83 +569,83 @@ msgstr "" - " FILENAME - 上傳過的封存檔名稱\n" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:105 --#: ../src/daemon/abrt-handle-upload.in:108 -+#: ../src/daemon/abrt-handle-upload.in:171 -+#: ../src/daemon/abrt-handle-upload.in:174 - msgid "Not a directory: '{0}'" - msgstr "不是目錄:「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:111 -+#: ../src/daemon/abrt-handle-upload.in:177 - msgid "Skipping: '{0}' (starts with slash)" - msgstr "略過:「{0}」(以 / 起頭)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:114 -+#: ../src/daemon/abrt-handle-upload.in:180 - msgid "Skipping: '{0}' (starts with dot)" - msgstr "略過:「{0}」(以 . 起頭)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:117 -+#: ../src/daemon/abrt-handle-upload.in:183 - msgid "Skipping: '{0}' (contains ..)" - msgstr "略過:「{0}」(含有 ..)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:120 -+#: ../src/daemon/abrt-handle-upload.in:186 - msgid "Skipping: '{0}' (contains space)" - msgstr "略過:「{0}」(含有空白)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:123 -+#: ../src/daemon/abrt-handle-upload.in:189 - msgid "Skipping: '{0}' (contains tab)" - msgstr "略過:「{0}」(含有跳格符)" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:128 -+#: ../src/daemon/abrt-handle-upload.in:194 - msgid "Can't change directory to '{0}'" - msgstr "無法切換目錄至「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:139 -+#: ../src/daemon/abrt-handle-upload.in:205 - msgid "Unknown file type: '{0}'" - msgstr "未知檔案類型:「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:144 -+#: ../src/daemon/abrt-handle-upload.in:210 - msgid "Can't create working directory in '{0}'" - msgstr "無法在「{0}」中建立工作目錄" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:155 -+#: ../src/daemon/abrt-handle-upload.in:221 - msgid "Can't move '{0}' to '{1}'" - msgstr "無法將「{0}」移動至「{1}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:160 -+#: ../src/daemon/abrt-handle-upload.in:226 - msgid "Can't copy '{0}' to '{1}'" - msgstr "無法將「{0}」複製至「{1}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:164 -+#: ../src/daemon/abrt-handle-upload.in:230 - msgid "Verification error on '{0}'" - msgstr "驗證「{0}」上的錯誤" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:166 -+#: ../src/daemon/abrt-handle-upload.in:232 - msgid "Unpacking '{0}'" - msgstr "正在解開「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:170 -+#: ../src/daemon/abrt-handle-upload.in:236 - msgid "Can't create '{0}' directory" - msgstr "無法建立「{0}」目錄" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:174 -+#: ../src/daemon/abrt-handle-upload.in:240 - msgid "Can't unpack '{0}'" - msgstr "無法解開「{0}」" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/daemon/abrt-handle-upload.in:198 -+#: ../src/daemon/abrt-handle-upload.in:260 - msgid "'{0}' processed successfully" - msgstr "「{0}」處理成功" - -@@ -649,21 +669,29 @@ msgstr "無法 chown 「%s」:%s" - msgid "Deleting problem directory failed: %s" - msgstr "刪除問題目錄失敗:%s" - --#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 --#: ../src/lib/problem_api_dbus.c:286 -+#: ../src/lib/problem_api_dbus.c:131 - #, c-format --msgid "Can't get problem data from abrt-dbus: %s" --msgstr "無法從 abrt-dbus 取得問題資料:%s" -+msgid "D-Bus GetInfo method call failed: %s" -+msgstr "" -+ -+#: ../src/lib/problem_api_dbus.c:166 -+msgid "Can't get problem data from abrt-dbus" -+msgstr "" - --#: ../src/lib/problem_api_dbus.c:169 -+#: ../src/lib/problem_api_dbus.c:193 - #, c-format - msgid "Can't get problem list from abrt-dbus: %s" - msgstr "無法從 abrt-dbus 取得問題清單:%s" - --#: ../src/lib/problem_api_dbus.c:250 -+#: ../src/lib/problem_api_dbus.c:230 ../src/lib/problem_api_dbus.c:315 -+#, c-format -+msgid "Can't get problem data from abrt-dbus: %s" -+msgstr "無法從 abrt-dbus 取得問題資料:%s" -+ -+#: ../src/lib/problem_api_dbus.c:274 - #, c-format - msgid "Can't test whether the element exists over abrt-dbus: %s" --msgstr "" -+msgstr "無法測試元素是否存在 abrt-dbus 上:%s" - - #: ../src/lib/ignored_problems.c:233 - #, c-format -@@ -704,7 +732,7 @@ msgstr "& [選項] -d DIR\n" - msgid "Backtrace parsing failed for %s" - msgstr "%s 的追蹤解析失敗" - --#: ../src/plugins/abrt-action-analyze-backtrace.c:146 -+#: ../src/plugins/abrt-action-analyze-backtrace.c:150 - msgid "Crash thread not found" - msgstr "沒有找到崩潰執行序" - -@@ -808,13 +836,45 @@ msgstr "無法抽出 oops 訊息:「{0}」" - msgid "Oops text extracted successfully" - msgstr "Oops 內文已成功抽出" - --#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 -+#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:89 - msgid "" - "The kernel log indicates that hardware errors were detected.\n" - "This is most likely not a software problem.\n" - msgstr "內核記錄指出有偵測到硬體錯誤。\n" - "這很可能不是軟體問題。\n" - -+#: ../src/plugins/abrt-action-find-bodhi-update:88 -+msgid "cannot open problem directory '{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:102 -+msgid "Problem directory error: {0}" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:117 -+msgid "Using product '{0}' from /etc/os-release." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:119 -+msgid "Using product {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:121 -+msgid "Using product version {0}." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:133 -+msgid "Duplicate bugzilla bug '#{0}' was found" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:135 -+msgid "There is no bugzilla bug with 'abrt_hash:{0}'" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-find-bodhi-update:140 -+msgid "Warning: abrt-bodhi do not support Product version 'Rawhide'" -+msgstr "" -+ - #: ../src/plugins/abrt-action-generate-backtrace.c:42 - msgid "" - "& [options] -d DIR\n" -@@ -949,14 +1009,43 @@ msgstr "遺失 debuginfo 檔:{0}" - msgid "All debuginfo files are available" - msgstr "所有的 debuginfo 檔案皆可用" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 -+msgid "" -+"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" -+"\t[-r REPO]\n" -+"\n" -+"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" -+"ABRT system cache." -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 -+msgid "Noninteractive, assume 'Yes' to all questions" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 -+msgid "- means STDIN, default: build_ids" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 -+msgid "Download only specified files" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 -+msgid "Pattern to use when searching for repos, default: *debug*" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 -+msgid "Ignored option" -+msgstr "" -+ -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:63 - msgid "" - "Ok to upload core dump? (It may contain sensitive data). If your answer is " - "'No', a stack trace will be generated locally. (It may download a huge " - "amount of data)." - msgstr "確定要上傳核心傾印?(它可能包含敏感資料)。若您的答案為「否」,將會在本地建立堆疊追蹤。(這可能需要下載大量資料)。" - --#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 -+#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:72 - msgid "" - "Do you want to generate a stack trace locally? (It may download a huge " - "amount of data but reporting can't continue without stack trace)." -@@ -1186,7 +1275,8 @@ msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" - #: ../src/plugins/abrt-dump-oops.c:103 - #: ../src/plugins/abrt-dump-journal-core.c:479 - #: ../src/plugins/abrt-dump-journal-oops.c:225 --#: ../src/plugins/abrt-dump-xorg.c:247 -+#: ../src/plugins/abrt-dump-journal-xorg.c:191 -+#: ../src/plugins/abrt-dump-xorg.c:55 - msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" - msgstr "與 -d DumpLocation 相同,DumpLocation 於 abrt.conf 內指定" - -@@ -1196,16 +1286,18 @@ msgstr "將抽出的資訊存入 PROBLEM 中" - - #: ../src/plugins/abrt-dump-oops.c:105 - #: ../src/plugins/abrt-dump-journal-oops.c:226 --#: ../src/plugins/abrt-dump-xorg.c:248 -+#: ../src/plugins/abrt-dump-journal-xorg.c:192 -+#: ../src/plugins/abrt-dump-xorg.c:56 - msgid "Make the problem directory world readable" - msgstr "讓問題目錄全世界都可以讀取" - - #: ../src/plugins/abrt-dump-oops.c:106 - #: ../src/plugins/abrt-dump-journal-oops.c:227 -+#: ../src/plugins/abrt-dump-journal-xorg.c:193 - msgid "Throttle problem directory creation to 1 per second" - msgstr "節制問題目錄的建立速度為每秒 1 個" - --#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:249 -+#: ../src/plugins/abrt-dump-oops.c:107 ../src/plugins/abrt-dump-xorg.c:57 - msgid "Print search string(s) to stdout and exit" - msgstr "將搜尋字串列印在 stdout 上並離開" - -@@ -1215,9 +1307,13 @@ msgstr "將搜尋字串列印在 stdout 上並離開" - msgid "Failed to compile regex" - msgstr "無法編譯 regex" - --#: ../src/plugins/abrt-dump-oops.c:186 --msgid "Can't update the problem: more than one oops found" --msgstr "無法更新問題:找到超過一份 oops" -+#: ../src/plugins/abrt-dump-oops.c:177 -+msgid "Can't update the problem: no oops found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-oops.c:183 -+msgid "More oopses found: process only the first one" -+msgstr "" - - #: ../src/plugins/abrt-dump-journal-core.c:341 - #: ../src/plugins/abrt-dump-journal-core.c:377 -@@ -1236,6 +1332,7 @@ msgstr "無法在 abrt 資料庫中儲存偵測問題資料" - - #: ../src/plugins/abrt-dump-journal-core.c:427 - #: ../src/plugins/abrt-dump-journal-oops.c:165 -+#: ../src/plugins/abrt-dump-journal-xorg.c:121 - msgid "Failed to initialize systemd-journal watch" - msgstr "無法初始化 systemd-journal watch" - -@@ -1259,11 +1356,13 @@ msgstr "在 DIR 目錄中為每個核心傾印建立新的問題目錄" - - #: ../src/plugins/abrt-dump-journal-core.c:480 - #: ../src/plugins/abrt-dump-journal-oops.c:228 -+#: ../src/plugins/abrt-dump-journal-xorg.c:194 - msgid "Start reading systemd-journal from the CURSOR position" - msgstr "開始從 CURSOR 位置讀取 systemd-journal" - - #: ../src/plugins/abrt-dump-journal-core.c:481 - #: ../src/plugins/abrt-dump-journal-oops.c:229 -+#: ../src/plugins/abrt-dump-journal-xorg.c:195 - msgid "Start reading systemd-journal from the end" - msgstr "開始從尾端讀取 systemd-journal" - -@@ -1277,16 +1376,19 @@ msgstr "與 -t INT 相同,INT 則在 plugins/CCpp.conf 中指定" - - #: ../src/plugins/abrt-dump-journal-core.c:484 - #: ../src/plugins/abrt-dump-journal-oops.c:230 -+#: ../src/plugins/abrt-dump-journal-xorg.c:196 - msgid "Follow systemd-journal from the last seen position (if available)" - msgstr "從上次查看的位置開始跟隨 systemd-journal (如果有的話)" - - #: ../src/plugins/abrt-dump-journal-core.c:495 - #: ../src/plugins/abrt-dump-journal-oops.c:246 -+#: ../src/plugins/abrt-dump-journal-xorg.c:213 - msgid "You need to specify either -c CURSOR or -e" - msgstr "您需要指定 -c CURSOR 或 -e" - - #: ../src/plugins/abrt-dump-journal-core.c:541 - #: ../src/plugins/abrt-dump-journal-oops.c:284 -+#: ../src/plugins/abrt-dump-journal-xorg.c:278 - msgid "Cannot open systemd-journal" - msgstr "無法開啟 systemd-journal" - -@@ -1294,18 +1396,21 @@ msgstr "無法開啟 systemd-journal" - msgid "Cannot filter systemd-journal to systemd-coredump data only" - msgstr "無法過濾 systemd-journal 僅取用 systemd-coredump 資料" - --#: ../src/plugins/abrt-dump-journal-core.c:547 --#: ../src/plugins/abrt-dump-journal-oops.c:291 -+#: ../src/plugins/abrt-dump-journal-core.c:549 -+#: ../src/plugins/abrt-dump-journal-oops.c:293 -+#: ../src/plugins/abrt-dump-journal-xorg.c:291 - msgid "Cannot seek to the end of journal" - msgstr "無法查找到日誌尾端" - --#: ../src/plugins/abrt-dump-journal-core.c:550 --#: ../src/plugins/abrt-dump-journal-oops.c:307 -+#: ../src/plugins/abrt-dump-journal-core.c:552 -+#: ../src/plugins/abrt-dump-journal-oops.c:309 -+#: ../src/plugins/abrt-dump-journal-xorg.c:307 - #, c-format - msgid "Failed to set systemd-journal cursor '%s'" - msgstr "無法設定 systed-journal 游標「%s」" - - #: ../src/plugins/abrt-dump-journal-oops.c:40 -+#: ../src/plugins/abrt-dump-journal-xorg.c:52 - msgid "Cannot read journal data." - msgstr "無法讀取日誌資料。" - -@@ -1324,14 +1429,17 @@ msgid "" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:231 -+#: ../src/plugins/abrt-dump-journal-xorg.c:197 - msgid "Read journal files from all machines" - msgstr "從所有機器讀取日誌檔" - - #: ../src/plugins/abrt-dump-journal-oops.c:232 -+#: ../src/plugins/abrt-dump-journal-xorg.c:198 - msgid "Read all journal files from directory at PATH" - msgstr "" - - #: ../src/plugins/abrt-dump-journal-oops.c:279 -+#: ../src/plugins/abrt-dump-journal-xorg.c:273 - #, c-format - msgid "Cannot initialize systemd-journal in directory '%s'" - msgstr "" -@@ -1340,12 +1448,58 @@ msgstr "" - msgid "Cannot filter systemd-journal to kernel data only" - msgstr "無法過濾 systemd-journal 僅取用內核資料" - --#: ../src/plugins/abrt-dump-journal-oops.c:298 -+#: ../src/plugins/abrt-dump-journal-oops.c:300 -+#: ../src/plugins/abrt-dump-journal-xorg.c:298 - #, c-format - msgid "Failed to start watch from cursor '%s'" - msgstr "無法從游標「%s」啟動監視" - --#: ../src/plugins/abrt-dump-xorg.c:237 -+#: ../src/plugins/abrt-dump-journal-xorg.c:61 -+msgid "Failed to parse Backtrace from journal" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:143 -+#, c-format -+msgid "" -+"& [-vsoxtf] [-e]/[-c CURSOR] [-d DIR]/[-D]\n" -+"\n" -+"Extract Xorg crash from systemd-journal\n" -+"\n" -+"-c and -e options conflicts because both specifies the first read message.\n" -+"\n" -+"-e is useful only for -f because the following of journal starts by reading \n" -+"the entire journal if the last seen possition is not available.\n" -+"\n" -+"The last seen position is saved in %s\n" -+"\n" -+"Journal filter is required parameter and must be specified either by " -+"parameter\n" -+"-j or in %s conf file.\n" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:189 -+msgid "Print found crashes on standard output" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:190 -+msgid "Create new problem directory in DIR for every crash found" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:199 -+msgid "Journal filter e.g. '_COMM=gdm-x-session' (may be given many times)" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:265 -+msgid "" -+"Journal filter must be specified either by parameter -j or stored in /etc/" -+"abrt/plugins/xorg.conf file" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-journal-xorg.c:282 -+msgid "Cannot filter systemd-journal to Xorg data only" -+msgstr "" -+ -+#: ../src/plugins/abrt-dump-xorg.c:35 - msgid "" - "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" -@@ -1354,58 +1508,62 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" - "\n" - "從 FILE (或標準輸出) 抽出 Xorg 當機資訊" - --#: ../src/plugins/abrt-dump-xorg.c:245 -+#: ../src/plugins/abrt-dump-xorg.c:53 - msgid "Print found crash data on standard output" - msgstr "將找到的崩潰資料列印在標準輸出上" - --#: ../src/plugins/abrt-dump-xorg.c:246 -+#: ../src/plugins/abrt-dump-xorg.c:54 - msgid "Create problem directory in DIR for every crash found" - msgstr "在 DIR 內為每個找到的當機資料建立問題目錄" - -+#: ../src/plugins/abrt-dump-xorg.c:108 -+msgid "Failed to parse Backtrace from log file" -+msgstr "" -+ - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:267 -+#: ../src/plugins/abrt-journal.c:274 - msgid "Cannot save journal watch's position" - msgstr "無法儲存日誌監視的位置" - --#: ../src/plugins/abrt-journal.c:277 -+#: ../src/plugins/abrt-journal.c:284 - #, c-format - msgid "Cannot save journal watch's position: open('%s')" - msgstr "無法儲存日誌監視的位置:open('%s')" - - #. Only notice because this is expected --#: ../src/plugins/abrt-journal.c:295 -+#: ../src/plugins/abrt-journal.c:302 - #, c-format - msgid "Not restoring journal watch's position: file '%s' does not exist" - msgstr "不還原日誌監視的位置:不存在「%s」檔案" - --#: ../src/plugins/abrt-journal.c:297 -+#: ../src/plugins/abrt-journal.c:304 - #, c-format - msgid "Cannot restore journal watch's position form file '%s'" - msgstr "無法從檔案「%s」還原日誌監視的位置" - --#: ../src/plugins/abrt-journal.c:304 -+#: ../src/plugins/abrt-journal.c:311 - #, c-format - msgid "Cannot restore journal watch's position: path '%s' is not regular file" - msgstr "無法還原日誌監視的位置:「%s」路徑並非通常檔案" - --#: ../src/plugins/abrt-journal.c:310 -+#: ../src/plugins/abrt-journal.c:317 - #, c-format - msgid "" - "Cannot restore journal watch's position: file '%s' exceeds %dB size limit" - msgstr "無法還原日誌監視的位置:「%s」檔案超出 %dB 大小限制" - --#: ../src/plugins/abrt-journal.c:318 -+#: ../src/plugins/abrt-journal.c:325 - #, c-format - msgid "Cannot restore journal watch's position: open('%s')" - msgstr "無法還原日誌監視的位置:open('%s')" - --#: ../src/plugins/abrt-journal.c:327 -+#: ../src/plugins/abrt-journal.c:334 - #, c-format - msgid "Cannot restore journal watch's position: cannot read entire file '%s'" - msgstr "無法還原日誌監視的位置:無法讀取整份「%s」檔案" - - #. abrt_journal_set_cursor() prints error message in verbose mode --#: ../src/plugins/abrt-journal.c:339 -+#: ../src/plugins/abrt-journal.c:346 - #, c-format - msgid "Failed to move the journal to a cursor from file '%s'" - msgstr "無法將日誌從檔案「%s」移到游標處" -@@ -1916,43 +2074,43 @@ msgstr "無法關閉 NSS。" - msgid "Sleeping for %d seconds" - msgstr "正睡眠 %d 秒" - --#: ../src/plugins/oops-utils.c:207 -+#: ../src/plugins/oops-utils.c:200 - msgid "" - "A kernel problem occurred because of broken BIOS. Unfortunately, such " - "problems are not fixable by kernel maintainers." - msgstr "由於 BIOS 損壞而遭遇內核問題。很遺憾必須要告訴您,這樣的問題並無法由內核維護者修正。" - --#: ../src/plugins/oops-utils.c:212 -+#: ../src/plugins/oops-utils.c:205 - msgid "" - "A kernel problem occurred, but your hardware is unsupported, therefore " - "kernel maintainers are unable to fix this problem." - msgstr "遭遇一項內核問題,但實際上並不受支援您的硬體,因此內核維護者無法修正此問題。" - --#: ../src/plugins/oops-utils.c:227 -+#: ../src/plugins/oops-utils.c:220 - #, c-format - msgid "" - "A kernel problem occurred, but your kernel has been tainted (flags:%s). " - "Kernel maintainers are unable to diagnose tainted reports." - msgstr "遭遇一項內核問題,但您的內核已經損壞 (旗標:%s)。內核維護者無法診斷損壞的回報有什麼問題。" - --#: ../src/plugins/oops-utils.c:235 -+#: ../src/plugins/oops-utils.c:228 - #, c-format - msgid " Tainted modules: %s." - msgstr "損壞的模組:%s。" - --#: ../src/plugins/bodhi.c:375 -+#: ../src/plugins/bodhi.c:468 - msgid "List of bug ids" - msgstr "臭蟲 ID 清單" - --#: ../src/plugins/bodhi.c:376 -+#: ../src/plugins/bodhi.c:469 - msgid "Specify a bodhi server url" - msgstr "指定 bodhi 伺服器 URL" - --#: ../src/plugins/bodhi.c:377 -+#: ../src/plugins/bodhi.c:470 - msgid "Specify a release" - msgstr "指定發行版" - --#: ../src/plugins/bodhi.c:382 -+#: ../src/plugins/bodhi.c:475 - msgid "" - "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" - "\n" -@@ -1962,20 +2120,20 @@ msgstr "" - "\n" - "在 bodhi 伺服器上搜尋是否有可用更新" - --#: ../src/plugins/bodhi.c:434 -+#: ../src/plugins/bodhi.c:542 - msgid "Searching for updates" - msgstr "搜尋是否有更新" - --#: ../src/plugins/bodhi.c:440 -+#: ../src/plugins/bodhi.c:548 - msgid "No updates for this package found" - msgstr "找不到此軟體包的更新" - - #. strbuf_free(q); --#: ../src/plugins/bodhi.c:469 -+#: ../src/plugins/bodhi.c:577 - msgid "Local version of the package is newer than available updates" - msgstr "本地端的軟體包版本比可用更新的版本還新" - --#: ../src/plugins/bodhi.c:486 -+#: ../src/plugins/bodhi.c:594 - #, c-format - msgid "" - "An update exists which might fix your problem. You can install it by running:" -@@ -1999,66 +2157,67 @@ msgstr "列印找到的 oops" - msgid "Delete files with found oopses" - msgstr "刪除找到的 oops 其檔案" - --#: ../src/cli/abrt-cli-core.c:89 -+#: ../src/cli/abrt-cli-core.c:100 - #, c-format - msgid "'%s' identifies more than one problem directory" - msgstr "「%s」辨識出一個以上的問題目錄" - --#: ../src/cli/abrt-cli.c:144 --msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." --msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." -+#: ../src/cli/abrt-cli.c:130 -+msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." -+msgstr "" - --#: ../src/cli/abrt-cli.c:148 -+#: ../src/cli/abrt-cli.c:134 - msgid "List problems [in DIRs]" - msgstr "列出 [DIRs 中] 的問題" - --#: ../src/cli/abrt-cli.c:149 -+#: ../src/cli/abrt-cli.c:135 - msgid "Remove problem directory DIR" - msgstr "從問題目錄 DIR 移除檔案" - --#: ../src/cli/abrt-cli.c:150 -+#: ../src/cli/abrt-cli.c:136 - msgid "Analyze and report problem data in DIR" - msgstr "在 DIR 內分析並回報問題資料" - --#: ../src/cli/abrt-cli.c:151 -+#: ../src/cli/abrt-cli.c:137 - msgid "Print information about DIR" - msgstr "列印有關 DIR 的資訊" - --#: ../src/cli/abrt-cli.c:152 -+#: ../src/cli/abrt-cli.c:138 - msgid "Print the count of the recent crashes" - msgstr "列印最近程式崩潰的數目" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/abrt-cli.c:153 -+#: ../src/cli/abrt-cli.c:139 - msgid "Process multiple problems" - msgstr "處理多項問題" - --#: ../src/cli/abrt-cli.c:168 -+#: ../src/cli/abrt-cli.c:162 - msgid "See 'abrt-cli COMMAND --help' for more information" - msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" - --#: ../src/cli/list.c:125 -+#: ../src/cli/list.c:127 - msgid "& list [options]" - msgstr "" - --#: ../src/cli/list.c:134 -+#: ../src/cli/list.c:136 ../src/cli-ng/abrtcli/cli.py:121 -+#: ../src/cli-ng/abrtcli/cli.py:264 - msgid "List only not-reported problems" - msgstr "僅列出尚未回報的問題" - - #. deprecate -d option with --pretty=full --#: ../src/cli/list.c:136 ../src/cli/list.c:181 -+#: ../src/cli/list.c:138 ../src/cli/list.c:191 - msgid "Show detailed report" - msgstr "顯示詳細的回報" - --#: ../src/cli/list.c:137 -+#: ../src/cli/list.c:139 ../src/cli-ng/abrtcli/cli.py:113 - msgid "List only the problems more recent than specified timestamp" - msgstr "僅列出比指定的時間戳記更近期的問題" - --#: ../src/cli/list.c:138 -+#: ../src/cli/list.c:140 ../src/cli-ng/abrtcli/cli.py:115 - msgid "List only the problems older than specified timestamp" - msgstr "僅列出比指定的時間戳記更之前的問題" - --#: ../src/cli/list.c:162 -+#: ../src/cli/list.c:166 - #, c-format - msgid "" - "The Autoreporting feature is disabled. Please consider enabling it by " -@@ -2067,53 +2226,63 @@ msgid "" - msgstr "已停用自動回報功能。請考慮以取得 root 特權的使用者執行\n" - "「abrt-auto-reporting enabled」指令啟用此功能\n" - --#: ../src/cli/list.c:173 -+#: ../src/cli/list.c:183 - msgid "& info [options] DIR..." - msgstr "& info [選項] DIR..." - --#: ../src/cli/list.c:182 -+#: ../src/cli/list.c:192 - msgid "Text larger than this will be shown abridged" - msgstr "大於此的文字會刪減顯示" - --#: ../src/cli/list.c:202 -+#: ../src/cli/list.c:212 - #, c-format - msgid "No such problem directory '%s'" - msgstr "沒有這個問題目錄「%s」" - --#: ../src/cli/status.c:62 -+#: ../src/cli/status.c:66 - msgid "& status" - msgstr "" - --#: ../src/cli/status.c:70 -+#: ../src/cli/status.c:74 ../src/cli-ng/abrtcli/cli.py:260 - msgid "Print only the problem count without any message" - msgstr "僅列印問題數目而不帶任何訊息" - --#: ../src/cli/status.c:71 -+#: ../src/cli/status.c:75 ../src/cli-ng/abrtcli/cli.py:262 - msgid "Print only the problems more recent than specified timestamp" - msgstr "僅列印比指定的時間戳記更近期的問題" - --#: ../src/cli/status.c:87 -+#: ../src/cli/status.c:91 - #, c-format - msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" - msgstr "ABRT 已偵測到 %u 項問題。若要取得更多資訊,請執行:abrt-cli list%s\n" - -+#: ../src/cli/report.c:34 -+#, c-format -+msgid "Can't find problem '%s'" -+msgstr "" -+ -+#: ../src/cli/report.c:42 -+#, c-format -+msgid "Problem '%s' cannot be reported" -+msgstr "" -+ - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:28 -+#: ../src/cli/report.c:63 ../src/cli/process.c:70 -+#, c-format -+msgid "Deleting '%s'" -+msgstr "正在刪除「%s」" -+ -+# translation auto-copied from project abrt, version rhel7, document abrt -+#: ../src/cli/report.c:79 - msgid "& report [options] DIR..." - msgstr "& report [選項] DIR..." - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:38 -+#: ../src/cli/report.c:89 - msgid "Remove PROBLEM_DIR after reporting" - msgstr "在回報後移除 PROBLEM_DIR" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/report.c:71 ../src/cli/process.c:70 --#, c-format --msgid "Deleting '%s'" --msgstr "正在刪除「%s」" -- --# translation auto-copied from project abrt, version rhel7, document abrt - #: ../src/cli/process.c:64 - msgid "Actions: remove(rm), info(i), skip(s):" - msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" -@@ -2124,27 +2293,182 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" - msgstr "可用動作:移除 remove(rm)、回報 report(e)、資訊 info(i)、略過 skip(s):" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:77 -+#: ../src/cli/process.c:78 - #, c-format - msgid "Reporting '%s'" - msgstr "正在回報「%s」" - - # translation auto-copied from project abrt, version rhel7, document abrt - #. dummy must be free because the function ask allocate memory --#: ../src/cli/process.c:133 -+#: ../src/cli/process.c:127 - msgid "For next problem press ENTER:" - msgstr "下個問題請按 ENTER 鍵。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:144 -+#: ../src/cli/process.c:138 - msgid "Without --since argument, iterates over all detected problems." - msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代。" - - # translation auto-copied from project abrt, version rhel7, document abrt --#: ../src/cli/process.c:150 -+#: ../src/cli/process.c:144 - msgid "Selects only problems detected after timestamp" - msgstr "僅選取時間戳記之後的問題" - -+#: ../src/cli-ng/abrtcli/cli.py:33 -+msgid "Problem has no backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:35 -+msgid "Start retracing process?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:40 -+msgid "Show backtrace of a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:50 -+msgid "This" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:52 -+msgid "Last" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:54 -+msgid "{} problem is not of a C/C++ type. Can't install debuginfo" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:64 ../src/cli-ng/abrtcli/cli.py:99 -+msgid "" -+"Permission denied: '{}'\n" -+"If this is a system problem try running this command as root" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:71 -+msgid "Install required debuginfo for given problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:106 -+msgid "Run GDB against a problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:117 ../src/cli-ng/abrtcli/cli.py:153 -+msgid "Output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:119 ../src/cli-ng/abrtcli/cli.py:155 -+msgid "Built-in output format" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:145 ../src/cli-ng/abrtcli/match.py:89 -+msgid "No problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:147 -+msgid "List problems" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:167 -+msgid "Print information about problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:173 -+msgid "Prompt before removal" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:174 -+msgid "Do not prompt before removal" -+msgstr "" -+ -+#. force prompt for last problem to avoid accidents -+#: ../src/cli-ng/abrtcli/cli.py:182 -+msgid "Are you sure you want to delete this problem?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:186 -+msgid "Removed" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:188 -+msgid "Remove problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:199 -+msgid "Report problem" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:204 -+msgid "Perform local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:206 -+msgid "Perform remote retracing using retrace server" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:208 -+msgid "Force retracing even if backtrace already exists" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:223 -+msgid "Problem already has a backtrace" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:224 -+msgid "Run abrt retrace with -f/--force to retrace again" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:225 -+msgid "Show backtrace?" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:229 -+msgid "No retracing possible for this problem type" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:233 -+msgid "" -+"Upload core dump and perform remote retracing? (It may contain sensitive " -+"data). If your answer is 'No', a stack trace will be generated locally. " -+"Local retracing requires downloading potentially large amount of debuginfo " -+"data" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:248 -+msgid "Remote retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:251 -+msgid "Local retracing" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:255 -+msgid "Generate backtrace from coredump" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:280 -+msgid "ABRT has detected {} problem(s). For more info run: abrt list{}" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:283 -+msgid "Print count of the recent crashes" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/cli.py:292 -+msgid "Authenticate and show all problems on this machine" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:96 -+msgid "No problem(s) matched" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/match.py:116 -+msgid "Ambiguous match specified resulting in multiple problems:" -+msgstr "" -+ -+#: ../src/cli-ng/abrtcli/utils.py:78 -+msgid "Not reportable" -+msgstr "" -+ - #: ../src/plugins/analyze_CCpp.xml.in.h:1 - msgid "" - "Send core dump to remote retrace server for analysis or perform local " --- -2.5.0 - diff --git a/0004-translations-add-missing-new-line.patch b/0004-translations-add-missing-new-line.patch deleted file mode 100644 index 659f3ad..0000000 --- a/0004-translations-add-missing-new-line.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 0a918dd4d1aee2a90de212f932c01081c73791cd Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 11 Feb 2016 15:26:27 +0100 -Subject: [PATCH] translations: add missing new line - -Signed-off-by: Jakub Filak ---- - po/km.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/po/km.po b/po/km.po -index 84bb1b1..ab7a684 100644 ---- a/po/km.po -+++ b/po/km.po -@@ -137,7 +137,7 @@ msgid "" - "\n" - "Applet which notifies user when new problems are detected by ABRT\n" - msgstr "" --"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT" -+"Applet ដែលបានជូនដំណឹងអ្នកប្រើនៅពេលដែលមានបញ្ហាថ្មីត្រូវបានរកឃើញដោយ ABRT\n" - - #: ../src/configuration-gui/abrt-config-widget.c:483 - msgid "" --- -2.5.0 - diff --git a/0005-Fix-minor-typo-possition-position.patch b/0005-Fix-minor-typo-possition-position.patch deleted file mode 100644 index 2a51ab2..0000000 --- a/0005-Fix-minor-typo-possition-position.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 7dca143dd91229e0dad78bcdead6748ecf27cbd3 Mon Sep 17 00:00:00 2001 -From: Yuri Chornoivan -Date: Fri, 12 Feb 2016 22:51:18 +0200 -Subject: [PATCH] Fix minor typo: possition -> position - ---- - src/plugins/abrt-dump-journal-xorg.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-dump-journal-xorg.c b/src/plugins/abrt-dump-journal-xorg.c -index 87dfe13..1ede56f 100644 ---- a/src/plugins/abrt-dump-journal-xorg.c -+++ b/src/plugins/abrt-dump-journal-xorg.c -@@ -147,7 +147,7 @@ int main(int argc, char *argv[]) - "-c and -e options conflicts because both specifies the first read message.\n" - "\n" - "-e is useful only for -f because the following of journal starts by reading \n" -- "the entire journal if the last seen possition is not available.\n" -+ "the entire journal if the last seen position is not available.\n" - "\n" - "The last seen position is saved in %s\n" - "\n" --- -2.5.0 - diff --git a/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch b/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch deleted file mode 100644 index 833cd94..0000000 --- a/0006-a-a-save-package-data-blacklist-usr-lib-64-firefox-p.patch +++ /dev/null @@ -1,33 +0,0 @@ -From a136d0c7b8aa72e7cf60e1255504191f1e9ac800 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Tue, 16 Feb 2016 10:53:06 +0100 -Subject: [PATCH] a-a-save-package-data: blacklist - /usr/lib(64)/firefox/plugin-container - -/usr/lib(64)/firefox/plugin-container is a sandbox/launcher for Firefox -plug-ins. When it crases Firefox loads it again so we don't want those crashes -reported. - -Related to: rhbz#1308840 - -Signed-off-by: Matej Habrnal ---- - src/daemon/abrt-action-save-package-data.conf | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf -index 58f5061..f3a808f 100644 ---- a/src/daemon/abrt-action-save-package-data.conf -+++ b/src/daemon/abrt-action-save-package-data.conf -@@ -15,7 +15,7 @@ ProcessUnpackaged = yes - - # Blacklisted executable paths (shell patterns) - # --BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer -+BlackListedPaths = /usr/share/doc/*, */example*, /usr/bin/nspluginviewer, /usr/lib*/firefox/plugin-container - - # interpreters names - Interpreters = python2, python2.7, python, python3, python3.3, python3.4, python3.5, perl, perl5.16.2 --- -2.5.0 - diff --git a/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 -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 ---- - 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 -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 ---- - 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 -Date: Tue, 8 Mar 2016 16:42:31 +0100 -Subject: [PATCH] a-a-install-debuginfo: make tmpdir variable global - -Function clean_up() has one required parameter tmpdir. -Without this commit clean_up() function raises an exception because it was -called without the parameter. - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-action-install-debuginfo.in | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index f70ebcd..7818ffd 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -20,7 +20,8 @@ import problem - RETURN_OK = 0 - # serious problem, should be logged somewhere - RETURN_FAILURE = 2 -- -+# path to tmp directory has to be global because of clean_up() -+TMPDIR = None - - GETTEXT_PROGNAME = "abrt" - import locale -@@ -43,11 +44,11 @@ def init_gettext(): - gettext.textdomain(GETTEXT_PROGNAME) - - def sigterm_handler(signum, frame): -- clean_up() -+ clean_up(TMPDIR) - exit(RETURN_OK) - - def sigint_handler(signum, frame): -- clean_up() -+ clean_up(TMPDIR) - print("\n{0}".format(_("Exiting on user command"))) - sys.stdout.flush() - # ??! without "sys.", I am getting segv! -@@ -63,7 +64,6 @@ if __name__ == "__main__": - fbuild_ids = "build_ids" - cachedirs = [] - size_mb = 4096 -- tmpdir = None - keeprpms = False - noninteractive = False - b_ids = [] -@@ -135,7 +135,7 @@ if __name__ == "__main__": - except: - pass - elif opt == "--tmpdir": -- tmpdir = arg -+ TMPDIR = arg - elif opt == "--keeprpms": - keeprpms = True - # --exact takes precendece over --ids -@@ -159,11 +159,11 @@ if __name__ == "__main__": - - if not cachedirs: - cachedirs = ["/var/cache/abrt-di"] -- if not tmpdir: -+ if not TMPDIR: - # security people prefer temp subdirs in app's private dir, like /var/run/abrt - # and we switched to /tmp but Fedora feature tmp-on-tmpfs appeared, hence we must - # not use /tmp for potential big data anymore -- tmpdir = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) -+ TMPDIR = "@LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid()) - - - if missing == None: -@@ -235,7 +235,7 @@ if __name__ == "__main__": - sys.exit(RETURN_FAILURE) - - # TODO: should we pass keep_rpms=keeprpms to DebugInfoDownload here?? -- downloader = download_class(cache=cachedirs[0], tmp=tmpdir, -+ downloader = download_class(cache=cachedirs[0], tmp=TMPDIR, - noninteractive=noninteractive, - repo_pattern=repo_pattern) - try: --- -2.5.5 - diff --git a/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 -Date: Tue, 8 Mar 2016 16:45:36 +0100 -Subject: [PATCH] a-a-install-debuginfo: fix BrokenPipe error - -While debug info is downloading and stop button is pressed the BrokenPipe -error appears. - -If the stop button is pressed, gui wizard sends SIGTERM to all -processes with the same group ID so abrt-action-install-debuginfo got SIGTERM -as well. It has its own SIGTERM handler which calls clean_up() function and it -takes a while before the tool is terminated. -abrt-action-install-debuginfo tries to write some messages to the closed socket -during the clean_up process and it raises a BrokenPipe exception. We must -ensure that no message will be printed after SIGTERM is recieved. - -Related to: #1255259 - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-action-install-debuginfo.in | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index 7818ffd..e4a7dfd 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -44,7 +44,7 @@ def init_gettext(): - gettext.textdomain(GETTEXT_PROGNAME) - - def sigterm_handler(signum, frame): -- clean_up(TMPDIR) -+ clean_up(TMPDIR, silent=True) - exit(RETURN_OK) - - def sigint_handler(signum, frame): -@@ -241,6 +241,9 @@ if __name__ == "__main__": - try: - result = downloader.download(missing, download_exact_files=exact_fls) - except Exception as ex: -+ if ex.errno == errno.EPIPE: -+ clean_up(TMPDIR, silent=True) -+ exit(RETURN_FAILURE) - error_msg_and_die("Can't download debuginfos: %s", ex) - - if exact_fls: --- -2.5.5 - diff --git a/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 -Date: Sat, 20 Feb 2016 08:27:32 +0100 -Subject: [PATCH] Add basic documentation - -Signed-off-by: Jakub Filak ---- - CONTRIBUTING.md | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - INSTALL | 7 ----- - INSTALL.md | 56 ++++++++++++++++++++++++++++++++++ - Makefile.am | 2 ++ - README | 11 ------- - README.md | 48 +++++++++++++++++++++++++++++ - 6 files changed, 200 insertions(+), 18 deletions(-) - create mode 100644 CONTRIBUTING.md - delete mode 100644 INSTALL - create mode 100644 INSTALL.md - delete mode 100644 README - create mode 100644 README.md - -diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md -new file mode 100644 -index 0000000..4b27138 ---- /dev/null -+++ b/CONTRIBUTING.md -@@ -0,0 +1,94 @@ -+# Contributing to ABRT -+ -+Adopted from http://www.contribution-guide.org/ -+ -+BSD, Copyright (c) 2015 Jeff Forcier -+ -+## Submitting bugs -+ -+### Due diligence -+ -+Before submitting a bug, please do the following: -+ -+* Perform **basic troubleshooting** steps: -+ -+ * **Make sure you're on the latest version.** If you're not on the most -+ recent version, your problem may have been solved already! Upgrading is -+ always the best first step. -+ * **Try older versions.** If you're already *on* the latest release, try -+ rolling back a few minor versions (e.g. if on 1.7, try 1.5 or 1.6) and -+ see if the problem goes away. This will help the devs narrow down when -+ the problem first arose in the commit log. -+ * **Try switching up dependency versions.** If the software in question has -+ dependencies (other libraries, etc) try upgrading/downgrading those as -+ well. -+ -+* **Search the project's bug/issue tracker** to make sure it's not a known issue. -+* If you don't find a pre-existing issue, consider **checking with the mailing -+ list and/or IRC channel** in case the problem is non-bug-related. -+* Consult [README.md](README.md) for links to bugtracker, mailinglist or IRC. -+ -+### What to put in your bug report -+ -+Make sure your report gets the attention it deserves: bug reports with missing -+information may be ignored or punted back to you, delaying a fix. The below -+constitutes a bare minimum; more info is almost always better: -+ -+* **What version of the core programming language interpreter/compiler are you -+ using?** For example, if it's a Python project, are you using Python 2.7.3? -+ Python 3.3.1? PyPy 2.0? -+* **What operating system are you on?** Make sure to include release and distribution. -+* **Which version or versions of the software are you using?** Ideally, you -+ followed the advice above and have ruled out (or verified that the problem -+ exists in) a few different versions. -+* **How can the developers recreate the bug on their end?** If possible, -+ include a copy of your code, the command you used to invoke it, and the full -+ output of your run (if applicable.) -+ -+ * A common tactic is to pare down your code until a simple (but still -+ bug-causing) "base case" remains. Not only can this help you identify -+ problems which aren't real bugs, but it means the developer can get to -+ fixing the bug faster. -+ -+ -+## Contributing changes -+ -+It would be the best if you could discuss your plans with us on #abrt or on our -+mailinig list crash-catcher@lists.fedorahosted.org before you spent too much -+energy and time. -+ -+Before contributing, please, make yourself familiar with git. You can [try git -+online](https://try.github.io/). Things would be easier for all of us if you do -+your changes on a branch. Use a single commit for every logical reviewable -+change, without unrelated modifications (that will help us if need to revert a -+particular commit). Please avoid adding commits fixing your previous -+commits, do amend or rebase instead. -+ -+Every commit must have either comprehensive commit message saying what is being -+changed and why or a link (an issue number on Github) to a bug report where -+this information is available. It is also useful to include notes about -+negative decisions - i.e. why you decided to not do particular things. Please -+bare in mind that other developers might not understand what the original -+problem was. -+ -+### Full example -+ -+Here's an example workflow for a project `abrt` hosted on Github -+Your username is `yourname` and you're submitting a basic bugfix or feature. -+ -+* Hit 'fork' on Github, creating e.g. `yourname/abrt`. -+* `git clone git@github.com:yourname/abrt` -+* `cd abrt` -+* `git checkout -b foo_the_bars` to create new local branch named foo_the_bars -+* Hack, hack, hack -+* Run `make check` -+* `git status` -+* `git add` -+* `git commit -s -m "Foo the bars"` -+* `git push -u origin HEAD` to create foo_the_bars branch in your fork -+* Visit your fork at Github and click handy "Pull request" button. -+* In the description field, write down issue number (if submitting code fixing -+ an existing issue) or describe the issue + your fix (if submitting a wholly -+ new bugfix). -+* Hit 'submit'! And please be patient - the maintainers will get to you when -+ they can. -diff --git a/INSTALL b/INSTALL -deleted file mode 100644 -index 799a4a6..0000000 ---- a/INSTALL -+++ /dev/null -@@ -1,7 +0,0 @@ --How to install --============== -- --1. autogen.sh --2. ./configure --3. make --4. make install -diff --git a/INSTALL.md b/INSTALL.md -new file mode 100644 -index 0000000..96d42c4 ---- /dev/null -+++ b/INSTALL.md -@@ -0,0 +1,56 @@ -+# How to install -+ -+### Development dependencies -+ -+Build dependencies can be listed by: -+ -+ $ ./autogen.sh sysdeps -+ -+or installed by: -+ -+ $ ./autogen.sh sysdeps --install -+ -+The dependency installer gets the data from [the rpm spec file](abrt.spec.in) -+ -+### Building from sources -+ -+When you have all dependencies installed run the following commands: -+ -+ $ ./autogen.sh --prefix=/usr \ -+ --sysconfdir=/etc \ -+ --localstatedir=/var \ -+ --sharedstatedir=/var/lib -+ -+ $ make -+ -+or if you want to debug ABRT run: -+ -+ $ CFLAGS="-g -g3 -ggdb -ggdb3 -O0" ./autogen.sh --prefix=/usr \ -+ --sysconfdir=/etc \ -+ --localstatedir=/var \ -+ --sharedstatedir=/var/lib \ -+ --enable-debug -+ -+ $ make -+ -+### Checking -+ -+ABRT uses [Autotest](http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Using-Autotest.html) -+to validate source codes. Run the test by: -+ -+ $ make check -+ -+If you want to search for memory issues, build ABRT with debug options and then -+run: -+ -+ $ make maintainer-check -+ -+### Installing -+ -+If you need an rpm package, run: -+ -+ $ make rpm -+ -+otherwise run: -+ -+ $ make install -diff --git a/Makefile.am b/Makefile.am -index 01b8a97..e528c93 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -36,6 +36,8 @@ EXTRA_DIST = doc/coding-style abrt.spec.in abrt.pc.in \ - abrt-version asciidoc.conf init-scripts/* $(TESTSUITE_FILES) \ - augeas/test_abrt.aug - -+dist_doc_DATA = README.md -+ - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = abrt.pc - -diff --git a/README b/README -deleted file mode 100644 -index 26cbbcb..0000000 ---- a/README -+++ /dev/null -@@ -1,11 +0,0 @@ --These sources are in early stages. They are changing every day :-)... --Anyway, patches are welcome. -- --** Using Valgrind -- --When running ABRT under memcheck, GLib's environment variables should --be set to turn off glib's memory optimization, so valgrind is not --confused: -- --G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --tool=memcheck \ -- --leak-check=full abrtd -dvvv -diff --git a/README.md b/README.md -new file mode 100644 -index 0000000..e58a499 ---- /dev/null -+++ b/README.md -@@ -0,0 +1,48 @@ -+# ABRT -+ -+**A set of tools to help users detect and report application crashes.** -+ -+### About -+ -+Its main purpose is to ease the process of reporting an issue and finding a -+solution. -+ -+The solution in this context might be a bugzilla ticket, knowledge base article -+or a suggestion to update a package to a version containing a fix. -+ -+### Documentation -+ -+Every ABRT program and configuration file has a man page describing it. It is -+also possible to [read the ABRT documentation](http://abrt.readthedocs.org/) -+online. For contributors and developers, there are also [wiki -+pages](https://github.com/abrt/abrt/wiki) describing some topics to deeper -+technical details. -+ -+### Development -+ -+ * IRC Channel: #abrt on FreeNode -+ * [Mailing List](https://lists.fedorahosted.org/admin/lists/crash-catcher.lists.fedorahosted.org/) -+ * [Bug Reports and RFEs](https://github.com/abrt/abrt/issues) -+ * [Contributing to ABRT](CONTRIBUTING.md) -+ * [Install and run ABRT](INSTALL.md) -+ -+ -+### Running -+ -+ABRT consist of several services and many small utilities. While The utilities -+can be successfully run from the source directories after build, the services -+often uses the utilities to do actions and expect the utilities installed in -+the system directories. Hence to run the services, it is recommended to install -+ABRT first and run them as system services. The instructions how to build -+and install ABRT can be found in [INSTALL.md](INSTALL.md) -+ -+### Technologies -+ -+* [libreport](https://github.com/abrt/libreport) - problem data format, reporting -+* [satyr](https://github.com/abrt/satyr) - backtrace processing, micro-reports -+* [Python3](https://www.python.org/) -+* [GLib2](https://developer.gnome.org/glib/) -+* [Gtk3](https://developer.gnome.org/gtk3) -+* [D-Bus](https://www.freedesktop.org/wiki/Software/dbus/) -+* [SELinux](https://github.com/SELinuxProject/selinux/wiki) -+* [systemd](https://www.freedesktop.org/wiki/Software/systemd/) --- -2.5.5 - diff --git a/0021-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 -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 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 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 From e2f4733fc49b2cca5dc5cb54b27e7f10302b23a6 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Mon, 18 Jul 2016 12:14:41 +0200 Subject: [PATCH 154/318] New upstream release 2.8.2 Resolves #1357264 Signed-off-by: Matej Habrnal --- .gitignore | 1 + abrt.spec | 18 ++++++++++++++++-- sources | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index af7f453..e56a5ec 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,4 @@ abrt-1.1.13.tar.gz /abrt-2.7.2.tar.gz /abrt-2.8.0.tar.gz /abrt-2.8.1.tar.gz +/abrt-2.8.2.tar.gz diff --git a/abrt.spec b/abrt.spec index 19b5f36..f784d79 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,12 +43,12 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.7.1 +%define libreport_ver 2.7.2 %define satyr_ver 0.19 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.8.1 +Version: 2.8.2 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -1085,6 +1085,20 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jul 18 2016 Matej Habrnal 2.8.2-1 +- Translation updates +- abrt-hook-ccpp: Fix mismatching argument +- Allow selinux to be optional at build time +- vmcore: use findmnt to get mountpoint +- vmcore: fix finding partitions by UUID and LABEL +- a-a-install-debuginfo: Exception may not have an argument errno +- koops: do not assume version has 3 levels +- Add ARM specific oops backtrace processing. +- examples: add oops-kernel-panic-hung-tasks-arm +- Add oops processing for kernel panics caused by hung tasks. +- abrt-hook-ccpp: save get_fsuid() return values in int variables +- Resolves: #1357264 + * Wed May 25 2016 Matej Habrnal 2.8.1-1 - a-dump-journal-xorg: allow *libexec/X* to be executable element - a-dump-journal-xorg: add '_COMM=gnome-shell' to journal filter diff --git a/sources b/sources index d80a9e2..7571084 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2928780ccb430f0972cc50a33a956772 abrt-2.8.1.tar.gz +055c573c70510e3c09cb12a6cc813507 abrt-2.8.2.tar.gz From c649b7d72465a19f4154e7b49444186d61a73f6d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 19 Jul 2016 06:29:40 +0000 Subject: [PATCH 155/318] - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index f784d79..677d9f7 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.8.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1085,6 +1085,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jul 19 2016 Fedora Release Engineering - 2.8.2-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + * Mon Jul 18 2016 Matej Habrnal 2.8.2-1 - Translation updates - abrt-hook-ccpp: Fix mismatching argument From 21561ba82c6bf480f036fb901ab7e3b9bf6f73ac Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Sat, 10 Sep 2016 07:33:25 +0200 Subject: [PATCH 156/318] New upstream release 2.9.0 Signed-off-by: Jakub Filak --- .gitignore | 1 + abrt.spec | 26 +++++++++++++++++++++----- sources | 2 +- 3 files changed, 23 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index e56a5ec..cf88543 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,4 @@ abrt-1.1.13.tar.gz /abrt-2.8.0.tar.gz /abrt-2.8.1.tar.gz /abrt-2.8.2.tar.gz +/abrt-2.9.0.tar.gz diff --git a/abrt.spec b/abrt.spec index 677d9f7..a6f0f46 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,13 +43,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.7.2 -%define satyr_ver 0.19 +%define libreport_ver 2.8.0 +%define satyr_ver 0.21 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.8.2 -Release: 2%{?dist} +Version: 2.9.0 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1049,7 +1049,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man8/abrt-dbus.8.gz %{_mandir}/man8/abrt-configuration.8.gz %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf -%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Entry.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Session.xml +%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Task.xml %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xml %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml @@ -1066,6 +1069,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.html %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.css +%config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_dbus_event.conf %files python %{python_sitearch}/problem/ @@ -1085,6 +1089,18 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Sep 09 2016 Jakub Filak 2.9.0-1 +- dbus: Problems2 API implementation +- abrtd: change HTTP response code for duplicate problems to 303 +- lib: normalize slashes of configured paths +- lib: make configuration paths alterable at runtime +- abrt-bodhi: use CCpp PackageManager configuration directive from configure +- cli: introduce unsafe reporting for not-reporable problems +- handle-event: stop creating post-create lock +- daemon: trigger dump location cleanup after detection +- hook-ccpp: dump own core file in debug mode +- fix memory leaks + * Tue Jul 19 2016 Fedora Release Engineering - 2.8.2-2 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages diff --git a/sources b/sources index 7571084..4641e19 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -055c573c70510e3c09cb12a6cc813507 abrt-2.8.2.tar.gz +4b3a9ac33dd9fed34a44bd064d55fdcb abrt-2.9.0.tar.gz From a96f20b524fd10fb7bb18f558127e3786d643a85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Dec 2016 18:20:36 +0100 Subject: [PATCH 157/318] Rebuild for Python 3.6 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index a6f0f46..6b1d63f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.9.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1089,6 +1089,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Dec 19 2016 Miro Hrončok - 2.9.0-2 +- Rebuild for Python 3.6 + * Fri Sep 09 2016 Jakub Filak 2.9.0-1 - dbus: Problems2 API implementation - abrtd: change HTTP response code for duplicate problems to 303 From 540f6e7795590fe5f2a504a1bb4a2cb3fab2cf57 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Tue, 3 Jan 2017 12:56:21 +0100 Subject: [PATCH 158/318] New version 2.10.0 Signed-off-by: Matej Habrnal --- .gitignore | 1 + abrt.spec | 77 +++++++++++++++++++++++++++++++++++++++++++++++------- sources | 2 +- 3 files changed, 70 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index cf88543..84307b5 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ abrt-1.1.13.tar.gz /abrt-2.8.1.tar.gz /abrt-2.8.2.tar.gz /abrt-2.9.0.tar.gz +/abrt-2.10.0.tar.gz diff --git a/abrt.spec b/abrt.spec index 6b1d63f..521e23a 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,13 +43,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.8.0 -%define satyr_ver 0.21 +%define libreport_ver 2.9.0-3 +%define satyr_ver 0.22 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.9.0 -Release: 2%{?dist} +Version: 2.10.0 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -175,11 +175,9 @@ This package contains hook for C/C++ crashed programs. Summary: %{name}'s C/C++ addon Group: System Environment/Libraries Requires: cpio -%if 0%{?fedora:%{fedora} > 22} -Requires: gdb >= gdb-7.9.50.20150531 -%else -Requires: gdb >= 7.9.1-16 -%endif +BuildRequires: gdb-headless +BuildRequires: libcap-devel +Requires: gdb-headless Requires: elfutils %if 0%{!?rhel:1} # abrt-action-perform-ccpp-analysis wants to run analyze_RetraceServer: @@ -577,16 +575,26 @@ exit 0 chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_post abrt-ccpp.service %systemd_post abrt-journal-core.service +%journal_catalog_update %post addon-kerneloops %systemd_post abrt-oops.service +%journal_catalog_update %post addon-xorg %systemd_post abrt-xorg.service +%journal_catalog_update + +%post addon-python +%journal_catalog_update + +%post addon-python3 +%journal_catalog_update %if %{?have_kexec_tools} == 1 %post addon-vmcore %systemd_post abrt-vmcore.service +%journal_catalog_update %endif %post addon-pstoreoops @@ -847,6 +855,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_datadir}/%{name}/conf.d/plugins/CCpp.conf %{_mandir}/man5/abrt-CCpp.conf.5.gz %{_libexecdir}/abrt-gdb-exploitable +%{_journalcatalogdir}/abrt_ccpp.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_ccpp_format.conf +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_journal_ccpp_format.conf %if %{with systemd} %{_unitdir}/abrt-ccpp.service %{_unitdir}/abrt-journal-core.service @@ -916,6 +927,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %files addon-kerneloops %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf +%{_journalcatalogdir}/abrt_koops.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_koops_format.conf %{_mandir}/man5/koops_event.conf.5.gz %config(noreplace) %{_sysconfdir}/%{name}/plugins/oops.conf %{_datadir}/%{name}/conf.d/plugins/oops.conf @@ -938,6 +951,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %files addon-xorg %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/xorg_event.conf +%{_journalcatalogdir}/abrt_xorg.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_xorg_format.conf %{_mandir}/man5/xorg_event.conf.5.gz %if %{with systemd} %{_unitdir}/abrt-xorg.service @@ -970,6 +985,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-vmcore.conf.5* %{_mandir}/man1/abrt-action-analyze-vmcore.1* %{_mandir}/man1/abrt-action-check-oops-for-hw-error.1* +%{_journalcatalogdir}/abrt_vmcore.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_vmcore_format.conf %endif %files addon-pstoreoops @@ -991,6 +1008,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-python.conf.5.gz # TODO? Do we need %%config(noreplace) in the below line too? %config(noreplace) %{_sysconfdir}/libreport/events.d/python_event.conf +%{_journalcatalogdir}/abrt_python.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python_format.conf %{_mandir}/man5/python_event.conf.5.gz %{python_sitearch}/abrt*.py* %{python_sitearch}/abrt.pth @@ -1001,6 +1020,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_datadir}/%{name}/conf.d/plugins/python3.conf %{_mandir}/man5/abrt-python3.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/python3_event.conf +%{_journalcatalogdir}/abrt_python3.catalog +%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf %{_mandir}/man5/python3_event.conf.5.gz %{python3_sitearch}/abrt* %{python3_sitearch}/__pycache__/abrt* @@ -1039,6 +1060,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %defattr(-,root,root,-) %{_bindir}/abrt-bodhi %{_bindir}/abrt-action-find-bodhi-update +%config(noreplace) %{_sysconfdir}/libreport/events.d/bodhi_event.conf +%{_datadir}/libreport/events/analyze_BodhiUpdates.xml %{_mandir}/man1/abrt-bodhi.1.gz %{_mandir}/man1/abrt-action-find-bodhi-update.1.gz @@ -1089,6 +1112,42 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jan 02 2017 Matej Habrnal 2.10.0-1 +- Translation updates +- build: make the release-* targets smarter +- Add CHANGELOG.md +- use run_event_on_problem_dir() helper for running events +- notify: do not require package element +- cli-ng: fix --fmt parameter +- python: create analyzer element in dumpdir +- lib: stop printing out a debug message 'adding: ' +- cli: configure libreport to ignore not-reportable +- cli-ng: introduce verbose argument +- ccpp: configure package repositories for correct OS +- a-a-s-c-data: adapt to current docker +- a-a-s-c-data: correct detection of container type +- bodhi: factor out Bodhi updates lookup into a solo event +- problems2: update the documentation +- create crash_function and exception_type elements +- vmcore: /var/tmp/abrt is no longer a dump location +- events: add event report_systemd-journal to all addons +- abrt-action-notify: notify to systemd journal +- journal-catalog: add abrt's catalog source files +- ccpp: retain partial core_backtrace upon error +- daemon: properly shutdown socket connection +- daemon: close forgotten FD to /proc/[pid] +- ccpp: avoid running elfutils under root +- conf: increase MaxCrashReportsSize to 5GiB +- ccpp: fast dumping and abrt core limit +- doc: add a guide for ABRT hackers +- vmcore: read kdump.conf from an arbitrary location +- python2: stop generating dso_list in the process +- abrtd: save interesting process details +- a-a-s-package-data: add python3.6 to known Interpreters +- tree-wide: make path to GDB configurable +- a-a-ureport: print out exit codes in verbose mode +- daemon: stop replacing analyzer with type + * Mon Dec 19 2016 Miro Hrončok - 2.9.0-2 - Rebuild for Python 3.6 diff --git a/sources b/sources index 4641e19..1c20159 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4b3a9ac33dd9fed34a44bd064d55fdcb abrt-2.9.0.tar.gz +SHA512 (abrt-2.10.0.tar.gz) = f8d98fb39fc0ed6f45973dc653f91869590c93e0a26e92ff6b2a8d17a4b64cf451a13fc00d8ec29fbf6689428b14e7bcf576c73aa29af3601a054d137fdf5e91 From 345ed6c98e014c6f001752d5b70ee0c708d7c19b Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 18 Jan 2017 10:53:54 +0100 Subject: [PATCH 159/318] Allow rpm to be optional at build time and bug fixes Resolves #1413637, #1413451 Signed-off-by: Matej Habrnal --- ...inux-change-needed-for-automatic-del.patch | 27 + 0003-remove-Buildroot-and-Groups-tags.patch | 248 +++ ...ll-gdb-to-analyze-saved-binary-image.patch | 37 + ...low-rpm-to-be-optional-at-build-time.patch | 209 ++ ...ify-suspicious-string-invalid-opcode.patch | 36 + ...-calling-of-run_event_on_problem_dir.patch | 32 + abrt.spec | 1746 +---------------- 7 files changed, 666 insertions(+), 1669 deletions(-) create mode 100644 0001-doc-document-selinux-change-needed-for-automatic-del.patch create mode 100644 0003-remove-Buildroot-and-Groups-tags.patch create mode 100644 0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch create mode 100644 0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch create mode 100644 0012-kernel-modify-suspicious-string-invalid-opcode.patch create mode 100644 0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch diff --git a/0001-doc-document-selinux-change-needed-for-automatic-del.patch b/0001-doc-document-selinux-change-needed-for-automatic-del.patch new file mode 100644 index 0000000..7184bde --- /dev/null +++ b/0001-doc-document-selinux-change-needed-for-automatic-del.patch @@ -0,0 +1,27 @@ +From bcb90c417ef0dc0b7f80eb82d98ac92dfee7c4b0 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Miroslav=20Such=C3=BD?= +Date: Thu, 15 Dec 2016 15:29:03 +0100 +Subject: [PATCH] doc: document selinux change needed for automatic deletion of + reports + +--- + src/daemon/abrt.conf | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 34570ea..6d1660e 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -17,7 +17,8 @@ MaxCrashReportsSize = 5000 + #DumpLocation = /var/spool/abrt + + # If you want to automatically clean the upload directory you have to tweak the +-# selinux policy. ++# selinux policy: ++# # setsebool -P abrt_anon_write 1 + # + DeleteUploaded = no + +-- +2.9.3 + diff --git a/0003-remove-Buildroot-and-Groups-tags.patch b/0003-remove-Buildroot-and-Groups-tags.patch new file mode 100644 index 0000000..4212b7b --- /dev/null +++ b/0003-remove-Buildroot-and-Groups-tags.patch @@ -0,0 +1,248 @@ +From 38c340677f103b3784dc62b7934660b13aed0249 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Miroslav=20Such=C3=BD?= +Date: Thu, 15 Dec 2016 17:02:38 +0100 +Subject: [PATCH] remove Buildroot and Groups tags + +not used any more, see +https://fedoraproject.org/wiki/EPEL:Packaging +--- + abrt.spec.in | 29 ----------------------------- + 1 file changed, 29 deletions(-) + +diff --git a/abrt.spec.in b/abrt.spec.in +index 4f041d5..b198a85 100644 +--- a/abrt.spec.in ++++ b/abrt.spec.in +@@ -62,7 +62,6 @@ Name: abrt + Version: @PACKAGE_VERSION@ + Release: 1%{?dist} + License: GPLv2+ +-Group: Applications/System + URL: https://abrt.readthedocs.org/ + Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz + BuildRequires: %{dbus_devel} +@@ -106,7 +105,6 @@ Requires: dbus-1-glib + %if %{with systemd} + Requires: %{systemd_units} + %endif +-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + Requires: %{name}-libs = %{version}-%{release} + Requires: %{name}-python3 = %{version}-%{release} + Requires(pre): %{shadow_utils} +@@ -128,14 +126,12 @@ It uses plugin system to extend its functionality. + + %package libs + Summary: Libraries for %{name} +-Group: System Environment/Libraries + + %description libs + Libraries for %{name}. + + %package devel + Summary: Development libraries for %{name} +-Group: Development/Libraries + Requires: abrt-libs = %{version}-%{release} + + %description devel +@@ -143,14 +139,12 @@ Development libraries and headers for %{name}. + + %package gui-libs + Summary: Libraries for %{name}-gui +-Group: System Environment/Libraries + + %description gui-libs + Libraries for %{name}-gui. + + %package gui-devel + Summary: Development libraries for %{name}-gui +-Group: Development/Libraries + Requires: abrt-gui-libs = %{version}-%{release} + + %description gui-devel +@@ -158,7 +152,6 @@ Development libraries and headers for %{name}-gui. + + %package gui + Summary: %{name}'s gui +-Group: User Interface/Desktops + Requires: %{name} = %{version}-%{release} + Requires: %{name}-dbus = %{version}-%{release} + Requires: gnome-abrt +@@ -177,7 +170,6 @@ GTK+ wizard for convenient bug reporting. + + %package addon-coredump-helper + Summary: %{name}'s /proc/sys/kernel/core_pattern helper +-Group: System Environment/Libraries + Requires: abrt-libs = %{version}-%{release} + + %description addon-coredump-helper +@@ -185,7 +177,6 @@ This package contains hook for C/C++ crashed programs. + + %package addon-ccpp + Summary: %{name}'s C/C++ addon +-Group: System Environment/Libraries + Requires: cpio + BuildRequires: gdb-headless + BuildRequires: libcap-devel +@@ -205,7 +196,6 @@ This package contains %{name}'s C/C++ analyzer plugin. + + %package addon-upload-watch + Summary: %{name}'s upload addon +-Group: System Environment/Libraries + Requires: %{name} = %{version}-%{release} + Requires: abrt-libs = %{version}-%{release} + +@@ -214,7 +204,6 @@ This package contains hook for uploaded problems. + + %package retrace-client + Summary: %{name}'s retrace client +-Group: System Environment/Libraries + Requires: %{name} = %{version}-%{release} + Requires: xz + Requires: tar +@@ -225,7 +214,6 @@ which is able to analyze C/C++ crashes remotely. + + %package addon-kerneloops + Summary: %{name}'s kerneloops addon +-Group: System Environment/Libraries + BuildRequires: systemd-devel + Requires: curl + Requires: %{name} = %{version}-%{release} +@@ -240,7 +228,6 @@ system log. + + %package addon-xorg + Summary: %{name}'s Xorg addon +-Group: System Environment/Libraries + Requires: curl + Requires: %{name} = %{version}-%{release} + Requires: abrt-libs = %{version}-%{release} +@@ -252,7 +239,6 @@ log. + %if %{?have_kexec_tools} == 1 + %package addon-vmcore + Summary: %{name}'s vmcore addon +-Group: System Environment/Libraries + Requires: %{name} = %{version}-%{release} + Requires: abrt-addon-kerneloops + Requires: kexec-tools +@@ -267,7 +253,6 @@ vmcore files. + + %package addon-pstoreoops + Summary: %{name}'s pstore oops addon +-Group: System Environment/Libraries + Requires: %{name} = %{version}-%{release} + Requires: abrt-libs = %{version}-%{release} + Requires: abrt-addon-kerneloops +@@ -280,7 +265,6 @@ This package contains plugin for collecting kernel oopses from pstore storage. + %package plugin-bodhi + Summary: %{name}'s bodhi plugin + BuildRequires: %{libjson_devel} +-Group: System Environment/Libraries + Requires: %{name} = %{version}-%{release} + BuildRequires: libreport-web-devel >= %{libreport_ver} + BuildRequires: hawkey-devel +@@ -293,7 +277,6 @@ Search for a new updates in bodhi server. + + %package addon-python + Summary: %{name}'s addon for catching and analyzing Python exceptions +-Group: System Environment/Libraries + Requires: python + Requires: %{name} = %{version}-%{release} + Requires: systemd-python +@@ -305,7 +288,6 @@ uncaught exception in python programs. + + %package addon-python3 + Summary: %{name}'s addon for catching and analyzing Python 3 exceptions +-Group: System Environment/Libraries + Requires: python3 + Requires: %{name} = %{version}-%{release} + Requires: python3-systemd +@@ -317,7 +299,6 @@ uncaught exception in python 3 programs. + + %package tui + Summary: %{name}'s command line interface +-Group: User Interface/Desktops + Requires: %{name} = %{version}-%{release} + Requires: libreport-cli >= %{libreport_ver} + Requires: abrt-libs = %{version}-%{release} +@@ -329,7 +310,6 @@ in command line environment. + + %package cli-ng + Summary: %{name}'s improved command line interface +-Group: User Interface/Desktops + Requires: %{name} = %{version}-%{release} + Requires: libreport-cli >= %{libreport_ver} + Requires: abrt-libs = %{version}-%{release} +@@ -345,7 +325,6 @@ New generation command line interface for ABRT + + %package cli + Summary: Virtual package to make easy default installation on non-graphical environments +-Group: Applications/System + Requires: %{name} = %{version}-%{release} + Requires: abrt-tui + Requires: abrt-addon-kerneloops +@@ -380,7 +359,6 @@ environment. + + %package desktop + Summary: Virtual package to make easy default installation on desktop environments +-Group: User Interface/Desktops + # This package gets installed when anything requests bug-buddy - + # happens when users upgrade Fn to Fn+1; + # or if user just wants "typical desktop installation". +@@ -427,7 +405,6 @@ environment. + %if %{with atomic} + %package atomic + Summary: Package to make easy default installation on Atomic hosts. +-Group: Applications/System + Requires: %{name}-addon-coredump-helper = %{version}-%{release} + Conflicts: %{name}-addon-ccpp + +@@ -438,7 +415,6 @@ hosts. + + %package dbus + Summary: ABRT DBus service +-Group: Applications/System + Requires: %{name} = %{version}-%{release} + BuildRequires: polkit-devel + Requires: abrt-libs = %{version}-%{release} +@@ -450,7 +426,6 @@ uses PolicyKit to authorize to access the problem data. + + %package python + Summary: ABRT Python API +-Group: System Environment/Libraries + Requires: %{name} = %{version}-%{release} + Requires: %{name}-libs = %{version}-%{release} + Requires: %{name}-dbus = %{version}-%{release} +@@ -466,7 +441,6 @@ problems handled by ABRT in Python. + + %package python-doc + Summary: ABRT Python API Documentation +-Group: Documentation + BuildArch: noarch + BuildRequires: python2-devel + Requires: %{name} = %{version}-%{release} +@@ -477,7 +451,6 @@ Examples and documentation for ABRT Python API. + + %package python3 + Summary: ABRT Python 3 API +-Group: System Environment/Libraries + Requires: %{name} = %{version}-%{release} + Requires: %{name}-libs = %{version}-%{release} + Requires: %{name}-dbus = %{version}-%{release} +@@ -493,7 +466,6 @@ problems handled by ABRT in Python 3. + + %package python3-doc + Summary: ABRT Python API Documentation +-Group: Documentation + BuildArch: noarch + BuildRequires: python3-devel + Requires: %{name} = %{version}-%{release} +@@ -504,7 +476,6 @@ Examples and documentation for ABRT Python 3 API. + + %package console-notification + Summary: ABRT console notification script +-Group: Applications/System + Requires: %{name} = %{version}-%{release} + Requires: %{name}-cli = %{version}-%{release} + +-- +2.9.3 + diff --git a/0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch b/0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch new file mode 100644 index 0000000..ce0d0bb --- /dev/null +++ b/0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch @@ -0,0 +1,37 @@ +From 98e5d89b5238eac954d1947de52c6b3fcf3ae987 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 29 Nov 2016 11:24:49 +0100 +Subject: [PATCH] ccpp: tell gdb to analyze saved binary image + +This is particularly useful when dealing with crashes in containers and +changed root environments. GDB reads the debug information from the +source elf and if the source elf is not available GDB generates useless +backtraces. + +Signed-off-by: Jakub Filak +--- + src/lib/hooklib.c | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index cb5c4cb..ccb1936 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -246,7 +246,13 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); + if (!dd) + return NULL; +- char *executable = dd_load_text(dd, FILENAME_EXECUTABLE); ++ ++ char *executable = NULL; ++ if (dd_exist(dd, FILENAME_BINARY)) ++ executable = concat_path_file(dd->dd_dirname, FILENAME_BINARY); ++ else ++ executable = dd_load_text(dd, FILENAME_EXECUTABLE); ++ + dd_close(dd); + + /* Let user know what's going on */ +-- +2.9.3 + diff --git a/0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch b/0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch new file mode 100644 index 0000000..f60972e --- /dev/null +++ b/0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch @@ -0,0 +1,209 @@ +From f4aec46ee3c6889d6a020721078cfab44f156708 Mon Sep 17 00:00:00 2001 +From: Wes Lindauer +Date: Wed, 14 Dec 2016 15:02:56 -0500 +Subject: [PATCH] daemon: Allow rpm to be optional at build time + +--- + configure.ac | 11 ++++++++++- + src/daemon/Makefile.am | 1 + + src/daemon/rpm.c | 31 +++++++++++++++++++++++++++++++ + src/daemon/rpm.h | 5 ----- + 4 files changed, 42 insertions(+), 6 deletions(-) + +diff --git a/configure.ac b/configure.ac +index f6597eb..4b05040 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -185,7 +185,6 @@ PKG_CHECK_MODULES([GTK], [gtk+-3.0]) + PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.43]) + PKG_CHECK_MODULES([DBUS], [dbus-1]) + PKG_CHECK_MODULES([LIBXML], [libxml-2.0]) +-PKG_CHECK_MODULES([RPM], [rpm]) + PKG_CHECK_MODULES([LIBNOTIFY], [libnotify >= 0.7.0]) + PKG_CHECK_MODULES([NSS], [nss]) + PKG_CHECK_MODULES([LIBREPORT], [libreport]) +@@ -425,6 +424,16 @@ ABRT_PARSE_WITH([selinux])) + AM_CONDITIONAL(HAVE_SELINUX, false) + [fi] + ++AC_ARG_WITH(rpm, ++AS_HELP_STRING([--with-rpm],[build rpm support (default is YES)]), ++ABRT_PARSE_WITH([rpm])) ++ ++[if test -z "$NO_RPM"] ++[then] ++ PKG_CHECK_MODULES([RPM], [rpm]) ++ AC_DEFINE(HAVE_LIBRPM, [], [Have rpm support.]) ++[fi] ++ + # Initialize the test suite. + AC_CONFIG_TESTDIR(tests) + AC_CONFIG_FILES([tests/Makefile tests/atlocal]) +diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am +index 563923a..9a41d5f 100644 +--- a/src/daemon/Makefile.am ++++ b/src/daemon/Makefile.am +@@ -95,6 +95,7 @@ abrt_action_save_package_data_CPPFLAGS = \ + -I$(srcdir)/../lib \ + -DCONF_DIR=\"$(CONF_DIR)\" \ + $(GLIB_CFLAGS) \ ++ $(RPM_CFLAGS) \ + $(LIBREPORT_CFLAGS) \ + -D_GNU_SOURCE + abrt_action_save_package_data_LDADD = \ +diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c +index e99b960..36b36a9 100644 +--- a/src/daemon/rpm.c ++++ b/src/daemon/rpm.c +@@ -19,6 +19,13 @@ + #include "libabrt.h" + #include "rpm.h" + ++#ifdef HAVE_LIBRPM ++#include ++#include ++#include ++#include ++#endif ++ + /** + * A set, which contains finger prints. + */ +@@ -51,8 +58,10 @@ char* get_package_name_from_NVR_or_NULL(const char* packageNVR) + + void rpm_init() + { ++#ifdef HAVE_LIBRPM + if (rpmReadConfigFiles(NULL, NULL) != 0) + error_msg("Can't read RPM rc files"); ++#endif + + list_free_with_free(list_fingerprints); /* paranoia */ + /* Huh? Why do we start the list with an element with NULL string? */ +@@ -61,6 +70,7 @@ void rpm_init() + + void rpm_destroy() + { ++#ifdef HAVE_LIBRPM + /* Mirroring the order of deinit calls in rpm-4.11.1/lib/poptALL.c::rpmcliFini() */ + rpmFreeCrypto(); + rpmFreeMacros(NULL); +@@ -71,6 +81,7 @@ void rpm_destroy() + * "BDB2053 Freeing read locks for locker 0x1e0: 28718/139661746636736" + */ + rpmdbCheckTerminate(1); ++#endif + + list_free_with_free(list_fingerprints); + list_fingerprints = NULL; +@@ -78,6 +89,7 @@ void rpm_destroy() + + void rpm_load_gpgkey(const char* filename) + { ++#ifdef HAVE_LIBRPM + uint8_t *pkt = NULL; + size_t pklen; + if (pgpReadPkts(filename, &pkt, &pklen) != PGPARMOR_PUBKEY) +@@ -95,6 +107,9 @@ void rpm_load_gpgkey(const char* filename) + list_fingerprints = g_list_append(list_fingerprints, fingerprint); + } + free(pkt); ++#else ++ return; ++#endif + } + + int rpm_chk_fingerprint(const char* pkg) +@@ -114,6 +129,7 @@ int rpm_fingerprint_is_imported(const char* fingerprint) + + char *rpm_get_fingerprint(const char *pkg) + { ++#ifdef HAVE_LIBRPM + char *fingerprint = NULL; + char *pgpsig = NULL; + const char *errmsg = NULL; +@@ -141,6 +157,9 @@ error: + rpmdbFreeIterator(iter); + rpmtsFree(ts); + return fingerprint; ++#else ++ return NULL; ++#endif + } + + /* +@@ -183,6 +202,7 @@ error: + } + */ + ++#ifdef HAVE_LIBRPM + static int rpm_query_file(rpmts *ts, rpmdbMatchIterator *iter, Header *header, + const char *filename, const char *rootdir_or_NULL) + { +@@ -216,9 +236,11 @@ static int rpm_query_file(rpmts *ts, rpmdbMatchIterator *iter, Header *header, + + return 0; + } ++#endif + + char* rpm_get_component(const char *filename, const char *rootdir_or_NULL) + { ++#ifdef HAVE_LIBRPM + char *ret = NULL; + char *srpm = NULL; + rpmts ts; +@@ -246,8 +268,12 @@ char* rpm_get_component(const char *filename, const char *rootdir_or_NULL) + rpmdbFreeIterator(iter); + rpmtsFree(ts); + return ret; ++#else ++ return NULL; ++#endif + } + ++#ifdef HAVE_LIBRPM + #define pkg_add_id(name) \ + static inline int pkg_add_##name(Header header, struct pkg_envra *p) \ + { \ +@@ -267,10 +293,12 @@ pkg_add_id(version); + pkg_add_id(release); + pkg_add_id(arch); + pkg_add_id(vendor); ++#endif + + // caller is responsible to free returned value + struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_or_NULL) + { ++#ifdef HAVE_LIBRPM + rpmts ts; + rpmdbMatchIterator iter; + Header header; +@@ -330,6 +358,9 @@ struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_ + rpmdbFreeIterator(iter); + rpmtsFree(ts); + return NULL; ++#else ++ return NULL; ++#endif + } + + void free_pkg_envra(struct pkg_envra *p) +diff --git a/src/daemon/rpm.h b/src/daemon/rpm.h +index 89aa088..1fd56e8 100644 +--- a/src/daemon/rpm.h ++++ b/src/daemon/rpm.h +@@ -22,11 +22,6 @@ + #ifndef RPM_H_ + #define RPM_H_ + +-#include +-#include +-#include +-#include +- + #ifdef __cplusplus + extern "C" { + #endif +-- +2.9.3 + diff --git a/0012-kernel-modify-suspicious-string-invalid-opcode.patch b/0012-kernel-modify-suspicious-string-invalid-opcode.patch new file mode 100644 index 0000000..d6775d5 --- /dev/null +++ b/0012-kernel-modify-suspicious-string-invalid-opcode.patch @@ -0,0 +1,36 @@ +From 2b12039b94b00144a8db37ee87a6e89f897cdaeb Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 16 Jan 2017 16:46:22 +0100 +Subject: [PATCH] kernel: modify suspicious string "invalid opcode:" + +"invalid opcode:" can be without colon. + +systemd-journal output example: + + traps: chrome[2979] trap invalid opcode ip:55911b28dba3 sp:7ffea558a3e0 + error:0 + in chrome[55911728a000+6a0b000] + +Related to #1413451 + +Signed-off-by: Matej Habrnal +--- + src/lib/kernel.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index d662319..6f05619 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -139,7 +139,7 @@ static const char *const s_koops_suspicious_strings[] = { + "coprocessor segment overrun:", + "invalid TSS:", + "segment not present:", +- "invalid opcode:", ++ "invalid opcode", + "alignment check:", + "stack segment:", + "fpu exception:", +-- +2.9.3 + diff --git a/0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch b/0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch new file mode 100644 index 0000000..7682c2f --- /dev/null +++ b/0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch @@ -0,0 +1,32 @@ +From 9b1b0c6c49d19a63a0e781fcc56d3b4ea530f2da Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 18 Jan 2017 09:49:10 +0100 +Subject: [PATCH] a-a-ureport: fix calling of run_event_on_problem_dir + +We just need to call 'run_event_on_problem_dir' and not +'report.run_event_on_problem_dir' as the function is imported as a solo +identifier from the report module. + +Resolved #1413637 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-action-ureport | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport +index a73e7f1..37595f1 100755 +--- a/src/plugins/abrt-action-ureport ++++ b/src/plugins/abrt-action-ureport +@@ -78,7 +78,7 @@ def get_bugzilla_reports(reported_to): + return bugs + + def run_event(event_name, dump_dir_name): +- state, ret = report.run_event_on_problem_dir(dump_dir_name, event_name) ++ state, ret = run_event_on_problem_dir(dump_dir_name, event_name) + if ret == 0 and state.children_count == 0: + log1("Didn't find definition of event '%s'", event_name) + +-- +2.9.3 + diff --git a/abrt.spec b/abrt.spec index 521e23a..e730f9b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -30,10 +30,21 @@ %define have_kexec_tools 1 %endif -%if 0%{?rhel} >= 6 -%define desktopvendor redhat -%else -%define desktopvendor fedora +# rpmbuild --define 'desktopvendor mystring' +%if "x%{desktopvendor}" == "x" + %if %{with systemd} + %define desktopvendor %(source /etc/os-release; echo ${ID}) + %else + %if 0%{?rhel} >= 6 + %define desktopvendor redhat + %else + %if 0%{?suse_version} + %define desktopvendor suse + %else + %define desktopvendor fedora + %endif + %endif + %endif %endif # do not append package version to doc directory of subpackages in F20 and later; rhbz#993656 @@ -49,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -57,6 +68,21 @@ 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-doc-document-selinux-change-needed-for-automatic-del.patch +#Patch0002: 0002-spec-recommend-libreport-plugin-systemd-journal-on-F.patch +Patch0003: 0003-remove-Buildroot-and-Groups-tags.patch +#Patch0004: 0004-spec-remove-changelog-entries-older-than-2-years.patch +#Patch0005: 0005-spec-use-versioned-provides.patch +#Patch0006: 0006-spec-remove-cleaning-buildroot.patch +#Patch0007: 0007-spec-remove-defattr.patch +#Patch0008: 0008-spec-allow-any-compression-of-man-pages.patch +Patch0009: 0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch +#Patch0010: 0010-testsuite-add-test-for-bugzilla-default-url.patch +Patch0011: 0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch +Patch0012: 0012-kernel-modify-suspicious-string-invalid-opcode.patch +#Patch0013: 0013-testsuite-add-testcase-for-modified-suspicious-strin.patch +#Patch0014: 0014-spec-if-using-systemd-default-to-os-release-ID-for-d.patch +Patch0015: 0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch # don't remove this patch, packages in rawhide are not signed! Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch @@ -108,6 +134,7 @@ Requires: python3-augeas Requires: python3-dbus Requires: python3-dmidecode Requires: libreport-plugin-ureport >= %{libreport_ver} +Recommends: libreport-plugin-systemd-journal %description %{name} is a tool to help users to detect defects in applications and @@ -271,7 +298,7 @@ Requires: %{name} = %{version}-%{release} BuildRequires: libreport-web-devel >= %{libreport_ver} BuildRequires: hawkey-devel Obsoletes: libreport-plugin-bodhi > 0.0.1 -Provides: libreport-plugin-bodhi +Provides: libreport-plugin-bodhi = %{version}-%{release} %description plugin-bodhi Search for a new updates in bodhi server. @@ -515,7 +542,6 @@ CFLAGS="%{optflags} -Werror" %configure --enable-doxygen-docs \ make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT \ mandir=%{_mandir} \ dbusabrtdocdir=%{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ @@ -551,9 +577,6 @@ rm -f %{buildroot}%{_infodir}/dir rm %{buildroot}%{_sysconfdir}/bash_completion.d/abrt.bash_completion install -Dpm0644 src/cli-ng/abrt.bash_completion %{buildroot}%{_datadir}/bash-completion/completions/abrt -%clean -rm -rf $RPM_BUILD_ROOT - %check make check @@ -736,7 +759,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %files -f %{name}.lang -%defattr(-,root,root,-) %doc README.md COPYING %if %{with systemd} %{_unitdir}/abrtd.service @@ -752,7 +774,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_libexecdir}/abrt-action-generate-machine-id %{_bindir}/abrt-handle-upload %{_bindir}/abrt-action-notify -%{_mandir}/man1/abrt-action-notify.1.gz +%{_mandir}/man1/abrt-action-notify.1* %{_bindir}/abrt-action-save-package-data %{_bindir}/abrt-action-save-container-data %{_bindir}/abrt-watch-log @@ -763,14 +785,14 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_datadir}/%{name}/conf.d/abrt-action-save-package-data.conf %config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf %{_datadir}/%{name}/conf.d/plugins/xorg.conf -%{_mandir}/man5/abrt-xorg.conf.5.gz +%{_mandir}/man5/abrt-xorg.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys.conf %{_datadir}/%{name}/conf.d/gpg_keys.conf -%{_mandir}/man5/gpg_keys.conf.5.gz +%{_mandir}/man5/gpg_keys.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf -%{_mandir}/man5/abrt_event.conf.5.gz +%{_mandir}/man5/abrt_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf -%{_mandir}/man5/smart_event.conf.5.gz +%{_mandir}/man5/smart_event.conf.5* %dir %attr(0751, root, abrt) %{_localstatedir}/spool/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root @@ -778,23 +800,22 @@ killall abrt-dbus >/dev/null 2>&1 || : %ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket %ghost %attr(0644, -, -) %{_localstatedir}/run/%{name}/abrtd.pid -%{_mandir}/man1/abrt-handle-upload.1.gz -%{_mandir}/man1/abrt-server.1.gz -%{_mandir}/man1/abrt-action-save-package-data.1.gz -%{_mandir}/man1/abrt-watch-log.1.gz +%{_mandir}/man1/abrt-handle-upload.1* +%{_mandir}/man1/abrt-server.1* +%{_mandir}/man1/abrt-action-save-package-data.1* +%{_mandir}/man1/abrt-watch-log.1* %{_mandir}/man1/abrt-action-analyze-python.1* -%{_mandir}/man1/abrt-action-analyze-xorg.1.gz -%{_mandir}/man1/abrt-auto-reporting.1.gz -%{_mandir}/man8/abrtd.8.gz -%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz -# {_mandir}/man5/pyhook.conf.5.gz +%{_mandir}/man1/abrt-action-analyze-xorg.1* +%{_mandir}/man1/abrt-auto-reporting.1* +%{_mandir}/man8/abrtd.8* +%{_mandir}/man5/abrt-action-save-package-data.conf.5* +# {_mandir}/man5/pyhook.conf.5* %files libs -%defattr(-,root,root,-) %{_libdir}/libabrt.so.* %config(noreplace) %{_sysconfdir}/%{name}/abrt.conf %{_datadir}/%{name}/conf.d/abrt.conf -%{_mandir}/man5/abrt.conf.5.gz +%{_mandir}/man5/abrt.conf.5* %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins %dir %{_datadir}/%{name} @@ -805,7 +826,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_datadir}/augeas/lenses/abrt.aug %files devel -%defattr(-,root,root,-) # The complex pattern below (instead of simlpy *) excludes Makefile{.am,.in}: %doc apidoc/html/*.{html,png,css,js} %{_includedir}/abrt/abrt-dbus.h @@ -816,18 +836,15 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_libdir}/pkgconfig/abrt.pc %files gui-libs -%defattr(-,root,root,-) %{_libdir}/libabrt_gui.so.* %files gui-devel -%defattr(-,root,root,-) %{_includedir}/abrt/abrt-config-widget.h %{_includedir}/abrt/system-config-abrt.h %{_libdir}/libabrt_gui.so %{_libdir}/pkgconfig/abrt_gui.pc %files gui -%defattr(-,root,root,-) %dir %{_datadir}/%{name} # all glade, gtkbuilder and py files for gui %{_datadir}/icons/hicolor/*/apps/* @@ -843,17 +860,15 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/system-config-abrt.1* %files addon-coredump-helper -%defattr(-,root,root,-) %{_libexecdir}/abrt-hook-ccpp %{_sbindir}/abrt-install-ccpp-hook %{_mandir}/man*/abrt-install-ccpp-hook.* %files addon-ccpp -%defattr(-,root,root,-) %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf %{_datadir}/%{name}/conf.d/plugins/CCpp.conf -%{_mandir}/man5/abrt-CCpp.conf.5.gz +%{_mandir}/man5/abrt-CCpp.conf.5* %{_libexecdir}/abrt-gdb-exploitable %{_journalcatalogdir}/abrt_ccpp.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_ccpp_format.conf @@ -881,11 +896,11 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_bindir}/abrt-action-analyze-ccpp-local %{_bindir}/abrt-dump-journal-core %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_event.conf -%{_mandir}/man5/ccpp_event.conf.5.gz +%{_mandir}/man5/ccpp_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/gconf_event.conf -%{_mandir}/man5/gconf_event.conf.5.gz +%{_mandir}/man5/gconf_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/vimrc_event.conf -%{_mandir}/man5/vimrc_event.conf.5.gz +%{_mandir}/man5/vimrc_event.conf.5* %{_datadir}/libreport/events/analyze_CCpp.xml %{_datadir}/libreport/events/analyze_LocalGDB.xml %{_datadir}/libreport/events/collect_xsession_errors.xml @@ -907,7 +922,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-dump-journal-core.* %files addon-upload-watch -%defattr(-,root,root,-) %{_sbindir}/abrt-upload-watch %if %{with systemd} %{_unitdir}/abrt-upload-watch.service @@ -919,17 +933,16 @@ killall abrt-dbus >/dev/null 2>&1 || : %files retrace-client %{_bindir}/abrt-retrace-client -%{_mandir}/man1/abrt-retrace-client.1.gz +%{_mandir}/man1/abrt-retrace-client.1* %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_retrace_event.conf -%{_mandir}/man5/ccpp_retrace_event.conf.5.gz +%{_mandir}/man5/ccpp_retrace_event.conf.5* %{_datadir}/libreport/events/analyze_RetraceServer.xml %files addon-kerneloops -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf %{_journalcatalogdir}/abrt_koops.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_koops_format.conf -%{_mandir}/man5/koops_event.conf.5.gz +%{_mandir}/man5/koops_event.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/plugins/oops.conf %{_datadir}/%{name}/conf.d/plugins/oops.conf %if %{with systemd} @@ -949,11 +962,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-oops.conf.5* %files addon-xorg -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/xorg_event.conf %{_journalcatalogdir}/abrt_xorg.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_xorg_format.conf -%{_mandir}/man5/xorg_event.conf.5.gz +%{_mandir}/man5/xorg_event.conf.5* %if %{with systemd} %{_unitdir}/abrt-xorg.service %else @@ -966,9 +978,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %if %{?have_kexec_tools} == 1 %files addon-vmcore -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf -%{_mandir}/man5/vmcore_event.conf.5.gz +%{_mandir}/man5/vmcore_event.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/plugins/vmcore.conf %{_datadir}/%{name}/conf.d/plugins/vmcore.conf %{_datadir}/libreport/events/analyze_VMcore.xml @@ -990,7 +1001,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %endif %files addon-pstoreoops -%defattr(-,root,root,-) %if %{with systemd} %{_unitdir}/abrt-pstoreoops.service %else @@ -1002,75 +1012,66 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-merge-pstoreoops.1* %files addon-python -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf %{_datadir}/%{name}/conf.d/plugins/python.conf -%{_mandir}/man5/abrt-python.conf.5.gz +%{_mandir}/man5/abrt-python.conf.5* # TODO? Do we need %%config(noreplace) in the below line too? %config(noreplace) %{_sysconfdir}/libreport/events.d/python_event.conf %{_journalcatalogdir}/abrt_python.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python_format.conf -%{_mandir}/man5/python_event.conf.5.gz +%{_mandir}/man5/python_event.conf.5* %{python_sitearch}/abrt*.py* %{python_sitearch}/abrt.pth %files addon-python3 -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/python3.conf %{_datadir}/%{name}/conf.d/plugins/python3.conf -%{_mandir}/man5/abrt-python3.conf.5.gz +%{_mandir}/man5/abrt-python3.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/python3_event.conf %{_journalcatalogdir}/abrt_python3.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf -%{_mandir}/man5/python3_event.conf.5.gz +%{_mandir}/man5/python3_event.conf.5* %{python3_sitearch}/abrt* %{python3_sitearch}/__pycache__/abrt* %files cli -%defattr(-,root,root,-) %files tui -%defattr(-,root,root,-) %{_bindir}/abrt-cli -%{_mandir}/man1/abrt-cli.1.gz +%{_mandir}/man1/abrt-cli.1* %files cli-ng -%defattr(-,root,root,-) %{_datadir}/bash-completion/completions/abrt %{_bindir}/abrt %{python_sitearch}/abrtcli/ -%{_mandir}/man1/abrt.1.gz +%{_mandir}/man1/abrt.1* %files desktop -%defattr(-,root,root,-) %if %{with atomic} %files atomic -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp_Atomic.conf %{_unitdir}/abrt-coredump-helper.service %{_datadir}/%{name}/conf.d/plugins/CCpp_Atomic.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %{_bindir}/abrt-action-save-package-data -%{_mandir}/man1/abrt-action-save-package-data.1.gz -%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz +%{_mandir}/man1/abrt-action-save-package-data.1* +%{_mandir}/man5/abrt-action-save-package-data.conf.5* %endif %files plugin-bodhi -%defattr(-,root,root,-) %{_bindir}/abrt-bodhi %{_bindir}/abrt-action-find-bodhi-update %config(noreplace) %{_sysconfdir}/libreport/events.d/bodhi_event.conf %{_datadir}/libreport/events/analyze_BodhiUpdates.xml -%{_mandir}/man1/abrt-bodhi.1.gz -%{_mandir}/man1/abrt-action-find-bodhi-update.1.gz +%{_mandir}/man1/abrt-bodhi.1* +%{_mandir}/man1/abrt-action-find-bodhi-update.1* %files dbus -%defattr(-,root,root,-) %{_sbindir}/abrt-dbus %{_sbindir}/abrt-configuration -%{_mandir}/man8/abrt-dbus.8.gz -%{_mandir}/man8/abrt-configuration.8.gz +%{_mandir}/man8/abrt-dbus.8* +%{_mandir}/man8/abrt-configuration.8* %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf %{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.xml %{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Entry.xml @@ -1096,14 +1097,14 @@ killall abrt-dbus >/dev/null 2>&1 || : %files python %{python_sitearch}/problem/ -%{_mandir}/man5/abrt-python.5.gz +%{_mandir}/man5/abrt-python.5* %files python-doc %{python_sitelib}/problem_examples %files python3 %{python3_sitearch}/problem/ -%{_mandir}/man5/abrt-python3.5.gz +%{_mandir}/man5/abrt-python3.5* %files python3-doc %{python3_sitelib}/problem_examples @@ -1112,6 +1113,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jan 18 2017 Matej Habrnal 2.10.0-2 +- daemon: Allow rpm to be optional at build time +- modify kernel's suspicious string "invalid opcode:" +- fix calling of run_event_on_problem_dir in a-a-ureprt +- Resolves: #1413637, #1413451 + * Mon Jan 02 2017 Matej Habrnal 2.10.0-1 - Translation updates - build: make the release-* targets smarter @@ -1407,1602 +1414,3 @@ killall abrt-dbus >/dev/null 2>&1 || : * Thu Oct 09 2014 Jakub Filak - 2.3.0-2 - console-notifications: use return instead of exit - -* Wed Oct 08 2014 Jakub Filak - 2.3.0-1 -- applet: confirm ignoring of notifications -- cli: batch reporting in abrt-cli -- cli: add option remove crash dirs after reporting - -* Thu Oct 02 2014 Jakub Filak - 2.2.2-9 -- disable addon-vmcore on AArch64 - -* Wed Oct 01 2014 Jakub Filak - 2.2.2-8 -- dbus: fixed abrt-dbus memory leaks -- plugins: add abrt-action-generate-machine-id -- retrace-client: humanize sizes -- cli: robustize abrt-console-notification.sh -- cli: make consistent commands in abrt-cli -- Resolves: #1141485 - -* Thu Sep 11 2014 Jakub Filak - 2.2.2-7 -- remove dependency on crash - -* Mon Sep 01 2014 Jakub Filak - 2.2.2-6 -- gettext: fix the initialization in python scripts -- oops: add man page.patch -- revert: support handling crashes in lxc containers -- oops: fix a use after free bug uncoverd by coverity -- reduced the amount of log messages - -* Fri Aug 15 2014 Fedora Release Engineering - 2.2.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Wed Jul 16 2014 Jakub Filak 2.2.2-4 -- dump kernel oopses from systemd-journal -- support SyntaxError Python exceptions - -* Wed Jul 16 2014 Jakub Filak 2.2.2-3 -- don't use native unwinder on arm - -* Mon Jul 14 2014 Jakub Filak 2.2.2-2 -- use native unwinder for generating 'core_backtrace' - -* Tue Jul 08 2014 Jakub Filak 2.2.2-1 -- applet: chown each notified problem before reporting it -- koops: don't analyze MCEs like standard oopses -- koops: don't drop not-reportable oopses by default -- abrt_event: fix post-create reporter-uploader examples -- local duplicates must have matching executables -- Resolves: #1105316 - -* Tue Jun 10 2014 Jakub Filak - 2.2.1-6 -- configui: do not use deprecated gtk3 API -- gdb: disable auto-loaded files -- Resolves: #1105940 - -* Sat Jun 07 2014 Fedora Release Engineering - 2.2.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Tue May 27 2014 Kalev Lember - 2.2.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 - -* Tue May 06 2014 Jakub Filak 2.2.1-3 -- dbus: Fix invalid dbus policy file - -* Tue May 06 2014 Jakub Filak 2.2.1-2 -- dbus: Fix desktop centric polkit policy file - -* Tue Apr 22 2014 Jakub Filak 2.2.1-1 -- stop using deprecated json-c functions -- vmcore: start the service after kdump service -- do not clear LANG env variable -- localization: fix gettext -- Translation updates -- simplify Analyze C/C++ event configuration -- Support handling crashes in lxc containers -- koops: add an option controlling MCE detection -- cli: list displays all problems -- Fix a spelling error in a configuration GUI tooltip. -- spec: python3 corrections -- Fix new lines in po files - -* Wed Mar 05 2014 Jakub Filak 2.2.0-1 -- Translation updates -- limit ourselves to *.conf in /etc/abrt -- applet: run Autoreporting event in NONINTERACTIVE mode -- ureport: add user to CC List of Bugzilla bug -- python: build python api for py3 -- koops: never search for MCE strings in dmesg -- spec: remove stray space from %%description -- spec: add missing requires for python api -- spec: add dependency on abrt-python - -* Mon Feb 10 2014 Jakub Filak - 2.1.12-2 -- python: install modules to sitearch directory -- upload-watch: remove busy-wait for SIGUSR1 - -* Thu Jan 30 2014 Jakub Filak 2.1.12-1 -- don't break the event run by failures of abrt-action-notify -- harvest-vmcore: properly handle inaccessible dir error -- spec: abrt-cli requires a pkg providing workflows -- applet: do not say the report is anonymous when ureport auth is enabled -- abrtd.service: Don't order after syslog.target -- vmcore: properly configure Augeas -- applet: don't notify missing ignored_problems file -- fix a double free error in abrt-applet -- configui: show 'Close' button in the dialog -- configure: remove all -Werror from O0CFLAGS -- fix handling of Machine Check Exceptions. - -* Wed Jan 08 2014 Jakub Filak 2.1.11-1 -- Update translations -- harvest_vmcore: replace regexp config parsing with augeas -- introduce D-Bus Configuration Service -- mark koopses with unsupporeted HW as not-reportable -- bodhi: use the right exit codes -- abrt-handle-event: don't use already freed memory -- introduce abrt-auto-reporting utility -- abrt-action-notify: fix couple of flaws -- Use satyr to compute koops duphash -- koops: tweak koops parser for s390 Call Traces -- configui: do not use deprecated gtk3 API - -* Wed Dec 11 2013 Jakub Filak 2.1.10-1 -- abrt-cli: display URL to reports in the details -- abrt-cli list: list all problems by default -- Do not copy Makefiles to documentation. -- harvest_vmcore: Fix absolute path handling -- Speed up journalctl --system support detection -- spec: add abrt's augeas module -- add augeas module for abrt configuration files -- spec: rename CCpp.conf -- rename CCpp.conf man to abrt-CCpp.conf -- spec: move vmcore addon's configuration to a new dir -- vmcore: reorganize configuration -- make: install abrt-harvest-vmcore into share conf.d -- spec: install abrt-harvest-vmcore.conf to share conf.d -- switch to libreport workflows in all report-cli events -- abrtd: use warning level for "Recreating deleted ..." message -- abrt-python: add missing arguments to Crash handler -- spec: adapt recent changes related to abrt-action-notify -- move the notify event from dbus_event.conf to abrt_event.conf -- run the autoreporting event from abrt-action-notify -- spec: install conf to /usr/share/abrt/conf.d -- Load conf from /usr/share/abrt/conf.d and /etc/abrt -- abrt-action-install-debuginfo: fix --exact handling. Fixes rhbz1027786 -- Use bugzilla_formatdup.conf for detected duplicates in python too. Fixes rhbz#875312. -- applet: properly handle incomplete problems -- DBus Problems API: update documentation -- spec: add abrt-action-notify -- factor out the D-Bus notifications into a python script -- adapt post_create event to the recent changes in reporter-ureport -- spec: add Requires: systemd-python for python addon -- shorten CCpp reason message -- abrt-dump-oops: if backtrace is not seen, file an one-line oops. Fixes rhbz#812537 -- Update translations -- Add several manpages -- Resolves: #812204, #1005762 - -* Sat Oct 26 2013 Jakub Filak 2.1.9-1 -- pyhook: add logging workaround for rhbz#1023041 -- spec: add systemd-python to BuildRequires -- start abrt-handle-event in non-interactive mode -- Log to journal instead of syslog -- Create manpage for xorg.conf -- Configuration UI: instantly apply changes -- applet: reload user configuration before accessing its values -- switch logging from syslog to systemd in f20 - rhbz#1010648 -- make notification messages more clear -- Use log_ family instead of VERBn log calls -- spec: unversioned doc directories in newer fedoras -- don't consider crashes posted to ABRT server as reported -- check return values of fcntl() and setsid() -- remove a dead code uncovered by coverity -- spec: fix file access rights for type and core_bactrace -- spec: move examples to abrt-python-doc package -- install problem examples to python dir -- spec: added the versioned abrt-libs requires to silence rpmdiff -- a-dump-oops: Add new WARNING pattern -- a-a-save-kernel-data: support more kernel flavours -- a-h-event: always compare results of realpath() - -* Fri Oct 04 2013 Jakub Filak 2.1.8-1 -- Disassemble only instruction rage memory if backtrace is too big -- Include floating-point registers in the backtrace -- spec: make addon-ccpp dependent on libreport-python -- polkit: replace deprecated functions with their subtitues -- retrace-client: query CCpp exploitable information from Retrace server; closes #703 -- GUI config: add support for Private ticket option -- a-a-ureport: handle os errors gracefully rhbz#998428 rhbz#998197 -- add prefix from configure to the path of debuginfo installer - closes #701 -- spec: added deps on abrt-python - closes rhbz#1008182 -- spec: remove abrt-dedup-client; closes #702 -- remove abrt-dedup-client; related to #702 -- abrt-*-client: simplify formatting of locale-related headers -- Resolves: #812204 - -* Wed Sep 11 2013 Jakub Filak 2.1.7-1 -- fix debuginfo installer expecting user input from a pipe - closes #696 -- add environment variable whitelist to debuginfo install wrapper - closes #692 -- add repo_pattern argument as a custom repository filter - closes #688 -- abrt-cli list: replace "@" prefix by "id " prefix -- fix a crash in 'abrt-cli info' when short id isn't found -- Use common string-to-sha1_hash functions. #694 -- doc: update OpenGPGCheck in a-a-save-package-data rhbz#997922 -- abrt-cli report: accept sha1 hashes of directory names. #693 -- abrt-dump-oops: emit a message if throttling for a significant period of time -- abrt-gdb-exploitable: print current instruction -- spec: posttrans scriptlet regenerating core_backtraces -- abrt-handle-event: add check for missing crash thread -- provide tmpfiles.d configuration -- abrt-cli list: use sha1 hash as short ids instead of @N thing. rhbz#906733 -- vmcore: fail gracefully if dump_dir is not accessible -- spec: vmcore: require kexec-tools -- vmcore: use re.MULTILINE instead of numerical value -- vmcore: don't fail if /etc/kdump.conf is not readable -- abrt-cli info: add "-s SIZE" option. closes #689 -- fix noninteractive mode in debuginfo installer - rhbz#737066 -- fixed the gpg keys loading - closes #686 -- Fix type of OPT_BOOL's referenced flag variable - it must be int, not bool! -- adds a kdump.conf parser to get the correct dump dir location, closes #640 -- xorg_event.conf: use abrt-action-list-dsos to create dso_list -- abrt-action-list-dsos: extend it to be able to parse Xorg backtrace. -- don't require debuginfo for vmcore analysis rhbz#768389 -- specfile: make addon-pstoreoops obsolete addon-uefioops -- abrt-dump-oops: add -t option which slows down problem creation. rhbz#902398. -- rename uefioops to pstoreoops rhbz#949721 -- spec: create type element for problem dirs where it doesn't exist - rhbz#958968 -- introduce abrt-upload-watch -- fix ccpp hook to create the type element - closes #682 -- specfile: use systemd-rpm macros. rhbz#850019 -- abrt-harvest-vmcore: notify new path - #657 -- abrt-dump-oops: remove redundant g_list_length() call, make messages clearer -- updated translation - rhbz#860555 -- updated transifex url -- GUI config: add Close/Defaults button -- GUI config: hide option descriptions in tool tips -- GUI config: add Silent shortened reporting support -- applet: silent shortened reporting -- applet: less misleading label for Ignore button -- abrt-handle-upload: switch from shell to python; send socket notification. #657 -- spec: add build requires for XSMP depencies -- applet: update seen list when X Session dies -- improved the error messages in abrt-server - closes #679 -- fix typo in abrt-config-widget.ui -- spec: add new packages abrt-gui-libs and abrt-gui-devel -- delete desktop file for system-config-abrt -- expose abrt configuration GUI in public API -- rewrite abrt-harvest-uefioops to python - closes #678 -- spec: abrt-python is no longer noarch - related #677 -- created python binding for notify_new_path - closes #677 -- spec: install applet's desktop file to system dir -- applet: configure notification source -- rewrite shell script for moving vmcores into python closes #676 -- abrtd: ensure that the dump location directory exists -- a-a-ureport: generate core_backtrace only for CCpp problems -- do not store potentially big data in /tmp -- abrt-dbus: send new problem notify signal to socket -- abrtd: remove "post-create" machinery. Related to #657 -- Avoid leaving stale rpmdb locks behind (rhbz#918184) -- abrtd: improve parsing of pidfile in create_pidfile() -- abrt-dump-{oops,xorg}: send new problem notify signal to socket -- abrtd: disable inotify watch on DUMP_LOC -- abrt-hook-ccpp: send "POST /creation_notification" after creating problem dir -- Stop dying in check_free_space(); rename it to low_free_space() -- abrt-server: make create_problem_dir() run "post-create" -- abrt-handle-event: create DUMP_LOC/post-create.lock when running "post-create" -- abrt-server: add support for "POST /creation_notification" -- abrt-handle-event: free more of allocated data -- Resolves: #994009 - -* Tue Aug 06 2013 Jakub Filak 2.1.6-3 -- try to generate core_backtrace only for CCpp problems - -* Mon Jul 29 2013 Jakub Filak 2.1.6-2 -- disable gcc unused-typedef warning for GLib -- use right dependencies for RHEL - -* Fri Jul 26 2013 Jakub Filak 2.1.6-1 -- replace functions deprecated in Gtk-3.10 with their substitutes -- integrate with satyr, drop btparser -- use absolute path in python shebang rhzb#987010 -- abrt-action-save-package-data: properly close rpm database. Closes #674. -- abrt-action-save-package-data: fix handling of ProcessUnpackaged on scripts -- abrt-action-save-package-data manpage: typo fix -- change /var/spool/abrt/ to /var/tmp/abrt in doc rhbz#912750 -- Fix RPMdiff warnings about abrtd and abrt-action-install-debuginfo-to-abrt-cache -- specfile: add dependency on abrt-libs to abrt-addon-uefioops -- stop using the hardcoded event list, use workflows instead rhbz#866027 -- retrace-client: build correct release for Fedora Rawhide -- spec: drop unnecessary Obsoletes and Provides -- correct FSF address in python exception hook -- add missing manual pages for binaries and scripts -- fix rpmlint issues in the spec file -- move event option XML files to /usr/share/libreport/ -- abrt-hook-ccpp: always fall back to creating user core. -- dbus: add GetForeignProblems method -- the system tray icon opens recently detected problem -- add gdb python plugin which analyzes coredump for vulnerability -- applet: stop saving configuration at exit -- introduce system-config-abrt -- abrt-cli status: make the output more natural -- Fix wrong path in shell include -- abrt-dump-xorg: save "type=xorg" along with "analyzer=xorg" -- Update python hook to use fixed socket interface -- abrt-server: updates/fixes for future rasdaemon needs - -* Tue Jul 16 2013 Jakub Filak 2.1.5-2 -- fix reporting from Rawhide -- Resolves: #958933 - -* Fri Jun 14 2013 Jakub Filak 2.1.5-1 -- abrt-retrace-client requires tar closes #635 -- abrt-tui requires abrt closes #633 -- a-d-oops: obtain kernel version from the oops -- a-a-p-ccpp-analysis: import all used attributes -- vmcore: provide all problem elements necessary for the reporting -- a-d-oops: add 'update' command line argument -- a-a-g-core-backtrace: don't crash if kernel file doesn't exist -- a-a-a-vmcore: save kernel version in 'kernel' file -- abrt-cli: make status help message more precise -- abrt-cli status: don't include reported problems into count -- abrt-cli list: implement --since and --until -- abrt-python: open dirs read-only if possible -- dbus: ChownProblemDir method really changes the owner -- python: disable events in collision with anaconda -- abrt-python requires pygobject2 -- systemd units: start services only if it make sense -- abrt-harvest-uefioops.in: test for abrtd after testing for pstore, not before -- make abrt-uefioops.service conditional on /sys/fs/pstore being populated -- dbus: fix SetElement failing when shrinking an item -- spec: fix unowned directories -- abrt-python: whole python API path in POTFILES.skip -- abrt-python: fix dbus compatibility on RHEL6 -- abrt-python: check if gid equals current users gid -- abrt-python: fix tests compatibility with python 2.6 -- abrt-python: pass DD_OPEN_READONLY only if available -- abrt-python: fix deprecation warnings -- console notification shouldn't ask confirmation - closes #652 -- Short BT deduplication false positives workaround -- Only problems of same type can be duplicates -- abrt-python: fix bug in problem.get -- abrt-python: pep8 cleanup -- koops parse: support frame prefix -- don't show non critical errors in console notification - -* Mon May 06 2013 Jakub Filak 2.1.4-3 -- don't show non critical errors in console notification -- use last_occurrence with --since - -* Fri May 03 2013 Jakub Filak 2.1.4-2 -- start abrtd.service after livecd -- udpate translation -- add addon-uefioops -- Resolves: #928753 - -* Tue Apr 30 2013 Jakub Filak 2.1.4-1 -- build abrtd and setuided executables with full relro rhbz#812284 -- added a console notification script to profile.d closes #641 -- return the right exit code for user cancellation -- add more examples to Problem API doc -- updated translation Related: #951416 -- Replace "THANKYOU" with EXIT_STOP_EVENT_RUN exit code (70) -- abrt-action-ureport: rewrite in python, improve messages -- abrt-cli: added 'status' command -- abrt-cli: make "report -v[vv]" export correct $ABRT_VERBOSE value -- bodhi, retrace: support /etc/os-release -- abrt-action-generate-core-backtrace: be a bit more verbose -- abrt-dump-oops: add "Machine Check Exception" to the list of watched strings rhbz#812537 -- abrt-action-install-debuginfo: do not assume os.execvp never returns -- abrtd: mark unprocessed dump directories as not-reportable -- abrtd: update last occurrence dump dir file -- spec: remove the commented macros rhbz#864851 -- spec: added the versioned abrt-libs requires to silence rpmdiff rhbz#881123 -- spec: create a new subpackage for the console notification #641 -- spec: add deps. required for reporting to abrt-cli pkg -- spec: inc required version of libreport - -* Mon Apr 08 2013 Jakub Filak 2.1.3-2 -- Require correct version of libreport -- Add dependecies required for reporting to abrt-cli package - -* Wed Mar 27 2013 Jakub Filak 2.1.3-1 -- record runlevel -- Integration with satyr -- dbus: check correct errno after dump_dir_is_accessible_by_uid() -- require libreport workflow package acc. to OS type -- remove the abrt-gui closes #629 -- retrace-client: do not allow space in os_release_id; closes #625 -- Remove all smolt-related files and code bits -- abrtd: recreate Dump Location directory if it is delete - -* Mon Mar 25 2013 Jakub Filak 2.1.2-4 -- Check if restorecon cmd exists and run it only if it does -- Resolves: #926934 - -* Fri Mar 22 2013 Jakub Filak 2.1.2-3 -- Fix problems with spaces in retrace-client - -* Fri Mar 22 2013 Jakub Filak 2.1.2-2 -- Require correct version of libreport -- Add a patch for abrtd which ensures that the dump location always exists - -* Tue Mar 19 2013 Jakub Filak 2.1.2-1 -- Improve log messages -- Update translation -- Introduce helpers for management of list of ignored problems -- applet: show a confirmation notify bubble for reported problems in ShortenedReporting mode -- applet: mark problems as ignored and don't notify ignored problems -- applet: remove confusing "Show" button -- applet: pass problem's id to the gui app -- abrt-ccpp: try to read hs_err.log from crash's CWD -- abrt-action-perform-ccpp-analysis: Complain if analyze_RetraceServer can't run. Closes 619 -- abrt-gui: change URL to point to most recent doc -- add abrt-action-analyze-ccpp-local to ccpp-addon related to rhbz#759443 -- analyze-ccpp don't suid to abrt when run as root, related rhbz#759443 -- abrtd: prohibit DumpLocation == WatchCrashdumpArchiveDir. Closes rhbz#854668 -- abrtd: don't blame interpreter, blame the running script #609 -- a-a-ureport: don't fail on missing counter file -- a-a-ureport: allow to send ureport more than once -- dbus doc: install abrt-dbus documentation files to the correct places -- dbus doc: extend the documentation of DBus API -- dbus doc: make xml interface parseable by qtdbusxml2cpp -- dbus: add basics to a new problem -- abrt-harvest-vmcore: don't copy dir from var/spool if copy already exists -- fix path in the collect_xsession_errors event -- retrace-client: print dots instead of repeated status message -- move abrt.pth to arch specific location rhbz#912540 -- Make forking code paths more robust. -- add more logging to catch "stuck core-backtrace" problem; reduce gdb looping -- Resolves: #879160, #854668, #885044, #903005, #905412, #909968, #912540 - -* Tue Mar 05 2013 Jakub Filak 2.1.1-3 -- disable shortened and auto reporting in RHEL -- Resolves: #918040, #918041 - -* Tue Mar 05 2013 Jakub Filak 2.1.1-2 -- remove ureport events from the reporting workflow in RHEL - -* Fri Feb 08 2013 Jakub Filak 2.1.1-1 -- add SETGID bit to abrt-action-install-debuginfo-to-abrt-cache -- add abrt-desktop depency on libreport-fedora -- abrt-dump-{oops,xorg}: limit amount of created dirs, add cooldown sleep if exceeded -- abrt-watch-log: handle a case when child doesn't process its input -- abrt-watch-log: fix a bug in mmap error check -- abrt-action-analyze-xorg: fix the case with DIR != "." -- Resolves: #908256 - -* Mon Feb 04 2013 Jakub Filak 2.1.0-1 -- pkg-config: export defaultdumplocation variable -- configure: set default dump location to /var/tmp/abrt -- abrtd: sanitize mode and ovner of all elements -- updated translation -- abrtd-inotify-flood test: expend it to check for another inotify-related bug -- gnome-abrt is default GUI -- applet: on requrest open gnome-abrt instead of abrt-gui -- Make it so that g_io_channel_read_chars(channel_inotify) does not buffer data. -- multilib fixes -- daemon: unify accessibility check before delete with dbus -- dbus: move dir accessibility check from abrt to libreport -- dbus: user dd_chown instead of own impl. -- allow default dump directory to be configured through cmd line args -- introduce abrt-python -- reporter-bz: post a comment to dup bug, if we found a dup. version 2. -- replace left over magic dd modes by macro -- synchronize default dump dir mode with libreport -- replace all occurrences of hardcoded dump location by a variable -- harvest-vmcore: read dump dir path from configuration -- use lchown when chowning files over dbus -- use lchown when chowning newly created problem directory -- verify-that-report-edits test: fix to account for new CLI interface -- koops: add all x86 TRAP prefixes to list of suspicious strings -- koops: put all suspicious strings to global variable -- applet: extend comment. No code changes -- applet: introduce shortened reporting -- abrt-applet: handle SIGTERM and perform nice termination -- abrt-applet: update the seen list on every possible action -- applet: don't notify outdated new problems -- Add and use "report-cli" event instead of removed "report-cli -r" option -- fixed the relro flags rhbz#812284 -- applet: unref unused GIOChannel -- Resolves: #892230, #895742 - -* Thu Dec 20 2012 Jiri Moskovcak 2.0.20-1 -- New version 2.0.20 -- Fix typo: usefull->useful -- koops: generate core backtrace if missing -- udpated po files -- Cosmetic fixes in abrtd-inotify-flood test -- Hook up abrtd-inotify-flood to test infrastructure -- Add a testcase for inotify flood -- replace 'Start Autoreport' btn by a popup dialog -- dbus: NewProblem returns full path as problem_id -- abrt-action-analyze-xorg: fix /usr/include/paths.h -> paths.h -- abrtd: set inotify fd to non-blocking mode; ignore 0-sized inotify reads. Closes rhbz#873815 -- s/ABRT dump/problem directory/g -- abrt-applet: don't leak component name -- abrt-applet: alerts only not reported problems -- build system: Remove leftover of abrt-action-analyze-xorg shell script -- Rewrite abrt-action-analyze-xorg in C (partially) -- rework abrt-gui>Help>'Report problem with ABRT' -- abrt-action-analyze-oops: fix help text - we have no -s option -- Help text fix - using "problem directory" consistently -- abrt-dump-oops: add list of tainted modules to NOT_REPORTABLE string. Closes trac#821 -- a-a-p-c-a: use ask_yes_no_yesforever() fn from reportclient -- abrt-dump-oops: save /proc/modules contents. Partially closes trac#821 -- add ureporter wrapper sending ureport only once per problem dir -- introduce Desktop Session Autoreporting -- add Autoreporting configuration options -- abrt-action-analyze-xorg: robustify 'test "a" = "b"' against bugs -- Collect ~/.xsession_errors from its new path, if it is there. Closes trac#791 -- reflect recent libreport API changes .trac#822 -- Indentation fix. No code changes. -- minor fix to previous commit realted to .trac#541 -- don't use gtk_main* when using gtk_application .trac#890 -- minor fix to quit button -- Make "Open problem data" open the expert mode GUI -- Teach kernel oops hash to ignore "" / "" prefixes. Closes rhbz#875852 -- introduce DeleteElement D-Bus method -- introduce SetElement D-Bus method -- allow only one instance of gui trac#541 -- runtests/bugzilla-comment-format: fix false positive AGAIN -- update translations -- a-a-p-c-a: use correct name in gettext initialization -- Fix build system so that make rpm works again -- runtests/bugzilla-comment-format: fix false positive -- Improve xorg post-create. closes trac#838 -- Update po files -- fix problem occurrence counter updating algorithm -- abrt-dbus: immediately return an error if not-existing problem is requested -- bugzilla-comment-format: new test -- a-a-p-c-a: use event python API instead of abrt-handle-event -- doc: add dbus problems service specification - -* Mon Nov 26 2012 Jakub Filak 2.0.19-2 -- update translations -- Resolves: #880201 - -* Wed Nov 14 2012 Jakub Filak 2.0.19-1 -- call g_type_init() only in GLib version < 2.35 -- plugins/*_event.conf: use reporter-bz -F FMTFILE as appropriate -- repeat unchaged retrace status message only in verbose mode -- check the correct return value of yesforever answer -- abrt-handle-event: forward event process requests to parent -- don't leak optional retrace path and kernel tainted string -- enhance koops tainted flag parser -- Use "comment" element instead of "description" -- Resolves: #873488 - -* Thu Nov 01 2012 Jakub Filak 2.0.18-1 -- bugzilla-dupe-search: fix os_release to contain the same OS version as bug 755535 -- Do not stop reporting when GConf entry is not found. Closes rhbz#869833 -- Fix false positive caused by English language fix -- pyhook: import inspect lazily -- Resolves: #869833 - -* Wed Oct 24 2012 Jakub Filak 2.0.17-2 -- remove ABRT1.0-to-ABRT2.0 upgrade script from spec file - -* Wed Oct 24 2012 Jakub Filak 2.0.17-1 -- provide a problem item containing versions of binaries listed in Xorg backtrace - Adresses #867694 comment 1 -- import rpm lazily -- Resolves: #864324 - -* Wed Oct 17 2012 Jakub Filak 2.0.16-1 -- xorg_event: make post-create save dmesg, drop problems w/ binary modules - Partially addresses: #856790 -- collect_xsession_errors should not fail if !xsession-errors - Resolves: #866698 - -* Thu Oct 11 2012 Jakub Filak 2.0.15-1 -- add collect_* event to reporting chains for CCpp/Python/Kernel -- core-backtrace: make sure kernel version does not contain spaces -- core-backtrace: also include '?' flag for kerneloops -- don't check EXECUTABLE if it isn't present in list -- retrace-client: check whether all included files are regular -- abrt_exception_handler.py: save 'environ' element -- add Makefile target release-fix -- Make it possible for developer to disable crash processing for specific apps. Closes rhbz#848786 -- s/Dump directory/Problem directory/ -- Resolves: #864014, #864331, #848786 - -* Sun Oct 07 2012 Jakub Filak 2.0.14-2 -- added forgotten Requires - -* Fri Oct 05 2012 Jakub Filak 2.0.14-1 -- abrt-dump-oops: save /sys/kernel/debug/suspend_stats. Closes rhbz#787749 -- abrt-hook-ccpp: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 -- abrt-dump-oops: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 -- abrt-action-analyze-oops: fail if we end up hashing "" (empty string). Closes rhbz#862013 -- retrace-client: respect chrooted os_release in pkgcheck -- Added oops_recursive_locking1.right to Makefile.am -- fix koops-parser.at, remove bastardized copy of oops_recursive_locking1.test -- add new oops example (currently fails, the fix is coming up) -- fix oops jiffies time stamp counter removal code -- trivia: s/dump/problem directory; fix false positive in oops-with-jiffies.right -- testsuite: added f18 kickstart -- open files for appned not for write rhbz#854266 -- added more info about locking - rewrote with vda's comments rhbz#859724 -- ccpp_event.conf: ignore crashes with nonzero TracerPid. Closes rhbz#812350 -- show more info when abrtd can't acquire lock on pid, related to rhbz#859724 -- abrt-hook-ccpp: save "proc_pid_status" element -- use FILENAME_ABRT_VERSION instead of string literal -- Fix pyhook test to reflect changes made in write_dump -- trac#333: Add code generating dso_list to the python hook -- spec: tui should require libreport-cli rhbz#859770 -- trac#682: emit Crash DBus signal on org.freedesktop.problems bus -- spec: added deps on elfutils rhbz#859674 -- Resolves: #859674, #859770, #859724, #812350, #854266, #862013, #747870, #787749 - -* Fri Sep 21 2012 Jiri Moskovcak 2.0.13-1 -- - -* Tue Aug 21 2012 Jakub Filak 2.0.12-1 -- move abrtd.pid to /var/run/abrt/abrtd.pid -- abrt-harvest-vmcore: add CopyVMcore config option to copy vmcores. Closes 448, rhbz#811733, rhbz#844679 -- update po files rhzb#800784 -- applet: fix a SEGV caused by notify_init() not being called -- minor fix to pkg-config file -- ignore results of setregid() and setreuid() after glibc update -- hopefully fixed ugly applet icon rhbz#797078 -- add update of abrt server database to event chains -- Resolves: #761431, #811733, #844679, #797078 - -* Fri Aug 10 2012 Jakub Filak 2.0.11-2 -- fix abrt-dbus crash if no element is found in GetInfo() -- set sending-sensitive-data option to 'yes' for analyze_RetraceServer event - -* Thu Aug 02 2012 Jiri Moskovcak 2.0.11-1 -- new upstream release -- Resolves: #622773, #741222, #823299, #825116, #826058, #826800, #831333, #832085, #838842 - -* Tue May 22 2012 Jiri Moskovcak 2.0.10-4 -- abrt-desktop should require abrt-retrace-client -- Resolves: #823812 - -* Thu May 10 2012 Jiri Moskovcak 2.0.10-3 -- enable plugins unconditionally rhbz#819113 - -* Wed Apr 18 2012 Jiri Moskovcak -- fixed freeze in crashing python apps rhbz#808562 -- Resolves: #808562 - -* Wed Apr 18 2012 Jiri Moskovcak 2.0.10-2 -- minor rhel7 build fixes - -* Mon Apr 02 2012 Jiri Moskovcak 2.0.10-1 -- new upstream release -- fixed problem with empty problem directory rhzb#808131 -- fixed exception in a-a-a-core when eu-unstrip output is broken -- Resolves: #808131, #804309 - -* Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 -- fixed problems with rhel gpg keys rhbz#800419 - -* Thu Feb 02 2012 Jiri Moskovcak - 2.0.7-6 -- abrt-desktop shouldn't require bodhi on rhel (2nd try) - -* Wed Feb 01 2012 Jiri Moskovcak - 2.0.7-5 -- abrt-desktop shouldn't require bodhi on rhel - -* Thu Jan 12 2012 Fedora Release Engineering - 2.0.7-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Jan 03 2012 Jiri Moskovcak 2.0.7-3 -- build fixes - -* Thu Dec 08 2011 Jiri Moskovcak 2.0.7-2 -- added man page -- fixed weird number formatting - -* Wed Dec 07 2011 Jiri Moskovcak 2.0.7-1 -- new version -- disabled kerneloops.org -- abrt-ccpp hook fixes -- catch indentation errors in python rhbz#578969 -- fixed make check -- fixed retrace-client to work with rawhide -- require abrtd service in other services rhbz#752014 -- fixed problems with dupes rhbz#701717 -- keep abrt services enabled when updating F15->F16 -- Resolves: 752014 749891 749603 744887 730422 665210 639068 625445 701717 752014 578969 732876 757683 753183 756146 749100 - -* Fri Nov 04 2011 Jiri Moskovcak 2.0.6-1 -- new version -- Resolves: #701171 #712508 #726033 #728194 #728314 #730107 #733389 #738602 -- Resolves: #741242 #749365 #700252 #734298 #736016 #738324 #748457 #692274 -- Resolves: #711986 #723219 #749891 #712602 #744887 #749603 #625445 #665210 -- Resolves: #737991 #639068 #578969 #636000 #631856 - -* Fri Oct 07 2011 Nikola Pajkovsky - 2.0.4.981-3 -- don't file kernel bugs if "tainted: B" is set. -- don't file bugs about BIOS bugs. -- incorrect TAINTED description in bugs. -- Resoves: #718097 #708534 724838 - -* Mon Oct 3 2011 Jiri Moskovcak - 2.0.4-981-2 -- added abrt-retrace-client as a dependency - -* Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.981-1 -- updated translation -- don't allow to skip the analyze step -- don't send ~ backups -- added hint to report only in English -- renamed abrt-action-kerneloops -> reporter-kerneloops -- explain option bugtracker and logger -- gui added padding to main window -- better message when gdb time outs -- added support for catching vmcores -- added version to Logger output -- [RFE] abrt should have an easy way to include smolt-profile -- Resolves: #694828 #694833 #704958 #735071 #731189 #739182 #704452 #734037 #606123 #631822 - -* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 -- minor spec file fix - -* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-4 -- fixed sigsegv in a-a-save-package-data rhbz#737961 -- fixed privs for /var/run/abrt rhbz#725974 -- fixed segv in free space check -- Resolves: #737961 #725974 - -* Tue Aug 30 2011 Jiri Moskovcak - 2.0.4-3 -- fixed abrt1-abrt2 update - -* Fri Aug 19 2011 Jiri Moskovcak - 2.0.4-2 -- enable bugzilla for kerneloops rhbz#725970 -- Resolves: #725970 - -* Thu Jul 21 2011 Jiri Moskovcak - 2.0.4-1 -- new upstream version -- resolves wrong provs/obsolete rhbz#723376 -- split main UI into two panes -- debuginfo-install script asks before downloading -- Resolves: #723376 - -* Mon Jun 20 2011 Jiri Moskovcak - 2.0.3-1 -- new upstream release - -* Fri May 20 2011 Jiri Moskovcak - 2.0.2-6 -- make abrt-ccpp and abrt-oops start on boot - -* Fri May 13 2011 Karel Klíč - 2.0.2-5 -- Do not force service startup in %%posttrans, as it breaks live media - creation (rhbz#704415) - -* Sun May 08 2011 Jiri Moskovcak 2.0.2-4 -- fixed prgname, fixes problem where Gnome3 shows lowres icons instead - nice highres ones - -* Fri May 06 2011 Christopher Aillon - 2.0.2-3 -- Update icon cache scriptlet per packaging guidelines - -* Fri May 06 2011 Jiri Moskovcak 2.0.2-2 -- flush messages in retrace client - -* Thu May 05 2011 Jiri Moskovcak 2.0.2-1 -- updated translation -- new icons (thanks to Lapo Calamandrei) -- changed address of retrace01 to retrace -- fixed problem with not trusted ssl certificate #695977 -- #692713 Dialogue Box Buttons Wrong Way Around -- #695452 abrt crashing when trying to generate backtrace -- #698458 RFE: report separators between reports in abrt.log -- #699098 999 futile attempts to delete excess debuginfo -- #691881 GUI doesn't sort by last occurrence by default, and doesn't remember that sort order if you set it and restart the app -- #698418 Can't access '/var/spool/abrt/ccpp-2011-04-18-11:53:22-2661': Permission denied -- #698934 abrt-applet segfault on abrtd restart -- #695450 Retrace client - show meaningful message on failure -- #616407 RFE: Change abrt to catch TRAP signal crashes -- #584352 running service abrtd a non-root user doesn't show error -- retrace client: fail on servers with problematic SSL certificates (kklic@redhat.com) -- retrace-client: Load system-wide certificates. Move NSS init/shutdown to main, as it shouldn't be run multiple times. (kklic@redhat.com) -- abrt-cli: update manpage. Closes #243 (dvlasenk@redhat.com) -- move abrt-handle-crashdump to abrt-cli package. No code changes (dvlasenk@redhat.com) -- add abrt-action-print manpage. Closes #238 (dvlasenk@redhat.com) -- add abrt-action-trim-files manpage. Closes #241 (dvlasenk@redhat.com) -- added abrt-action-generate-backtrace manpage (dvlasenk@redhat.com) -- add abrt-action-analyze-backtrace manpage. Closes #227 (dvlasenk@redhat.com) -- retrace server: do not create zombie workers (mtoman@redhat.com) -- btparser: Remove top frame with address 0x0000 (jump to NULL) during normalization to avoid incorrect backtrace ratings (rhbz#639049) (kklic@redhat.com) -- abrt-gui: better list refreshing. Closes #251 (dvlasenk@redhat.com) -- fix for spurious "Lock file 'DIR/.lock' is locked by process PID" message (dvlasenk@redhat.com) -- Asciidoc manpage support; abrt-action-mailx manpage (kklic@redhat.com) -- list-dsos: don't list the same library multiple times (jmoskovc@redhat.com) -- call abrt-action-trim-files from abrt-action-install-debuginfo (dvlasenk@redhat.com) -- list-dsos: added package install time trac#123 (jmoskovc@redhat.com) -- retrace client: handle messages in HTTP body (mtoman@redhat.com) -- retrace server: remove chroot on failure (mtoman@redhat.com) -- spec: use versioned deps on libreport (jmoskovc@redhat.com) -- generate abrt version from git (npajkovs@redhat.com) -- abrt-action-trim-files needs to be suided rhbz#699098 (jmoskovc@redhat.com) -- gui: suppress printing dumpdir access errors (bz#698418) (mlichvar@redhat.com) -- Do not leave dump dir locked by abrt-action-generate-backtrace. (kklic@redhat.com) -- wizard: expand explanatory text on 1st screen. Closes 201 (dvlasenk@redhat.com) -- gui: fixed the OK and CANCEL buttons order in event config dialog (jmoskovc@redhat.com) -- Make abrt-action-list-dsos.py take -m maps -o dsos params; and abrt-action-analyze-core.py to take -o build_ids param (dvlasenk@redhat.com) -- abrt-action-install-debuginfo.py: don't die on some Yum exceptions. closes bz#681281 (dvlasenk@redhat.com) - -* Thu Apr 21 2011 Jiri Moskovcak 2.0.1-2 -- don't allow reporting of backtrace with rating = 0 rhbz#672023 -- use versioned deps on libreport - -* Wed Apr 20 2011 Jiri Moskovcak 2.0.1-1 -- updated to 2.0.1 -- updated translation -- allowed reporting oops to bugzilla -- added warning when the plugin settings are wrong -- added help text in plugins settings -- the plugin settings dialog is translatable -- improved dir rescanning logic in abrt-gui -- fixed icons for child dialogs -- retrace-client: human readable messages instead of http codes -- save envirnment variables when app crashes -- fixed gpg/pgp check -- revert to the old icon - -* Fri Apr 15 2011 Jiri Moskovcak 2.0.0-5 -- fixed problem with abrt-action-debuginfo-install rhbz#692064 - -* Thu Mar 31 2011 Jiri Moskovcak 2.0.0-4 -- fixed prgname in wizard rhbz#692442 - -* Wed Mar 30 2011 Jiri Moskovcak 2.0.0-3 -- fixed notification persistence in gnome3 (again) -- fixed wrong group:user on /var/cache/abrt-di afte rupdate from abrt 1.x #692064 -- added mono-core to blacklist - -* Tue Mar 29 2011 Jiri Moskovcak 2.0.0-2 -- use %%ghost on files in /var/run and /var/lock rhbz#656542 -- fixed notification persistence in gnome3 -- added analyze selector to CLI -- refuse reporting to bz without backtrace or hash -- use g_set_prgname to set the prgname of abrt-gui trac#180 - -* Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 -- update to the latest upstream version -- many improvements -- FIXME: add closed bugzillas - -* Fri Feb 18 2011 Jiri Moskovcak 1.1.17-2 -- removed gnome-python2-vfs dependency - -* Mon Feb 07 2011 Fedora Release Engineering - 1.1.17-1.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sat Feb 05 2011 Jiri Moskovcak 1.1.17-1 -- rewritten abrt-debuginfo-install script to use the yum API -- GUI: added search box to backtrace view rhbz#612017 (jmoskovc@redhat.com) -- fixed some gui warnings rhbz#671488 (jmoskovc@redhat.com) -- btparser/dupechecker improvements: - - Better handling of glibc architecture-specific functions (kklic@redhat.com) - - support format of thread header: "Thread 8 (LWP 6357):" (kklic@redhat.com) - -* Fri Feb 04 2011 Jiri Moskovcak 1.1.16-1 -- rhtsupport: added list of attachments to comment rhbz#668875 -- rhtsupport: stop consuming non-standard header rhbz#670492 -- Resolves: #670492, #668875 - -* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-2 -- add a gui/uid to useradd/groupadd command (reserved in setup rhbz#670231) -- Resolves: #650975 - -* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-1 -- removed unused files (jmoskovc@redhat.com) -- update po files (jmoskovc@redhat.com) -- removed some unused files (jmoskovc@redhat.com) -- pass old pattern to ccpp hook and use it (dvlasenk@redhat.com) -- GUI: added warning when gnome-keyring can't be accessed rhbz#576866 (jmoskovc@redhat.com) -- 666893 - Unable to make sense of XML-RPC response from server (npajkovs@redhat.com) -- PyHook: ignore SystemExit exception rhbz#636913 (jmoskovc@redhat.com) -- 665405 - ABRT's usage of sos does not grab /var/log/messages (npajkovs@redhat.com) -- add a note in report if kernel is tainted (npajkovs@redhat.com) -- KerneloopsScanner.cpp: make a room for NULL byte (npajkovs@redhat.com) -- fix multicharacter warring (npajkovs@redhat.com) -- open help page instead of about rhbz#666267 - -* Wed Jan 19 2011 Jiri Moskovcak 1.1.14-3 -- fixed build with rpm 4.9 (thx panu pmatilai for the patch) - -* Wed Jan 19 2011 Matthias Clasen 1.1.14-2 -- Rebuild against new rpm - -* Wed Nov 17 2010 Jiri Moskovcak 1.1.14-1 -- made howto mandatory -- fixed segv in abrt-hook-ccpp rhbz#652338 -- added warning if kernel was tainted -- make the "install debuginfo" hint selectable rhbz#644343 -- wrap howto and comments rhbz#625237 -- wrap lines in the backtrace window rhbz#625232 -- changed '*' to '•' rhbz#625236 -- make the bt viewer not-editable rhbz#621871 -- removed unneeded patches - -* Wed Nov 10 2010 Jiri Moskovcak 1.1.13-3 -- Rebuild for libnotify-0.7 - -* Wed Aug 25 2010 Jochen Schmitt 1.1.13-2 -- Rebuild for python-2.7 - -* Tue Aug 10 2010 Jiri Moskovcak 1.1.13-1 -- updated translation -- added native systemd file rhbz#617316 (jmoskovc@redhat.com) -- added ar to LINGUAS (jmoskovc@redhat.com) -- made /etc/abrt/plugins/Bugzilla.conf world-readable again (jmoskovc@redhat.com) -- l10n: adding fa locale (lashar@fedoraproject.org) -- l10n: new Persian (lashar@fedoraproject.org) -- remove libzip code (npajkovs@redhat.com) -- add libxml-2.0 into configure (npajkovs@redhat.com) -- fixed typo in man page rhbz#610748 (jmoskovc@redhat.com) -- RHTSupport: GUI's SSLVerify checkbox had one missing bit of code (vda.linux@googlemail.com) -- abrt_curl: discard headers from HTTP redirection (vda.linux@googlemail.com) -- moved abrt.socket and abrtd.lock into /var/run/abrt making selinux happy (jmoskovc@redhat.com) -- Mention --info and --backtrace in the abrt-cli man page. (kklic@redhat.com) -- build fixes for gcc 4.5 (jmoskovc@redhat.com) -- abrt-hook-ccpp: small fixes prompted by testing on RHEL5 (vda.linux@googlemail.com) -- Added --info action to abrt-cli (mtoman@redhat.com) -- wire up SSLVerify in RHTSupport.conf to actually have the desired effect (vda.linux@googlemail.com) -- fixed tooltip localization rhbz#574693 (jmoskovc@redhat.com) -- dumpoops/KerneloopsScanner: add pid to crashdump name (vda.linux@googlemail.com) -- A message change suggested by dhensley (kklic@redhat.com) - -* Tue Jul 27 2010 David Malcolm - 1.1.10-4 -- rebuild - -* Tue Jul 27 2010 Jiri Moskovcak 1.1.10-3 -- blacklist /usr/bin/nspluginviewer - -* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-2 -- minor build fixes - -* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-1 -- blacklisted mono-core package -- die with an error message if the database plugin is not accessible when needed (kklic@redhat.com) -- change RHTSupport URL protocol from HTTP to HTTPS (dvlasenk@redhat.com) -- the Logger plugin returns a message as the result of Report() call instead of a file URL (kklic@redhat.com) -- Cut off prelink suffixes from executable name if any (mtoman@redhat.com) -- CCpp: abrt-debuginfo-install output lines can be long, accomodate them (dvlasenk@redhat.com) -- do not pop up message on crash if the same crash is the same (dvlasenk@redhat.com) -- fedora bugs do not depend on rhel bugs (npajkovs@redhat.com) -- GUI: fixed problem with no gkeyring and just one reporter enabled rhbz#612457 (jmoskovc@redhat.com) -- added a document about interpreted language integration (kklic@redhat.com) -- moved devel header files to inc/ and included them in -devel package (jmoskovc@redhat.com, npajkovs@redhat.com) -- renamed abrt-utils.pc to abrt.pc (jmoskovc@redhat.com) -- string updates based on a UI text review (kklic@redhat.com) -- rhtsupport obsoletes the old rh plugins (jmoskovc@redhat.com) -- list allowed items in RHTSupport.conf (kklic@redhat.com) -- GUI: fixed package name in warning message when the packge is kernel rhbz#612191 (jmoskovc@redhat.com) -- remove rating for python crashes (jmoskovc@redhat.com) -- CCpp: give zero rating to an empty backtrace (jmoskovc@redhat.com) -- GUI: allow sending crashes without rating (jmoskovc@redhat.com) -- RHTSupport: set default URL to api.access.redhat.com/rs (dvlasenk@redhat.com) -- abort initialization on abrt.conf parsing errors (dvlasenk@redhat.com) -- changing NoSSLVerify to SSLVerify in bugzilla plugin (mtoman@redhat.com) -- added rating to python crashes -- show hostname in cli (kklic@redhat.com) -- updated po files (jmoskovc@redhat.com) -- added support for package specific actions rhbz#606917 (jmoskovc@redhat.com) -- renamed TicketUploader to ReportUploader (jmoskovc@redhat.com) -- bad hostnames on remote crashes (npajkovs@redhat.com) -- unlimited MaxCrashReportsSize (npajkovs@redhat.com) -- abrt_rh_support: improve error messages rhbz#608698 (vda.linux@googlemail.com) -- Added BacktraceRemotes option. (kklic@redhat.com) -- Allow remote crashes to not to belong to a package. Skip GPG check on remote crashes. (kklic@redhat.com) -- remove obsolete Catcut and rhfastcheck reporters (vda.linux@googlemail.com) -- make rhel bug point to correct place rhbz#578397 (npajkovs@redhat.com) -- Show comment and how to reproduce fields when reporing crashes in abrt-cli (kklic@redhat.com) -- Bash completion update (kklic@redhat.com) -- Rename --get-list to --list (kklic@redhat.com) -- Update man page (kklic@redhat.com) -- Options overhaul (kklic@redhat.com) -- abrt should not point to Fedora bugs but create new RHEL bug instead (npajkovs@redhat.com) -- Don't show global uuid in report (npajkovs@redhat.com) -- GUI: don't try to use action plugins as reporters (jmoskovc@redhat.com) -- Added WatchCrashdumpArchiveDir directive to abrt.conf and related code (vda.linux@googlemail.com) -- GUI: don't show the placehondler icon rhbz#605693 (jmoskovc@redhat.com) -- Make "Loaded foo.conf" message less confusing (vda.linux@googlemail.com) -- Fixed a flaw in strbuf_prepend_str (kklic@redhat.com) -- TicketUploader: do not add '\n' to text files in crashdump (vda.linux@googlemail.com) -- GUI: skip the plugin selection, if it's not needed (jmoskovc@redhat.com) -- Check conf file for syntax errors (kklic@redhat.com) -- move misplaced sanity checks in cron parser (vda.linux@googlemail.com) -- GUI: don't require the rating for all reporters (jmoskovc@redhat.com) -- GUI: fixed exception when there is no configure dialog for plugin rhbz#603745 (jmoskovc@redhat.com) -- Add a GUI config dialog for RHTSupport plugin (vda.linux@googlemail.com) -- abrt_curl: fix a problem with incorrect content-length on 32-bit arches (vda.linux@googlemail.com) -- sosreport: save the dump directly to crashdump directory (vda.linux@googlemail.com) -- plugin rename: rhticket -> RHTSupport (vda.linux@googlemail.com) -- Daemon socket for reporting crashes (karel@localhost.localdomain) -- GUI: fixed few typos (jmoskovc@redhat.com) - -* Wed Jul 21 2010 David Malcolm - 1.1.5-1.1 -- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild - -* Wed Jun 09 2010 Jiri Moskovcak 1.1.5-1 -- GUI: polished the reporter assistant (jmoskovc@redhat.com) -- Logger reporter: do not store useless info (vda.linux@googlemail.com) -- ccpp hook: add SaveBinaryImage option which saves of the crashed binary (vda.linux@googlemail.com) -- SPEC: added CFLAGS="-fno-strict-aliasing" to fix the rpmdiff warnings rhbz#599364 (jmoskovc@redhat.com) -- GUI: don't remove user comments when re-reporting the bug rhbz#601779 (jmoskovc@redhat.com) -- remove "(deleted)" from executable path rhbz#593037 (jmoskovc@redhat.com) -- CCpp analyzer: add 60 sec cap on gdb run time. (vda.linux@googlemail.com) -- add new file *hostname* into debugdump directory (npajkovs@redhat.com) -- rhticket: upload real tarball, not a bogus file (vda.linux@googlemail.com) -- abrt-hook-ccpp: eliminate race between process exit and compat coredump creation rhbz#584554 (vda.linux@googlemail.com) -- rhticket: actually do create ticket, using Gavin's lib code (vda.linux@googlemail.com) -- properly obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) -- GUI: remember comment and howto on backtrace refresh rhbz#545690 (jmoskovc@redhat.com) -- use header case in button label rhbz#565812 (jmoskovc@redhat.com) -- make log window resizable (vda.linux@googlemail.com) -- rename a few remaining /var/cache/abrt -> /var/spool/abrt (vda.linux@googlemail.com) - -* Wed May 26 2010 Jiri Moskovcak 1.1.4-1 -- added reporting wizard -- fixed few leaked fds -- fixed kerneloops --- cut here --- problem -- updated translations - -* Fri May 21 2010 Denys Vlasenko 1.1.3-1 -- More fixes for /var/cache/abrt -> /var/spool/abrt conversion - -* Fri May 21 2010 Jiri Moskovcak 1.1.2-3 -- fixed spec file to create /var/spool/abrt rhbz#593670 -- updated init script to reflect the pid file renaming - -* Wed May 19 2010 Jiri Moskovcak 1.1.2-1 -- updated translation -- obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) -- Report "INFO: possible recursive locking detected rhbz#582378 (vda.linux@googlemail.com) -- kill yumdownloader if abrt-debuginfo-install is terminated mid-flight (vda.linux@googlemail.com) -- do not create Python dumps if argv[0] is not absolute (vda.linux@googlemail.com) -- improve kerneloops hash (vda.linux@googlemail.com) -- Move /var/cache/abrt to /var/spool/abrt. rhbz#568101. (vda.linux@googlemail.com) -- bugzilla: better summary and decription messages (npajkovs@redhat.com) -- renamed daemon pid and lock file rhbz#588315 (jmoskovc@redhat.com) -- Daemon socket for reporting crashes (kklic@redhat.com) -- Move hooklib from src/Hooks to lib/Utils (kklic@redhat.com) - -* Thu May 13 2010 Jiri Moskovcak 1.1.1-1 -- updated translations -- removed avant-window-navigator from blacklist (jmoskovc@redhat.com) -- Abort debuginfo download if low on disk space (partially addresses #564451) (vda.linux@googlemail.com) -- fix bug 588945 - sparse core files performance hit (vda.linux@googlemail.com) -- Add BlackListedPaths option to abrt.conf. Fixes #582421 (vda.linux@googlemail.com) -- Do not die when /var/cache/abrt/*/uid does not contain a number (rhbz#580899) (kklic@redhat.com) -- rid of rewriting config in /etc/abrt/abrt.conf (npajkovs@redhat.com) -- fix bug 571411: backtrace attachment of the form /var/cache/abrt/foo-12345-67890/backtrace (vda.linux@googlemail.com) -- Do not echo password to terminal in abrt-cli (kklic@redhat.com) -- improved daemon error messages (kklic@redhat.com) - -* Mon May 03 2010 Jiri Moskovcak 1.1.0-1 -- updated transaltions -- added Hebrew into languages -- updated icons rhbz#587698 (jmoskovc@redhat.com) -- Bugzilla login/password emptiness check uses 'or' instead of 'and' (kklic@redhat.com) -- Show error message when abrtd service is run as non-root. rhbz#584352 (kklic@redhat.com) -- Rename EnableOpenGPG to OpenGPGCheck in the man page rhbz#584332 (kklic@redhat.com) -- Document ProcessUnpackaged in abrt.conf.5. Document default values. (kklic@redhat.com) -- Crash function is now detected even for threads without an abort frame (kklic@redhat.com) -- comment can be private (npajkovs@redhat.com) -- do not catch perl/python crashes when the script is not of known package origin (kklic@redhat.com) -- kerneloop is more informative when failed (npajkovs@redhat.com) -- add function name into summary(if it's found) (npajkovs@redhat.com) -- Change kerneloops message when it fails (npajkovs@redhat.com) - -* Fri Apr 30 2010 Karel Klic 1.0.9-3 -- fixed crash function detection (a part of duplication detection) - -* Wed Apr 14 2010 Jiri Moskovcak 1.0.9-2 -- fixed problem with localized yum messages rhbz#581804 -- better bugzilla summary (napjkovs@redhat.com) -- ignore interpreter (py,perl) crashes caused by unpackaged scripts (kklic@redhat.com) - -* Tue Apr 06 2010 Jiri Moskovcak 1.0.9-1 -- hooklib: fix excessive rounding down in free space calculation (bz#575644) (vda.linux@googlemail.com) -- gui: fix 551989 "crash detected in abrt-gui-1.0.0-1.fc12" and such (vda.linux@googlemail.com) -- trivial: fix 566806 "abrt-gui sometimes can't be closed" (vda.linux@googlemail.com) -- gui: fix the last case where gnome-keyring's find_items_sync() may throw DeniedError (vda.linux@googlemail.com) -- fixed some compilation problems on F13 (jmoskovc@redhat.com) -- updated translations (jmoskovc@redhat.com) -- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) - -* Wed Mar 31 2010 Jiri Moskovcak 1.0.9-0.201003312045.1 -- test day build -- updated translation -- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) -- GUI: total rewrite based on design from Mairin Duffy (jmoskovc@redhat.com) -- trivial: better HTTP/curl error reporting (vda.linux@googlemail.com) -- Use backtrace parser from abrtutils, new backtrace rating algorithm, store crash function if it's known (kklic@redhat.com) -- abrt-rate-backtrace is replaced by abrt-backtrace --rate (kklic@redhat.com) -- Ignore some temp files (kklic@redhat.com) -- PYHOOK: don't use sitecustomize.py rhbz#539497 (jmoskovc@redhat.com) -- rhfastcheck: a new reporter plugin based on Gavin's work (vda.linux@googlemail.com) -- rhticket: new reporter plugin (vda.linux@googlemail.com) -- GUI: fixed few window icons (jmoskovc@redhat.com) -- Allow user to select which reporter he wants to use to report a crash using CLI.(kklic@redhat.com) -- bz reporter: s/uuid/duphash; more understandable message; simplify result str generation; fix indentation (vda.linux@googlemail.com) -- GUI: fixed crash count column sorting rhbz#573139 (jmoskovc@redhat.com) -- Kerneloops: use 1st line of oops as REASON. Closes rhbz#574196. (vda.linux@googlemail.com) -- Kerneloops: fix a case when we file an oops w/o backtrace (vda.linux@googlemail.com) -- minor fix in abrt-debuginfo-install to make it work with yum >= 3.2.26 (jmoskovc@redhat.com) -- GUI: added action to applet to directly report last crash (jmoskovc@redhat.com) -- Never flag backtrace as binary file (fixes problem observed in bz#571411) (vda.linux@googlemail.com) -- improve syslog file detection. closes bz#565983 (vda.linux@googlemail.com) -- add arch, package and release in comment (npajkovs@redhat.com) -- add ProcessUnpackaged option to abrt.conf (vda.linux@googlemail.com) -- abrt-debuginfo-install: use -debuginfo repos which match enabled "usual" repos (vda.linux@googlemail.com) -- fix format security error (fcrozat@mandriva.com) -- icons repackaging (jmoskovc@redhat.com) -- partial fix for bz#565983 (vda.linux@googlemail.com) -- SPEC: Updated source URL (jmoskovc@redhat.com) -- removed unneeded patches -- and much more ... - -* Sat Mar 13 2010 Jiri Moskovcak 1.0.8-3 -- fixed kerneloops reporting rhbz#570081 -- fixed Source url -- fixed debuginfo-install to work on F13 - - improved debuginfo-install (vda.linux@googlemail.com) - - fix debuginfo-install to work with yum >= 3.2.26 (jmoskovc@redhat.com) - -* Wed Mar 3 2010 Denys Vlasenko 1.0.8-2 -- fix initscript even more (npajkovs@redhat.com) -- remove -R2 from yum command line - -* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-1 -- fix initscript (npajkovs@redhat.com) -- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) - -* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-0.git-20100222 -- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) -- make abrt work with the latest kernels (>= 2.6.33) (jmoskovc@redhat.com) -- lib/Utils/abrt_dbus: utf8-sanitize all strings in dbus messages (fixes #565876) (vda.linux@googlemail.com) - -* Fri Feb 12 2010 Jiri Moskovcak 1.0.7-1 -- enabled column sorting rhbz#541853 -- Load plugin settings also from ~/.abrt/*.conf (kklic@redhat.com) -- fix bz#541088 "abrt should not catch python excp EPIPE" (vda.linux@googlemail.com) -- fix bz#554242 "Cannot tab between input areas in report dialog" (vda.linux@googlemail.com) -- fix bz#563484 "abrt uses unnecessary disk space when getting debug info" (vda.linux@googlemail.com) -- Don't show empty 'Not loaded plugins' section - fix#2 rhbz#560971 (jmoskovc@redhat.com) -- fix big-endian build problem (vda.linux@googlemail.com) -- Fixes, displays package owners (kklic@redhat.com) -- GUI: fixed exception in plugin settings dialog rhbz#560851 (jmoskovc@redhat.com) -- GUI: respect system settings for toolbars rhbz#552161 (jmoskovc@redhat.com) -- python hook: move UUID generation to abrtd; generate REASON, add it to bz title (vda.linux@googlemail.com) -- make "reason" field less verbose; bz reporter: include it in "summary" (vda.linux@googlemail.com) -- added avant-window-navigator to blacklist per maintainer request (jmoskovc@redhat.com) -- CCpp analyzer: fix rhbz#552435 (bt rating misinterpreting # chars) (vda.linux@googlemail.com) -- Ask for login and password if missing from reporter plugin. (kklic@redhat.com) -- abrtd: fix handling of dupes (weren't deleting dup's directory); better logging (vda.linux@googlemail.com) -- abrtd: handle "perl -w /usr/bin/script" too (vda.linux@googlemail.com) -- Component-wise duplicates (kklic@redhat.com) -- abrtd: fix rhbz#560642 - don't die on bad plugin names (vda.linux@googlemail.com) -- Fixed parsing backtrace from rhbz#549293 (kklic@redhat.com) -- GUI: fixed scrolling in reporter dialog rhbz#559687 (jmoskovc@redhat.com) -- fixed button order in plugins windows rhbz#560961 (jmoskovc@redhat.com) -- GUI: fixed windows icons and titles rhbz#537240, rhbz#560964 (jmoskovc@redhat.com) -- Fix to successfully parse a backtrace from rhbz#550642 (kklic@redhat.com) -- cli: fix the problem of not showing oops text in editor (vda.linux@googlemail.com) -- GUI: fix rhbz#560971 "Don't show empty 'Not loaded plugins' section" (vda.linux@googlemail.com) - -* Tue Feb 2 2010 Jiri Moskovcak 1.0.6-1 -- print __glib_assert_msg (rhbz#549735); -- SPEC: added some requires to abrt-cli to make it work out-of-the-box (jmoskovc@redhat.com) -- abrt-hook-ccpp: fix rhbz#560612 "limit '18446744073709551615' is bogus" rhbz#560612(vda.linux@googlemail.com) -- APPLET: don't show the icon when abrtd is not running rhbz#557866 (jmoskovc@redhat.com) -- GUI: made report message labels wrap (jmoskovc@redhat.com) -- GUI: don't die if daemon doesn't send the gpg keys (jmoskovc@redhat.com) -- disabled the autoreporting of kerneloopses (jmoskovc@redhat.com) -- Kerneloops: fix BZ reporting of oopses (vda.linux@googlemail.com) -- GUI: wider report message dialog (jmoskovc@redhat.com) -- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) -- Logger: create log file with mode 0600 (vda.linux@googlemail.com) -- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) -- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) -- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) - -* Fri Jan 29 2010 Jiri Moskovcak 1.0.5-1 -- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) -- Logger: create log file with mode 0600 rhbz#559545 (vda.linux@googlemail.com) -- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) -- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) -- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) -- fix bug 559881 (kerneloops not shown in "new" GUI) (vda.linux@googlemail.com) -- GUI ReporterDialog: hide log button (vda.linux@googlemail.com) -- added valgrind and strace to blacklist (jmoskovc@redhat.com) -- SOSreport: do not leave stray files in /tmp (vda.linux@googlemail.com) -- Save the core where it belongs if ulimit -c is > 0 (jmoskovc@redhat.com) -- reenabled gpg check (jmoskovc@redhat.com) -- SOSreport: run it niced (vda.linux@googlemail.com) -- report GUI: rename buttons: Log -> Show log, Send -> Send report (vda.linux@googlemail.com) -- applet: reduce blinking timeout to 3 sec (vda.linux@googlemail.com) -- fix dbus autostart (vda.linux@googlemail.com) -- abrtd: set "Reported" status only if at least one reporter succeeded (vda.linux@googlemail.com) -- SQLite3: disable newline escaping, SQLite does not handle it (vda.linux@googlemail.com) -- SOSreport: make it avoid double runs; add forced regeneration; upd PLUGINS-HOWTO (vda.linux@googlemail.com) -- attribute SEGVs in perl to script's package, like we already do for python (vda.linux@googlemail.com) - -* Wed Jan 20 2010 Jiri Moskovcak 1.0.4-1 -- enabled sosreport -- fixes in ticketuploader -- GUI: redesign of reporter dialog (jmoskovc@redhat.com) -- Set the prgname to "Automatic Bug Reporting Tool" fixes rhbz#550357 (jmoskovc@redhat.com) -- CCpp analyzer: display __abort_msg in backtrace. closes rhbz#549735 (vda.linux@googlemail.com) -- s/os.exit/sys.exit - closes rhbz#556313 (vda.linux@googlemail.com) -- use repr() to print variable values in python hook rhbz#545070 (jmoskovc@redhat.com) -- gui: add logging infrastructure (vda.linux@googlemail.com) -- Added "Enabled = yes" to all plugin's config files (jmoskovc@redhat.com) -- *: disable plugin loading/unloading through GUI. Document keyring a bit (vda.linux@googlemail.com) -- fix memory leaks in catcut plugin (npajkovs@redhat.com) -- fix memory leaks in bugzilla (npajkovs@redhat.com) -- abrt-hook-python: sanitize input more; log to syslog (vda.linux@googlemail.com) -- Fixed /var/cache/abrt/ permissions (kklic@redhat.com) -- Kerneloops: we require commandline for every crash, save dummy one for oopses (vda.linux@googlemail.com) -- *: remove nss dependencies (vda.linux@googlemail.com) -- CCpp: use our own sha1 implementation (less pain with nss libs) (vda.linux@googlemail.com) -- DebugDump: more consistent logic in setting mode and uid:gid on dump dir (vda.linux@googlemail.com) -- fixes based on security review (vda.linux@googlemail.com) -- SOSreport/TicketUploader: use more restrictive file modes (vda.linux@googlemail.com) -- abrt-hook-python: add input sanitization and directory size guard (vda.linux@googlemail.com) -- RunApp: safer chdir. Overhauled "sparn a child and get its output" in general (vda.linux@googlemail.com) -- DebugDump: use more restrictive modes (vda.linux@googlemail.com) -- SQLite3: check for SQL injection (vda.linux@googlemail.com) -- replace plugin enabling via EnabledPlugins by par-plugin Enabled = yes/no (vda.linux@googlemail.com) -- abrt.spec: move "requires: gdb" to abrt-desktop (vda.linux@googlemail.com) -- ccpp: add a possibility to disable backtrace generation (vda.linux@googlemail.com) -- abrtd: limit the number of frames in backtrace to 3000 (vda.linux@googlemail.com) - -* Tue Jan 5 2010 Jiri Moskovcak 1.0.3-1 -- speed optimalization of abrt-debuginfo-install (jmoskovc@redhat.com) -- updated credits (jmoskovc@redhat.com) -- GUI: fixed crash when abrt-gui is run without X server rhbz#552039 (jmoskovc@redhat.com) -- abrt-backtrace manpage installed (kklic@redhat.com) -- cmdline and daemon checking is done by abrt-python-hook (kklic@redhat.com) -- moved get_cmdline() and daemon_is_ok() to abrtlib (kklic@redhat.com) -- large file support for whole abrt (kklic@redhat.com) -- made s_signal_caught volatile (vda.linux@googlemail.com) -- abrt-debuginfo-install: fixes for runs w/o cachedir (vda.linux@googlemail.com) -- remove unsafe log() from signal handler (vda.linux@googlemail.com) -- src/Hooks/CCpp.cpp: use and honour 'c' (core limit size). (vda.linux@googlemail.com) -- lib/Plugins/CCpp.cpp: save gdb error messages too (vda.linux@googlemail.com) -- prevent destructors from throwing exceptions; check curl_easy_init errors (vda.linux@googlemail.com) -- don't blame python for every crash in /usr/bin/python rhbz#533521 trac#109 (jmoskovc@redhat.com) -- GUI: autoscroll log window (jmoskovc@redhat.com) -- Kerneloops.conf: better comments (vda.linux@googlemail.com) -- applet: reduce blinking time to 30 seconds (vda.linux@googlemail.com) -- add paranoia checks on setuid/setgid (vda.linux@googlemail.com) -- more "obviously correct" code for secure opening of /dev/null (vda.linux@googlemail.com) -- get rid of ugly sleep call inside while() (vda.linux@googlemail.com) - -* Mon Dec 14 2009 Jiri Moskovcak 1.0.2-1 -- disabled GPG check again (jmoskovc@redhat.com) -- abrt-pyhook-helper rename (vda.linux@googlemail.com) -- abrt-cli: report success/failure of reporting. closes bug 71 (vda.linux@googlemail.com) -- less logging (vda.linux@googlemail.com) -- mkde abrt-gui --help and --version behave as expected. closes bug 85 (vda.linux@googlemail.com) -- dbus lib: fix parsing of 0-element arrays. Fixes bug 95 (vda.linux@googlemail.com) -- make "abrt-cli --delete randomuuid" report that deletion failed. closes bug 59 (vda.linux@googlemail.com) -- applet: make animation stop after 1 minute. (closes bug 108) (vda.linux@googlemail.com) -- show comment and how to reproduce fields, when BT rating > 3 (jmoskovc@redhat.com) -- Gui: make report status window's text wrap. Fixes bug 82 (vda.linux@googlemail.com) -- CCpp analyzer: added "info sharedlib" (https://fedorahosted.org/abrt/ticket/90) (vda.linux@googlemail.com) -- added link to bugzilla new account page to Bugzilla config dialog (jmoskovc@redhat.com) -- GUI: added log window (jmoskovc@redhat.com) - -* Tue Dec 8 2009 Jiri Moskovcak 1.0.1-1 -- PyHook: better logic for checking if abrtd is running rhbz#539987 (jmoskovc@redhat.com) -- re-enabled gpg sign checking (jmoskovc@redhat.com) -- PyHook: use repr() for displaying variables rhbz#545070 (jmoskovc@redhat.com) -- kerneloops: fix the linux kernel version identification (aarapov@redhat.com) -- gui review (rrakus@redhat.com) -- when we trim the dir, we must delete it from DB too rhbz#541854 (vda.linux@googlemail.com) -- improved dupe checking (kklic@redhat.com) -- GUI: handle cases when gui fails to start daemon on demand rhbz#543725 (jmoskovc@redhat.com) -- Add abrt group only if it is missing; fixes rhbz#543250 (kklic@redhat.com) -- GUI: more string fixes rhbz#543266 (jmoskovc@redhat.com) -- abrt.spec: straighten out relations between abrt-desktop and abrt-gui (vda.linux@googlemail.com) -- refuse to start if some required plugins are missing rhbz#518422 (vda.linux@googlemail.com) -- GUI: survive gnome-keyring access denial rhbz#543200 (jmoskovc@redhat.com) -- typo fixes rhbz#543266 (jmoskovc@redhat.com) -- abrt-debuginfo-install: better fix for incorrect passing double quotes (vda.linux@googlemail.com) -- APPLET: stop animation when it's not needed rhbz#542157 (jmoskovc@redhat.com) -- ccpp hook: reanme it, and add "crash storm protection" (see rhbz#542003) (vda.linux@googlemail.com) -- Hooks/CCpp.cpp: add MakeCompatCore = yes/no directive. Fixes rhbz#541707 (vda.linux@googlemail.com) -- SPEC: removed sqlite3 package, fixed some update problems (jmoskovc@redhat.com) -- Kerneloops are reported automaticky now when AutoReportUIDs = root is in Kerneloops.conf (npajkovs@redhat.com) -- remove word 'detected' from description rhbz#541459 (vda.linux@googlemail.com) -- src/Hooks/CCpp.cpp: do save abrtd's own coredumps, but carefully... (vda.linux@googlemail.com) -- CCpp.cpp: quote parameters if needed rhbz#540164 (vda.linux@googlemail.com) - -* Fri Nov 20 2009 Jiri Moskovcak 1.0.0-1 -- new version -- comment input wraps words rhbz#531276 -- fixed hiding password dialog rhbz#529583 -- easier kerneloops reporting rhbz#528395 -- made menu entry translatable rhbz#536878 (jmoskovc@redhat.com) -- GUI: don't read the g-k every time we want to use the setting (jmoskovc@redhat.com) -- GUI: survive if g-k access is denied rhbz#534171 (jmoskovc@redhat.com) -- include more info into oops (we were losing the stack dump) (vda.linux@googlemail.com) -- make BZ insert small text attachments inline; move text file detection code (vda.linux@googlemail.com) -- GUI: fixed text wrapping in comment field rhbz#531276 (jmoskovc@redhat.com) -- GUI: added cancel to send dialog rhbz#537238 (jmoskovc@redhat.com) -- include abrt version in bug descriptions (vda.linux@googlemail.com) -- ccpp hook: implemented ReadonlyLocalDebugInfoDirs directive (vda.linux@googlemail.com) -- GUI: added window icon rhbz#537240 (jmoskovc@redhat.com) -- add support for \" escaping in config file (vda.linux@googlemail.com) -- add experimental saving of /var/log/Xorg*.log for X crashes (vda.linux@googlemail.com) -- APPLET: changed icon from default gtk-warning to abrt specific, add animation (jmoskovc@redhat.com) -- don't show icon on abrtd start/stop rhbz#537630 (jmoskovc@redhat.com) -- /var/cache/abrt permissions 1775 -> 0775 in spec file (kklic@redhat.com) -- Daemon properly checks /var/cache/abrt attributes (kklic@redhat.com) -- abrt user group; used by abrt-pyhook-helper (kklic@redhat.com) -- pyhook-helper: uid taken from system instead of command line (kklic@redhat.com) -- KerneloopsSysLog: fix breakage in code which detects abrt marker (vda.linux@googlemail.com) -- GUI: added support for backtrace rating (jmoskovc@redhat.com) -- InformAllUsers support. enabled by default for Kerneloops. Tested wuth CCpp. (vda.linux@googlemail.com) -- abrtd: call res_init() if /etc/resolv.conf or friends were changed rhbz#533589 (vda.linux@googlemail.com) -- supress errors in python hook to not colide with the running script (jmoskovc@redhat.com) - -* Tue Nov 10 2009 Jiri Moskovcak 0.0.11-2 -- spec file fixes - -* Mon Nov 2 2009 Jiri Moskovcak 0.0.11-1 -- re-enabled kerneloops -- abrt-debuginfo-install: download packages one-by-one - better logging (vda.linux@googlemail.com) -- do not report empty fields (vda.linux@googlemail.com) -- Added abrt.png, fixed rhbz#531181 (jmoskovc@redhat.com) -- added option DebugInfoCacheMB to limit size of unpacked debuginfos (vda.linux@googlemail.com) -- fixed the problem with overwriting the default plugin settings (jmoskovc@redhat.com) -- disabled kerneloops in config file (jmoskovc@redhat.com) -- added dependency to gdb >= 7.0 (jmoskovc@redhat.com) -- better format of report text (vda.linux@googlemail.com) -- Python backtrace size limited to 1 MB (kklic@redhat.com) -- lib/Plugins/Bugzilla: better message at login failure (vda.linux@googlemail.com) -- build fixes, added plugin-logger to abrt-desktop (jmoskovc@redhat.com) -- blacklisted nspluginwrapper, because it causes too many useless reports (jmoskovc@redhat.com) -- GUI: Wrong settings window is not shown behind the reporter dialog rhbz#531119 (jmoskovc@redhat.com) -- Normal user can see kerneloops and report it Bugzilla memory leaks fix (npajkovs@redhat.com) -- dumpoops: add -s option to dump results to stdout (vda.linux@googlemail.com) -- removed kerneloops from abrt-desktop rhbz#528395 (jmoskovc@redhat.com) -- GUI: fixed exception when enabling plugin rhbz#530495 (jmoskovc@redhat.com) -- Improved abrt-cli (kklic@redhat.com) -- Added backtrace rating to CCpp analyzer (dnovotny@redhat.com) -- GUI improvements (jmoskovc@redhat.com) -- Added abrt-pyhook-helper (kklic@redhat.com) - -* Thu Oct 15 2009 Jiri Moskovcak 0.0.10-1 -- new version -- added more logging (vda.linux@googlemail.com) -- made polkit policy to be more permissive when installing debuginfo (jmoskovc@redhat.com) -- lib/Plugins/CCpp.cpp: add build-ids to backtrace (vda.linux@googlemail.com) -- lib/Plugins/CCpp.cpp: do not use temp file for gdb commands - use -ex CMD instead (vda.linux@googlemail.com) -- GUI: added refresh button, added sanity check to plugin settings (jmoskovc@redhat.com) -- Initial man page for abrt-cli (kklic@redhat.com) -- Added --version, -V, --help, -? options. Fixed crash caused by unknown option. (kklic@redhat.com) -- Date/time honors current system locale (kklic@redhat.com) -- fixed saving/reading user config (jmoskovc@redhat.com) -- SPEC: added gnome-python2-gnomekeyring to requirements (jmoskovc@redhat.com) -- GUI: call Report() with the latest pluginsettings (jmoskovc@redhat.com) -- Fix Bug 526220 - [abrt] crash detected in abrt-gui-0.0.9-2.fc12 (vda.linux@googlemail.com) -- removed unsecure reading/writting from ~HOME directory rhbz#522878 (jmoskovc@redhat.com) -- error checking added to archive creation (danny@rawhide.localdomain) -- try using pk-debuginfo-install before falling back to debuginfo-install (vda.linux@googlemail.com) -- abrt-gui: make "report" toolbar button work even if abrtd is not running (vda.linux@googlemail.com) -- set LIMIT_MESSAGE to 16k, typo fix and daemon now reads config information from dbus (npajkovs@redhat.com) -- add support for abrtd autostart (vda.linux@googlemail.com) -- GUI: reversed the dumplist, so the latest crashes are at the top (jmoskovc@redhat.com) -- rewrite FileTransfer to use library calls instead of commandline calls for compression (dnovotny@redhat.com) -- and many minor fixes .. - -* Wed Sep 23 2009 Jiri Moskovcak 0.0.9-2 -- added bug-buddy to provides rhbz#524934 - -* Tue Sep 22 2009 Jiri Moskovcak 0.0.9-1 -- new version -- comments and how to reproduce are stored now (npajkovs@redhat.com) -- reduce verbosity a bit (vda.linux@googlemail.com) -- GUI: fixed word wrap in Comment field rhbz#524349 (jmoskovc@redhat.com) -- remove last vestives of dbus-c++ from build system (vda.linux@googlemail.com) -- GUI: added popup menu, fixed behaviour when run with root privs (jmoskovc@redhat.com) -- add dbus signalization when quota exceeded (npajkovs@redhat.com) -- Added cleaning of attachment variable, so there should not be mixed attachmetn anymore. (zprikryl@redhat.com) -- fixed closing of debug dump in case of existing backtrace (zprikryl@redhat.com) -- remove C++ dbus glue in src/CLI; fix a bug in --report (vda.linux@googlemail.com) -- new polkit action for installing debuginfo, default "yes" (danny@rawhide.localdomain) -- Polkit moved to Utils (can be used both in daemon and plugins) (danny@rawhide.localdomain) -- oops... remove stray trailing '\' (vda.linux@googlemail.com) -- GUI: added missing tooltips (jmoskovc@redhat.com) -- PYHOOK: ignore KeyboardInterrupt exception (jmoskovc@redhat.com) -- added ticket uploader plugin (gavin@redhat.com) (zprikryl@redhat.com) -- GUI: added UI for global settings (just preview, not usable!) (jmoskovc@redhat.com) -- Add checker if bugzilla login and password are filled in. (npajkovs@redhat.com) -- Add new config option InstallDebuginfo into CCpp.conf (npajkovs@redhat.com) -- translation updates -- many other fixes - -* Fri Sep 4 2009 Jiri Moskovcak 0.0.8.5-1 -- new version -- APPLET: added about dialog, removed popup, if icon is not visible, fixed (trac#43) (jmoskovc@redhat.com) -- renamed abrt to abrtd, few minor spec file fixes (jmoskovc@redhat.com) -- Made abrt service start by deafult (jmoskovc@redhat.com) -- add gettext support for all plugins (npajkovs@redhat.com) -- APPLET: removed the warning bubble about not running abrt service (walters) -- APPLET: changed tooltip rhbz#520293 (jmoskovc@redhat.com) -- CommLayerServerDBus: rewrote to use dbus, not dbus-c++ (vda.linux@googlemail.com) -- fixed timeout on boot causing [ FAILED ] message (vda.linux@googlemail.com) -- and many other fixes - -* Wed Sep 02 2009 Colin Walters 0.0.8-2 -- Change Conflicts: kerneloops to be an Obsoletes so we do the right thing - on upgrades. Also add an Obsoletes: bug-buddy. - -* Wed Aug 26 2009 Jiri Moskovcak 0.0.8-1 -- new version -- resolved: Bug 518420 - ordinary user's abrt-applet shows up for root owned crashes (npajkovs) -- GUI: added support for gettext (+part of czech translation) (jmoskovc) -- added support for saving settings (zprikryl) -- fixed conf: comment in the middle of the line isn't supported anymore (zprikryl) -- BZ#518413 PATCH ... furious kerneloops reporting (aarapov) -- GUI: added first part of support for gettext (jmoskovc) -- add new parameter to FileTransfer plugin (dnovotny) -- added support for updating abrt's table (zprikryl) -- added check for cc-list and reporter. +1 is created iff reporter is somebody else and current user isn't in cc list. (zprikryl) -- GUI: few improvements, to be more userfriendly (jmoskovc) -- LOGGER: return valid uri of the log file on succes (jmoskovc) -- GUI: bring the GUI up to front instead of just blinking in taskbar (trac#60, rhbz#512390) (jmoskovc) -- Try to execute $bindir/abrt-gui, then fall back to $PATH search. Closes bug 65 (vda.linux) -- APPLET: added popup menu (trac#37, rhbz#518386) (jmoskovc) -- Improved report results (zprikryl) -- Fixed sigsegv (#rhbz 518609) (zprikryl) -- GUI: removed dependency on libsexy if gtk2 >= 2.17 (jmoskovc) -- fixed signature check (zprikryl) -- KerneloopsSysLog: check line length to be >= 4 before looking for "Abrt" (vda.linux) -- Comment cannot start in the middle of the line. Comment has to start by Char # (first char in the line) (zprikryl) -- command mailx isn't run under root anymore. (zprikryl) -- GUI: added horizontal scrolling to report window (jmoskovc) -- GUI: added clickable link to "after report" status window (jmoskovc) -- added default values for abrt daemon (zprikryl) -- Plugins/CCpp: remove trailing \n from debuginfo-install's output (vda.linux) -- explain EnableGPGCheck option better (vda.linux) -- mailx: correct English (vda.linux) -- Bugzilla.conf: correct English (vda.linux) -- GUI: nicer after report message (jmoskovc) -- BZ plugin: removed /xmlrpc.cgi from config, made the report message more user friendly (jmoskovc) -- CCpp plugin: do not abort if debuginfos aren't found (vda.linux) -- abrt.spec: bump version to 0.0.7-2 (vda.linux) -- mailx removed dangerous parameter option (zprikryl) -- minimum timeout is 1 second (zprikryl) -- in case of plugin error, don't delete debug dumps (zprikryl) -- abrt-gui: fix crash when run by root (vda.linux) -- and lot more in git log ... - -* Thu Aug 20 2009 Jiri Moskovcak 0.0.7.2-1 -- new version -- fixed some bugs found during test day - -* Wed Aug 19 2009 Jiri Moskovcak 0.0.7.1-1 -- fixes to bugzilla plugin and gui to make the report message more user-friendly - -* Tue Aug 18 2009 Denys Vlasenko 0.0.7-2 -- removed dangerous parameter option -- minimum plugin activation period is 1 second -- in case of plugin error, don't delete debug dumps -- abrt-gui: fix crash when run by root -- simplify parsing of debuginfo-install output - -* Tue Aug 18 2009 Jiri Moskovcak 0.0.7-1 -- new version -- added status window to show user some info after reporting a bug - -* Mon Aug 17 2009 Denys Vlasenko 0.0.6-1 -- new version -- many fixes - -* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Jun 25 2009 Jiri Moskovcak 0.0.4-3 -- fixed dependencies in spec file - -* Tue Jun 16 2009 Daniel Novotny 0.0.4-2 -- added manual pages (also for plugins) - -* Mon Jun 15 2009 Jiri Moskovcak 0.0.4-1 -- new version -- added cli (only supports sockets) -- added python hook -- many fixes - -* Fri Apr 10 2009 Jiri Moskovcak 0.0.3-1 -- new version -- added bz plugin -- minor fix in reporter gui -- Configurable max size of debugdump storage rhbz#490889 -- Wrap lines in report to keep the window sane sized -- Fixed gui for new daemon API -- removed unneeded code -- removed dependency on args -- new guuid hash creating -- fixed local UUID -- fixed debuginfo-install checks -- renamed MW library -- Added notification thru libnotify -- fixed parsing settings of action plugins -- added support for action plugins -- kerneloops - plugin: fail gracefully. -- Added commlayer to make dbus optional -- a lot of kerneloops fixes -- new approach for getting debuginfos and backtraces -- fixed unlocking of a debugdump -- replaced language and application plugins by analyzer plugin -- more excetpion handling -- conf file isn't needed -- Plugin's configuration file is optional -- Add curl dependency -- Added column 'user' to the gui -- Gui: set the newest entry as active (ticket#23) -- Delete and Report button are no longer active if no entry is selected (ticket#41) -- Gui refreshes silently (ticket#36) -- Added error reporting over dbus to daemon, error handling in gui, about dialog - -* Wed Mar 11 2009 Jiri Moskovcak 0.0.2-1 -- added kerneloops addon to rpm (aarapov) -- added kerneloops addon and plugin (aarapov) -- Made Crash() private -- Applet requires gui, removed dbus-glib deps -- Closing stdout in daemon rhbz#489622 -- Changed applet behaviour according to rhbz#489624 -- Changed gui according to rhbz#489624, fixed dbus timeouts -- Increased timeout for async dbus calls to 60sec -- deps cleanup, signal AnalyzeComplete has the crashreport as an argument. -- Fixed empty package Description. -- Fixed problem with applet tooltip on x86_64 - -* Wed Mar 4 2009 Jiri Moskovcak 0.0.1-13 -- More renaming issues fixed.. -- Changed BR from gtkmm24 to gtk2 -- Fixed saving of user comment -- Added a progress bar, new Comment entry for user comments.. -- FILENAME_CMDLINE and FILENAME_RELEASE are optional -- new default path to DB -- Rename to abrt - -* Tue Mar 3 2009 Jiri Moskovcak 0.0.1-12 -- initial fedora release -- changed SOURCE url -- added desktop-file-utils to BR -- changed crash-catcher to %%{name} - -* Mon Mar 2 2009 Jiri Moskovcak 0.0.1-11 -- more spec file fixes according to review -- async dbus method calls, added exception handler -- avoid deadlocks (zprikryl) -- root is god (zprikryl) -- create bt only once (zprikryl) - -* Sat Feb 28 2009 Jiri Moskovcak 0.0.1-10 -- New gui -- Added new method DeleteDebugDump to daemon -- Removed gcc warnings from applet -- Rewritten CCpp hook and removed dealock in DebugDumps lib (zprikryl) -- fixed few gcc warnings -- DBusBackend improvements - -* Fri Feb 27 2009 Jiri Moskovcak 0.0.1-9 -- fixed few gcc warnings -- added scrolled window for long reports - -* Thu Feb 26 2009 Adam Williamson 0.0.1-8 -- fixes for all issues identified in review - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-7 -- Fixed cancel button behaviour in reporter -- disabled core file sending -- removed some debug messages - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-6 -- fixed DB path -- added new signals to handler -- gui should survive the dbus timeout - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-5 -- fixed catching debuinfo install exceptions -- some gui fixes -- added check for GPGP public key - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-4 -- changed from full bt to simple bt - -* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-3 -- spec file cleanups -- changed default paths to crash DB and log DB -- fixed some memory leaks - -* Tue Feb 24 2009 Jiri Moskovcak 0.0.1-2 -- spec cleanup -- added new subpackage gui - -* Wed Feb 18 2009 Zdenek Prikryl 0.0.1-1 -- initial packing From bdca143d24e24b92c0b66212e51a67422ea29a59 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 21 Jan 2017 14:49:59 +0100 Subject: [PATCH 160/318] Rebuild for xmlrpc-c Signed-off-by: Igor Gnatenko --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index e730f9b..a96adaf 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1113,6 +1113,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sat Jan 21 2017 Igor Gnatenko - 2.10.0-3 +- Rebuild for xmlrpc-c + * Wed Jan 18 2017 Matej Habrnal 2.10.0-2 - daemon: Allow rpm to be optional at build time - modify kernel's suspicious string "invalid opcode:" From d5ced8a4cf7e43c45bc3adda8257d5b1009d09f1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:41:51 +0000 Subject: [PATCH 161/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index a96adaf..ac01cd4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1113,6 +1113,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 2.10.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Sat Jan 21 2017 Igor Gnatenko - 2.10.0-3 - Rebuild for xmlrpc-c From ba27e114c2702a81ff8259f19b1eb236827b30c5 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Thu, 16 Mar 2017 12:50:11 +0100 Subject: [PATCH 162/318] New version 2.10.1 Signed-off-by: Matej Habrnal --- .gitignore | 1 + ...inux-change-needed-for-automatic-del.patch | 27 -- 0003-remove-Buildroot-and-Groups-tags.patch | 248 ------------------ ...ll-gdb-to-analyze-saved-binary-image.patch | 37 --- ...low-rpm-to-be-optional-at-build-time.patch | 209 --------------- ...ify-suspicious-string-invalid-opcode.patch | 36 --- ...-calling-of-run_event_on_problem_dir.patch | 32 --- abrt.spec | 71 +++-- sources | 2 +- 9 files changed, 51 insertions(+), 612 deletions(-) delete mode 100644 0001-doc-document-selinux-change-needed-for-automatic-del.patch delete mode 100644 0003-remove-Buildroot-and-Groups-tags.patch delete mode 100644 0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch delete mode 100644 0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch delete mode 100644 0012-kernel-modify-suspicious-string-invalid-opcode.patch delete mode 100644 0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch diff --git a/.gitignore b/.gitignore index 84307b5..ca88abe 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ abrt-1.1.13.tar.gz /abrt-2.8.2.tar.gz /abrt-2.9.0.tar.gz /abrt-2.10.0.tar.gz +/abrt-2.10.1.tar.gz diff --git a/0001-doc-document-selinux-change-needed-for-automatic-del.patch b/0001-doc-document-selinux-change-needed-for-automatic-del.patch deleted file mode 100644 index 7184bde..0000000 --- a/0001-doc-document-selinux-change-needed-for-automatic-del.patch +++ /dev/null @@ -1,27 +0,0 @@ -From bcb90c417ef0dc0b7f80eb82d98ac92dfee7c4b0 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Miroslav=20Such=C3=BD?= -Date: Thu, 15 Dec 2016 15:29:03 +0100 -Subject: [PATCH] doc: document selinux change needed for automatic deletion of - reports - ---- - src/daemon/abrt.conf | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf -index 34570ea..6d1660e 100644 ---- a/src/daemon/abrt.conf -+++ b/src/daemon/abrt.conf -@@ -17,7 +17,8 @@ MaxCrashReportsSize = 5000 - #DumpLocation = /var/spool/abrt - - # If you want to automatically clean the upload directory you have to tweak the --# selinux policy. -+# selinux policy: -+# # setsebool -P abrt_anon_write 1 - # - DeleteUploaded = no - --- -2.9.3 - diff --git a/0003-remove-Buildroot-and-Groups-tags.patch b/0003-remove-Buildroot-and-Groups-tags.patch deleted file mode 100644 index 4212b7b..0000000 --- a/0003-remove-Buildroot-and-Groups-tags.patch +++ /dev/null @@ -1,248 +0,0 @@ -From 38c340677f103b3784dc62b7934660b13aed0249 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Miroslav=20Such=C3=BD?= -Date: Thu, 15 Dec 2016 17:02:38 +0100 -Subject: [PATCH] remove Buildroot and Groups tags - -not used any more, see -https://fedoraproject.org/wiki/EPEL:Packaging ---- - abrt.spec.in | 29 ----------------------------- - 1 file changed, 29 deletions(-) - -diff --git a/abrt.spec.in b/abrt.spec.in -index 4f041d5..b198a85 100644 ---- a/abrt.spec.in -+++ b/abrt.spec.in -@@ -62,7 +62,6 @@ Name: abrt - Version: @PACKAGE_VERSION@ - Release: 1%{?dist} - License: GPLv2+ --Group: Applications/System - URL: https://abrt.readthedocs.org/ - Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz - BuildRequires: %{dbus_devel} -@@ -106,7 +105,6 @@ Requires: dbus-1-glib - %if %{with systemd} - Requires: %{systemd_units} - %endif --BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - Requires: %{name}-libs = %{version}-%{release} - Requires: %{name}-python3 = %{version}-%{release} - Requires(pre): %{shadow_utils} -@@ -128,14 +126,12 @@ It uses plugin system to extend its functionality. - - %package libs - Summary: Libraries for %{name} --Group: System Environment/Libraries - - %description libs - Libraries for %{name}. - - %package devel - Summary: Development libraries for %{name} --Group: Development/Libraries - Requires: abrt-libs = %{version}-%{release} - - %description devel -@@ -143,14 +139,12 @@ Development libraries and headers for %{name}. - - %package gui-libs - Summary: Libraries for %{name}-gui --Group: System Environment/Libraries - - %description gui-libs - Libraries for %{name}-gui. - - %package gui-devel - Summary: Development libraries for %{name}-gui --Group: Development/Libraries - Requires: abrt-gui-libs = %{version}-%{release} - - %description gui-devel -@@ -158,7 +152,6 @@ Development libraries and headers for %{name}-gui. - - %package gui - Summary: %{name}'s gui --Group: User Interface/Desktops - Requires: %{name} = %{version}-%{release} - Requires: %{name}-dbus = %{version}-%{release} - Requires: gnome-abrt -@@ -177,7 +170,6 @@ GTK+ wizard for convenient bug reporting. - - %package addon-coredump-helper - Summary: %{name}'s /proc/sys/kernel/core_pattern helper --Group: System Environment/Libraries - Requires: abrt-libs = %{version}-%{release} - - %description addon-coredump-helper -@@ -185,7 +177,6 @@ This package contains hook for C/C++ crashed programs. - - %package addon-ccpp - Summary: %{name}'s C/C++ addon --Group: System Environment/Libraries - Requires: cpio - BuildRequires: gdb-headless - BuildRequires: libcap-devel -@@ -205,7 +196,6 @@ This package contains %{name}'s C/C++ analyzer plugin. - - %package addon-upload-watch - Summary: %{name}'s upload addon --Group: System Environment/Libraries - Requires: %{name} = %{version}-%{release} - Requires: abrt-libs = %{version}-%{release} - -@@ -214,7 +204,6 @@ This package contains hook for uploaded problems. - - %package retrace-client - Summary: %{name}'s retrace client --Group: System Environment/Libraries - Requires: %{name} = %{version}-%{release} - Requires: xz - Requires: tar -@@ -225,7 +214,6 @@ which is able to analyze C/C++ crashes remotely. - - %package addon-kerneloops - Summary: %{name}'s kerneloops addon --Group: System Environment/Libraries - BuildRequires: systemd-devel - Requires: curl - Requires: %{name} = %{version}-%{release} -@@ -240,7 +228,6 @@ system log. - - %package addon-xorg - Summary: %{name}'s Xorg addon --Group: System Environment/Libraries - Requires: curl - Requires: %{name} = %{version}-%{release} - Requires: abrt-libs = %{version}-%{release} -@@ -252,7 +239,6 @@ log. - %if %{?have_kexec_tools} == 1 - %package addon-vmcore - Summary: %{name}'s vmcore addon --Group: System Environment/Libraries - Requires: %{name} = %{version}-%{release} - Requires: abrt-addon-kerneloops - Requires: kexec-tools -@@ -267,7 +253,6 @@ vmcore files. - - %package addon-pstoreoops - Summary: %{name}'s pstore oops addon --Group: System Environment/Libraries - Requires: %{name} = %{version}-%{release} - Requires: abrt-libs = %{version}-%{release} - Requires: abrt-addon-kerneloops -@@ -280,7 +265,6 @@ This package contains plugin for collecting kernel oopses from pstore storage. - %package plugin-bodhi - Summary: %{name}'s bodhi plugin - BuildRequires: %{libjson_devel} --Group: System Environment/Libraries - Requires: %{name} = %{version}-%{release} - BuildRequires: libreport-web-devel >= %{libreport_ver} - BuildRequires: hawkey-devel -@@ -293,7 +277,6 @@ Search for a new updates in bodhi server. - - %package addon-python - Summary: %{name}'s addon for catching and analyzing Python exceptions --Group: System Environment/Libraries - Requires: python - Requires: %{name} = %{version}-%{release} - Requires: systemd-python -@@ -305,7 +288,6 @@ uncaught exception in python programs. - - %package addon-python3 - Summary: %{name}'s addon for catching and analyzing Python 3 exceptions --Group: System Environment/Libraries - Requires: python3 - Requires: %{name} = %{version}-%{release} - Requires: python3-systemd -@@ -317,7 +299,6 @@ uncaught exception in python 3 programs. - - %package tui - Summary: %{name}'s command line interface --Group: User Interface/Desktops - Requires: %{name} = %{version}-%{release} - Requires: libreport-cli >= %{libreport_ver} - Requires: abrt-libs = %{version}-%{release} -@@ -329,7 +310,6 @@ in command line environment. - - %package cli-ng - Summary: %{name}'s improved command line interface --Group: User Interface/Desktops - Requires: %{name} = %{version}-%{release} - Requires: libreport-cli >= %{libreport_ver} - Requires: abrt-libs = %{version}-%{release} -@@ -345,7 +325,6 @@ New generation command line interface for ABRT - - %package cli - Summary: Virtual package to make easy default installation on non-graphical environments --Group: Applications/System - Requires: %{name} = %{version}-%{release} - Requires: abrt-tui - Requires: abrt-addon-kerneloops -@@ -380,7 +359,6 @@ environment. - - %package desktop - Summary: Virtual package to make easy default installation on desktop environments --Group: User Interface/Desktops - # This package gets installed when anything requests bug-buddy - - # happens when users upgrade Fn to Fn+1; - # or if user just wants "typical desktop installation". -@@ -427,7 +405,6 @@ environment. - %if %{with atomic} - %package atomic - Summary: Package to make easy default installation on Atomic hosts. --Group: Applications/System - Requires: %{name}-addon-coredump-helper = %{version}-%{release} - Conflicts: %{name}-addon-ccpp - -@@ -438,7 +415,6 @@ hosts. - - %package dbus - Summary: ABRT DBus service --Group: Applications/System - Requires: %{name} = %{version}-%{release} - BuildRequires: polkit-devel - Requires: abrt-libs = %{version}-%{release} -@@ -450,7 +426,6 @@ uses PolicyKit to authorize to access the problem data. - - %package python - Summary: ABRT Python API --Group: System Environment/Libraries - Requires: %{name} = %{version}-%{release} - Requires: %{name}-libs = %{version}-%{release} - Requires: %{name}-dbus = %{version}-%{release} -@@ -466,7 +441,6 @@ problems handled by ABRT in Python. - - %package python-doc - Summary: ABRT Python API Documentation --Group: Documentation - BuildArch: noarch - BuildRequires: python2-devel - Requires: %{name} = %{version}-%{release} -@@ -477,7 +451,6 @@ Examples and documentation for ABRT Python API. - - %package python3 - Summary: ABRT Python 3 API --Group: System Environment/Libraries - Requires: %{name} = %{version}-%{release} - Requires: %{name}-libs = %{version}-%{release} - Requires: %{name}-dbus = %{version}-%{release} -@@ -493,7 +466,6 @@ problems handled by ABRT in Python 3. - - %package python3-doc - Summary: ABRT Python API Documentation --Group: Documentation - BuildArch: noarch - BuildRequires: python3-devel - Requires: %{name} = %{version}-%{release} -@@ -504,7 +476,6 @@ Examples and documentation for ABRT Python 3 API. - - %package console-notification - Summary: ABRT console notification script --Group: Applications/System - Requires: %{name} = %{version}-%{release} - Requires: %{name}-cli = %{version}-%{release} - --- -2.9.3 - diff --git a/0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch b/0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch deleted file mode 100644 index ce0d0bb..0000000 --- a/0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 98e5d89b5238eac954d1947de52c6b3fcf3ae987 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 29 Nov 2016 11:24:49 +0100 -Subject: [PATCH] ccpp: tell gdb to analyze saved binary image - -This is particularly useful when dealing with crashes in containers and -changed root environments. GDB reads the debug information from the -source elf and if the source elf is not available GDB generates useless -backtraces. - -Signed-off-by: Jakub Filak ---- - src/lib/hooklib.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c -index cb5c4cb..ccb1936 100644 ---- a/src/lib/hooklib.c -+++ b/src/lib/hooklib.c -@@ -246,7 +246,13 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char - struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); - if (!dd) - return NULL; -- char *executable = dd_load_text(dd, FILENAME_EXECUTABLE); -+ -+ char *executable = NULL; -+ if (dd_exist(dd, FILENAME_BINARY)) -+ executable = concat_path_file(dd->dd_dirname, FILENAME_BINARY); -+ else -+ executable = dd_load_text(dd, FILENAME_EXECUTABLE); -+ - dd_close(dd); - - /* Let user know what's going on */ --- -2.9.3 - diff --git a/0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch b/0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch deleted file mode 100644 index f60972e..0000000 --- a/0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch +++ /dev/null @@ -1,209 +0,0 @@ -From f4aec46ee3c6889d6a020721078cfab44f156708 Mon Sep 17 00:00:00 2001 -From: Wes Lindauer -Date: Wed, 14 Dec 2016 15:02:56 -0500 -Subject: [PATCH] daemon: Allow rpm to be optional at build time - ---- - configure.ac | 11 ++++++++++- - src/daemon/Makefile.am | 1 + - src/daemon/rpm.c | 31 +++++++++++++++++++++++++++++++ - src/daemon/rpm.h | 5 ----- - 4 files changed, 42 insertions(+), 6 deletions(-) - -diff --git a/configure.ac b/configure.ac -index f6597eb..4b05040 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -185,7 +185,6 @@ PKG_CHECK_MODULES([GTK], [gtk+-3.0]) - PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.43]) - PKG_CHECK_MODULES([DBUS], [dbus-1]) - PKG_CHECK_MODULES([LIBXML], [libxml-2.0]) --PKG_CHECK_MODULES([RPM], [rpm]) - PKG_CHECK_MODULES([LIBNOTIFY], [libnotify >= 0.7.0]) - PKG_CHECK_MODULES([NSS], [nss]) - PKG_CHECK_MODULES([LIBREPORT], [libreport]) -@@ -425,6 +424,16 @@ ABRT_PARSE_WITH([selinux])) - AM_CONDITIONAL(HAVE_SELINUX, false) - [fi] - -+AC_ARG_WITH(rpm, -+AS_HELP_STRING([--with-rpm],[build rpm support (default is YES)]), -+ABRT_PARSE_WITH([rpm])) -+ -+[if test -z "$NO_RPM"] -+[then] -+ PKG_CHECK_MODULES([RPM], [rpm]) -+ AC_DEFINE(HAVE_LIBRPM, [], [Have rpm support.]) -+[fi] -+ - # Initialize the test suite. - AC_CONFIG_TESTDIR(tests) - AC_CONFIG_FILES([tests/Makefile tests/atlocal]) -diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am -index 563923a..9a41d5f 100644 ---- a/src/daemon/Makefile.am -+++ b/src/daemon/Makefile.am -@@ -95,6 +95,7 @@ abrt_action_save_package_data_CPPFLAGS = \ - -I$(srcdir)/../lib \ - -DCONF_DIR=\"$(CONF_DIR)\" \ - $(GLIB_CFLAGS) \ -+ $(RPM_CFLAGS) \ - $(LIBREPORT_CFLAGS) \ - -D_GNU_SOURCE - abrt_action_save_package_data_LDADD = \ -diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c -index e99b960..36b36a9 100644 ---- a/src/daemon/rpm.c -+++ b/src/daemon/rpm.c -@@ -19,6 +19,13 @@ - #include "libabrt.h" - #include "rpm.h" - -+#ifdef HAVE_LIBRPM -+#include -+#include -+#include -+#include -+#endif -+ - /** - * A set, which contains finger prints. - */ -@@ -51,8 +58,10 @@ char* get_package_name_from_NVR_or_NULL(const char* packageNVR) - - void rpm_init() - { -+#ifdef HAVE_LIBRPM - if (rpmReadConfigFiles(NULL, NULL) != 0) - error_msg("Can't read RPM rc files"); -+#endif - - list_free_with_free(list_fingerprints); /* paranoia */ - /* Huh? Why do we start the list with an element with NULL string? */ -@@ -61,6 +70,7 @@ void rpm_init() - - void rpm_destroy() - { -+#ifdef HAVE_LIBRPM - /* Mirroring the order of deinit calls in rpm-4.11.1/lib/poptALL.c::rpmcliFini() */ - rpmFreeCrypto(); - rpmFreeMacros(NULL); -@@ -71,6 +81,7 @@ void rpm_destroy() - * "BDB2053 Freeing read locks for locker 0x1e0: 28718/139661746636736" - */ - rpmdbCheckTerminate(1); -+#endif - - list_free_with_free(list_fingerprints); - list_fingerprints = NULL; -@@ -78,6 +89,7 @@ void rpm_destroy() - - void rpm_load_gpgkey(const char* filename) - { -+#ifdef HAVE_LIBRPM - uint8_t *pkt = NULL; - size_t pklen; - if (pgpReadPkts(filename, &pkt, &pklen) != PGPARMOR_PUBKEY) -@@ -95,6 +107,9 @@ void rpm_load_gpgkey(const char* filename) - list_fingerprints = g_list_append(list_fingerprints, fingerprint); - } - free(pkt); -+#else -+ return; -+#endif - } - - int rpm_chk_fingerprint(const char* pkg) -@@ -114,6 +129,7 @@ int rpm_fingerprint_is_imported(const char* fingerprint) - - char *rpm_get_fingerprint(const char *pkg) - { -+#ifdef HAVE_LIBRPM - char *fingerprint = NULL; - char *pgpsig = NULL; - const char *errmsg = NULL; -@@ -141,6 +157,9 @@ error: - rpmdbFreeIterator(iter); - rpmtsFree(ts); - return fingerprint; -+#else -+ return NULL; -+#endif - } - - /* -@@ -183,6 +202,7 @@ error: - } - */ - -+#ifdef HAVE_LIBRPM - static int rpm_query_file(rpmts *ts, rpmdbMatchIterator *iter, Header *header, - const char *filename, const char *rootdir_or_NULL) - { -@@ -216,9 +236,11 @@ static int rpm_query_file(rpmts *ts, rpmdbMatchIterator *iter, Header *header, - - return 0; - } -+#endif - - char* rpm_get_component(const char *filename, const char *rootdir_or_NULL) - { -+#ifdef HAVE_LIBRPM - char *ret = NULL; - char *srpm = NULL; - rpmts ts; -@@ -246,8 +268,12 @@ char* rpm_get_component(const char *filename, const char *rootdir_or_NULL) - rpmdbFreeIterator(iter); - rpmtsFree(ts); - return ret; -+#else -+ return NULL; -+#endif - } - -+#ifdef HAVE_LIBRPM - #define pkg_add_id(name) \ - static inline int pkg_add_##name(Header header, struct pkg_envra *p) \ - { \ -@@ -267,10 +293,12 @@ pkg_add_id(version); - pkg_add_id(release); - pkg_add_id(arch); - pkg_add_id(vendor); -+#endif - - // caller is responsible to free returned value - struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_or_NULL) - { -+#ifdef HAVE_LIBRPM - rpmts ts; - rpmdbMatchIterator iter; - Header header; -@@ -330,6 +358,9 @@ struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_ - rpmdbFreeIterator(iter); - rpmtsFree(ts); - return NULL; -+#else -+ return NULL; -+#endif - } - - void free_pkg_envra(struct pkg_envra *p) -diff --git a/src/daemon/rpm.h b/src/daemon/rpm.h -index 89aa088..1fd56e8 100644 ---- a/src/daemon/rpm.h -+++ b/src/daemon/rpm.h -@@ -22,11 +22,6 @@ - #ifndef RPM_H_ - #define RPM_H_ - --#include --#include --#include --#include -- - #ifdef __cplusplus - extern "C" { - #endif --- -2.9.3 - diff --git a/0012-kernel-modify-suspicious-string-invalid-opcode.patch b/0012-kernel-modify-suspicious-string-invalid-opcode.patch deleted file mode 100644 index d6775d5..0000000 --- a/0012-kernel-modify-suspicious-string-invalid-opcode.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 2b12039b94b00144a8db37ee87a6e89f897cdaeb Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Mon, 16 Jan 2017 16:46:22 +0100 -Subject: [PATCH] kernel: modify suspicious string "invalid opcode:" - -"invalid opcode:" can be without colon. - -systemd-journal output example: - - traps: chrome[2979] trap invalid opcode ip:55911b28dba3 sp:7ffea558a3e0 - error:0 - in chrome[55911728a000+6a0b000] - -Related to #1413451 - -Signed-off-by: Matej Habrnal ---- - src/lib/kernel.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/lib/kernel.c b/src/lib/kernel.c -index d662319..6f05619 100644 ---- a/src/lib/kernel.c -+++ b/src/lib/kernel.c -@@ -139,7 +139,7 @@ static const char *const s_koops_suspicious_strings[] = { - "coprocessor segment overrun:", - "invalid TSS:", - "segment not present:", -- "invalid opcode:", -+ "invalid opcode", - "alignment check:", - "stack segment:", - "fpu exception:", --- -2.9.3 - diff --git a/0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch b/0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch deleted file mode 100644 index 7682c2f..0000000 --- a/0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 9b1b0c6c49d19a63a0e781fcc56d3b4ea530f2da Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 18 Jan 2017 09:49:10 +0100 -Subject: [PATCH] a-a-ureport: fix calling of run_event_on_problem_dir - -We just need to call 'run_event_on_problem_dir' and not -'report.run_event_on_problem_dir' as the function is imported as a solo -identifier from the report module. - -Resolved #1413637 - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-action-ureport | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport -index a73e7f1..37595f1 100755 ---- a/src/plugins/abrt-action-ureport -+++ b/src/plugins/abrt-action-ureport -@@ -78,7 +78,7 @@ def get_bugzilla_reports(reported_to): - return bugs - - def run_event(event_name, dump_dir_name): -- state, ret = report.run_event_on_problem_dir(dump_dir_name, event_name) -+ state, ret = run_event_on_problem_dir(dump_dir_name, event_name) - if ret == 0 and state.children_count == 0: - log1("Didn't find definition of event '%s'", event_name) - --- -2.9.3 - diff --git a/abrt.spec b/abrt.spec index ac01cd4..d097ef6 100644 --- a/abrt.spec +++ b/abrt.spec @@ -54,35 +54,20 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.9.0-3 +%define libreport_ver 2.9.1 %define satyr_ver 0.22 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.0 -Release: 4%{?dist} +Version: 2.10.1 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ -Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz +Source: https://github.com/abrt/%{name}/archive/%{version}/%{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-doc-document-selinux-change-needed-for-automatic-del.patch -#Patch0002: 0002-spec-recommend-libreport-plugin-systemd-journal-on-F.patch -Patch0003: 0003-remove-Buildroot-and-Groups-tags.patch -#Patch0004: 0004-spec-remove-changelog-entries-older-than-2-years.patch -#Patch0005: 0005-spec-use-versioned-provides.patch -#Patch0006: 0006-spec-remove-cleaning-buildroot.patch -#Patch0007: 0007-spec-remove-defattr.patch -#Patch0008: 0008-spec-allow-any-compression-of-man-pages.patch -Patch0009: 0009-ccpp-tell-gdb-to-analyze-saved-binary-image.patch -#Patch0010: 0010-testsuite-add-test-for-bugzilla-default-url.patch -Patch0011: 0011-daemon-Allow-rpm-to-be-optional-at-build-time.patch -Patch0012: 0012-kernel-modify-suspicious-string-invalid-opcode.patch -#Patch0013: 0013-testsuite-add-testcase-for-modified-suspicious-strin.patch -#Patch0014: 0014-spec-if-using-systemd-default-to-os-release-ID-for-d.patch -Patch0015: 0015-a-a-ureport-fix-calling-of-run_event_on_problem_dir.patch # don't remove this patch, packages in rawhide are not signed! Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch @@ -296,7 +281,6 @@ BuildRequires: json-c-devel Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} BuildRequires: libreport-web-devel >= %{libreport_ver} -BuildRequires: hawkey-devel Obsoletes: libreport-plugin-bodhi > 0.0.1 Provides: libreport-plugin-bodhi = %{version}-%{release} @@ -327,6 +311,23 @@ Requires: abrt-python3 This package contains python 3 hook and python analyzer plugin for handling uncaught exception in python 3 programs. +%package plugin-sosreport +Summary: %{name}'s plugin for building automatic sosreports +Requires: sos +Requires: %{name} = %{version}-%{release} + +%description plugin-sosreport +This package contains a configuration snippet to enable automatic generation +of sosreports for abrt events. + +%package plugin-machine-id +Summary: %{name}'s plugin to generate machine_id based off dmidecode +Requires: %{name} = %{version}-%{release} + +%description plugin-machine-id +This package contains a configuration snippet to enable automatic generation +of machine_id for abrt events. + %package tui Summary: %{name}'s command line interface Group: User Interface/Desktops @@ -726,7 +727,7 @@ fi service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp -service abrt-ccpp condrestart >/dev/null 2>&1 || : +service abrt-journal-core condrestart >/dev/null 2>&1 || : %posttrans addon-kerneloops service abrt-oops condrestart >/dev/null 2>&1 || : @@ -771,7 +772,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_sbindir}/abrt-auto-reporting %{_libexecdir}/abrt-handle-event %{_libexecdir}/abrt-action-ureport -%{_libexecdir}/abrt-action-generate-machine-id %{_bindir}/abrt-handle-upload %{_bindir}/abrt-action-notify %{_mandir}/man1/abrt-action-notify.1* @@ -1034,6 +1034,15 @@ killall abrt-dbus >/dev/null 2>&1 || : %{python3_sitearch}/abrt* %{python3_sitearch}/__pycache__/abrt* +%files plugin-sosreport +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/libreport/events.d/sosreport_event.conf + +%files plugin-machine-id +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/libreport/events.d/machine-id_event.conf +%{_libexecdir}/abrt-action-generate-machine-id + %files cli %files tui @@ -1113,6 +1122,24 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Mar 16 2017 Matej Habrnal 2.10.1-1 +- bodhi: Remove dependency on hawkey +- spec: Remove dependency on hawkey +- build: do not upload tarball to fedorahosted.org +- spec: do not use fedorahosted.org as source +- plugins: introduce Machine ID and SOS report +- build: fix generating list of dependences in autogen.sh +- spec: start abrt-journal-core instead of abrt-ccpp +- build: fix scratch-build target +- a-a-ureport: fix calling of run_event_on_problem_dir +- spec: if using systemd, default to os-release ID for desktopvendor +- kernel: modify suspicious string "invalid opcode:" +- daemon: Allow rpm to be optional at build time +- spec: allow any compression of man pages +- spec: recommend libreport-plugin-systemd-journal on Fedoras +- doc: document selinux change needed for automatic deletion of reports +- ccpp: tell gdb to analyze saved binary image + * Fri Feb 10 2017 Fedora Release Engineering - 2.10.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 1c20159..436b2fd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.0.tar.gz) = f8d98fb39fc0ed6f45973dc653f91869590c93e0a26e92ff6b2a8d17a4b64cf451a13fc00d8ec29fbf6689428b14e7bcf576c73aa29af3601a054d137fdf5e91 +SHA512 (abrt-2.10.1.tar.gz) = d62247463e6c4aa18da4916669d4a6bb131975ede4126731118b5c6bd7dba6286117271888e1d330bc9819d5befa6364466d604c98bf511e117e3b0b6a930600 From 3c502986855c2605b65d34a76bafb91cd410c088 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Tue, 25 Apr 2017 13:04:41 +0200 Subject: [PATCH 163/318] New version 2.10.2 Resolves: #1439821 Signed-off-by: Matej Habrnal --- .gitignore | 1 + abrt.spec | 35 +++++++++++++++++++++++++++++++++-- sources | 2 +- 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ca88abe..3976f3f 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,4 @@ abrt-1.1.13.tar.gz /abrt-2.9.0.tar.gz /abrt-2.10.0.tar.gz /abrt-2.10.1.tar.gz +/abrt-2.10.2.tar.gz diff --git a/abrt.spec b/abrt.spec index d097ef6..e90cf6d 100644 --- a/abrt.spec +++ b/abrt.spec @@ -59,7 +59,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.1 +Version: 2.10.2 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -727,7 +727,27 @@ fi service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp -service abrt-journal-core condrestart >/dev/null 2>&1 || : +# Migrate from abrt-ccpp.service to abrt-journal-core.service +# 'systemctl preset abrt-ccpp.service abrt-journal-core.service' +# is done only for installation by %systemd_post macro but not for package +# upgrade. Following lines affect changes in Fedora preset files in case of +# package upgrade and also starts abrt-journal-core.service and stops +# abrt-ccpp.service if abrt-ccpp.service is running. +# All this has to be done only once because some users want to use +# abrt-ccpp.service instead of the default abrt-journal-core.service. +# Hence we introduced a %{_localstatedir}/lib/abrt/abrt-migrated file to +# mark the migration was done. +if test ! -f %{_localstatedir}/lib/abrt/abrt-migrated ; then + systemctl --no-reload preset abrt-ccpp.service >/dev/null 2>&1 || : + systemctl --no-reload preset abrt-journal-core.service >/dev/null 2>&1 || : + if service abrt-ccpp status >/dev/null 2>&1 ; then + systemctl stop abrt-ccpp >/dev/null 2>&1 || : + systemctl start abrt-journal-core >/dev/null 2>&1 || : + fi + touch %{_localstatedir}/lib/abrt/abrt-migrated +fi +systemctl try-restart abrt-journal-core >/dev/null 2>&1 || : +systemctl try-restart abrt-ccpp >/dev/null 2>&1 || : %posttrans addon-kerneloops service abrt-oops condrestart >/dev/null 2>&1 || : @@ -1122,6 +1142,17 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Apr 25 2017 Matej Habrnal 2.10.2-1 +- Translation updates +- spec: introduce migration to abrt-journal-core +- abrt_event: Save cpuinfo in problem directories +- koops: Improve fatal MCE check when dumping backtrace +- lib: typo in header +- Spelling fixes +- Python 3.6 invalid escape sequence deprecation fix +- koops_event: add check to restrict reporting of MCEs +- Resolves: #1439821 + * Thu Mar 16 2017 Matej Habrnal 2.10.1-1 - bodhi: Remove dependency on hawkey - spec: Remove dependency on hawkey diff --git a/sources b/sources index 436b2fd..57e17a9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.1.tar.gz) = d62247463e6c4aa18da4916669d4a6bb131975ede4126731118b5c6bd7dba6286117271888e1d330bc9819d5befa6364466d604c98bf511e117e3b0b6a930600 +SHA512 (abrt-2.10.2.tar.gz) = 5f03d47dfd97fc67eefa71b7750e8d2f189beff8c455f86d7f7c89195f64ed39ae08f611bef11f6a9d2b94bf83e7d7e49f2bdff8d92710f94dc6efe96ae1d1c3 From a170e2f896bfb597692d3074b428b5f76c7a8bfc Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Thu, 27 Apr 2017 10:33:50 +0200 Subject: [PATCH 164/318] create /var/lib/abrt because of abrt-migration abrt-addon-ccpp has to create /var/lib/abrt because abrt-migration file is placed here. Signed-off-by: Matej Habrnal --- abrt.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index e90cf6d..4737389 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -900,6 +900,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_initrddir}/abrt-ccpp %endif +%dir %{_localstatedir}/lib/abrt + # attr(6755) ~= SETUID|SETGID %attr(6755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache @@ -1142,6 +1144,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Apr 27 2017 Matej Habrnal 2.10.2-2 +- create /var/lib/abrt because of abrt-migration + * Tue Apr 25 2017 Matej Habrnal 2.10.2-1 - Translation updates - spec: introduce migration to abrt-journal-core From e8a62759b3a79ba66ae9c8f8d8ec58c6bed84b25 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Fri, 19 May 2017 10:17:53 +0200 Subject: [PATCH 165/318] abrt-desktop shouldn't require gdb but gdb-headless abrt-desktop required gdb which which pulls in gcc among other things. Resolves: #1452336 Signed-off-by: Matej Habrnal --- abrt.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index 4737389..06e0eb6 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -405,7 +405,8 @@ Requires: abrt-addon-ccpp Requires: abrt-addon-python3 Requires: abrt-addon-xorg # Default config of addon-ccpp requires gdb -Requires: gdb >= 7.8.1-31 +BuildRequires: gdb-headless +Requires: gdb-headless Requires: elfutils Requires: abrt-gui Requires: gnome-abrt @@ -1144,6 +1145,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri May 19 2017 Matej Habrnal 2.10.2-3 +- abrt-desktop shouldn't require gdb but gdb-headless +- Resolves: #1452336 + * Thu Apr 27 2017 Matej Habrnal 2.10.2-2 - create /var/lib/abrt because of abrt-migration From 253f3b5e2496a3e79f0d060e922d107374d6c544 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Thu, 15 Jun 2017 17:51:01 +0200 Subject: [PATCH 166/318] New version 2.10.3 Resolves: #1452160, #1444924, #1437956 Signed-off-by: Martin Kutlak --- .gitignore | 1 + abrt.spec | 22 ++++++++++++++++++---- sources | 2 +- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3976f3f..ea3779c 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.0.tar.gz /abrt-2.10.1.tar.gz /abrt-2.10.2.tar.gz +/abrt-2.10.3.tar.gz diff --git a/abrt.spec b/abrt.spec index 06e0eb6..6b7d4ab 100644 --- a/abrt.spec +++ b/abrt.spec @@ -59,8 +59,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.2 -Release: 3%{?dist} +Version: 2.10.3 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -119,7 +119,7 @@ Requires: python3-augeas Requires: python3-dbus Requires: python3-dmidecode Requires: libreport-plugin-ureport >= %{libreport_ver} -Recommends: libreport-plugin-systemd-journal +Requires: libreport-plugin-systemd-journal %description %{name} is a tool to help users to detect defects in applications and @@ -793,11 +793,11 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_sbindir}/abrt-auto-reporting %{_libexecdir}/abrt-handle-event %{_libexecdir}/abrt-action-ureport +%{_libexecdir}/abrt-action-save-container-data %{_bindir}/abrt-handle-upload %{_bindir}/abrt-action-notify %{_mandir}/man1/abrt-action-notify.1* %{_bindir}/abrt-action-save-package-data -%{_bindir}/abrt-action-save-container-data %{_bindir}/abrt-watch-log %{_bindir}/abrt-action-analyze-python %{_bindir}/abrt-action-analyze-xorg @@ -1145,6 +1145,20 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jun 15 2017 Martin Kutlak 2.10.3-1 +- Translation updates +- applet: add a default action to a notification +- spec: require libreport-plugin-systemd-journal on Fedoras +- changing load location from bin to libexec +- changing location of abrt-action-save-container-data from bin to libexec +- koops: Improve not-reportable for oopses with taint flags +- This fixes #1173 +- python: provide more information about exception +- abrt-journal: adapt to suspicious blacklist addition +- koops: add suspicious strings blacklist +- build: fix changelog adding in release target +- Resolves: #1452160, #1444924, #1437956 + * Fri May 19 2017 Matej Habrnal 2.10.2-3 - abrt-desktop shouldn't require gdb but gdb-headless - Resolves: #1452336 diff --git a/sources b/sources index 57e17a9..5a110d1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.2.tar.gz) = 5f03d47dfd97fc67eefa71b7750e8d2f189beff8c455f86d7f7c89195f64ed39ae08f611bef11f6a9d2b94bf83e7d7e49f2bdff8d92710f94dc6efe96ae1d1c3 +SHA512 (abrt-2.10.3.tar.gz) = 1ede46373eab7ad63c177841720f04a89e0454531320b24e6ec36e4ba0ef853a23a7bb800ff5a0160d2a93f620f31faebf63c6f8cf3449930d4173eec5676b24 From 7de0bef650f3b4d12e33065f8742a0bc9972be7e Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Fri, 16 Jun 2017 10:11:34 +0200 Subject: [PATCH 167/318] Fix sources I accidently commited wrong sources file in commit 253f3b. Signed-off-by: Martin Kutlak --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index 5a110d1..8ac10eb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.3.tar.gz) = 1ede46373eab7ad63c177841720f04a89e0454531320b24e6ec36e4ba0ef853a23a7bb800ff5a0160d2a93f620f31faebf63c6f8cf3449930d4173eec5676b24 +SHA512 (abrt-2.10.3.tar.gz) = dac86703c60f1b56b8cfa7b2e400f5165a0ee9bd457667dec71981f9475b35552c80d5c5864de22414d83f4ce8ea29300d299f36e7fe4eb77a80112d6a1852ab From 7ef5a567fa52e6caaddd51a1466c176f08702129 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:31:58 +0000 Subject: [PATCH 168/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 6b7d4ab..95dbf35 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1145,6 +1145,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 2.10.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Thu Jun 15 2017 Martin Kutlak 2.10.3-1 - Translation updates - applet: add a default action to a notification From 5349e70f0a0aace2e8e2844c72f7e32d6f46bcd2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 17:21:56 +0000 Subject: [PATCH 169/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 95dbf35..4ffe344 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1145,6 +1145,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 2.10.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 2.10.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 248ea8cdf455775594b4a9d54771b6821d31fd57 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 10 Aug 2017 20:19:43 +0200 Subject: [PATCH 170/318] Rebuilt for RPM soname bump Signed-off-by: Igor Gnatenko --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 4ffe344..cd4eb62 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1145,6 +1145,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Aug 10 2017 Igor Gnatenko - 2.10.3-4 +- Rebuilt for RPM soname bump + * Wed Aug 02 2017 Fedora Release Engineering - 2.10.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 9b73a80599e688b14833d3c4a957deda2aa3ab8c Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 10 Aug 2017 22:06:39 +0200 Subject: [PATCH 171/318] Rebuilt for RPM soname bump Signed-off-by: Igor Gnatenko --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index cd4eb62..039057e 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.3 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1145,6 +1145,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Aug 10 2017 Igor Gnatenko - 2.10.3-5 +- Rebuilt for RPM soname bump + * Thu Aug 10 2017 Igor Gnatenko - 2.10.3-4 - Rebuilt for RPM soname bump From baf8fefda75b710435a1fc8d7c1faa253ebe405d Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 11 Aug 2017 10:39:26 +0200 Subject: [PATCH 172/318] =?UTF-8?q?Rebuilt=20after=20RPM=20update=20(?= =?UTF-8?q?=E2=84=96=203)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Igor Gnatenko --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 039057e..ea5ad34 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.3 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1145,6 +1145,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Aug 11 2017 Igor Gnatenko - 2.10.3-6 +- Rebuilt after RPM update (№ 3) + * Thu Aug 10 2017 Igor Gnatenko - 2.10.3-5 - Rebuilt for RPM soname bump From 2fe9ae6400fae4d3cb94f7af1bbd4e5a4d99bf0e Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 11 Aug 2017 12:27:27 +0200 Subject: [PATCH 173/318] Hacks for RPM 4.14 support Signed-off-by: Igor Gnatenko --- ...uick-hack-to-fix-build-with-rpm-4.14.patch | 54 +++++++++++++++++++ abrt.spec | 3 ++ 2 files changed, 57 insertions(+) create mode 100644 0001-Quick-hack-to-fix-build-with-rpm-4.14.patch diff --git a/0001-Quick-hack-to-fix-build-with-rpm-4.14.patch b/0001-Quick-hack-to-fix-build-with-rpm-4.14.patch new file mode 100644 index 0000000..ea52a98 --- /dev/null +++ b/0001-Quick-hack-to-fix-build-with-rpm-4.14.patch @@ -0,0 +1,54 @@ +From c01551e6e9fd293a3f40e481afe8c28e786fe632 Mon Sep 17 00:00:00 2001 +From: Panu Matilainen +Date: Fri, 11 Aug 2017 13:24:26 +0300 +Subject: [PATCH] Quick hack to fix build with rpm >= 4.14 + +1) rpm >= 4.14 no longer has rpmCheckTerminate() call, it cleans up + automatically on exit(). Note that "needing" rpmCheckTerminate() + means the code is buggy: it does not properly track and free + rpmdb iterators and/or rpmts handles. +2) pgpPubkeyFingerprint() now returns the actual fingerprint, the + key ID which it previously returned is now retrieved by + pgpPubkeyKeyID() + +If compatibility to older versions is needed, these will need +configure checks, left as an excercise for someone more familiar +with the abrt codebase. +--- + src/daemon/rpm.c | 7 +++++++ + 1 file changed, 7 insertions(+) + +diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c +index 36b36a91..011e44ca 100644 +--- a/src/daemon/rpm.c ++++ b/src/daemon/rpm.c +@@ -76,11 +76,14 @@ void rpm_destroy() + rpmFreeMacros(NULL); + rpmFreeRpmrc(); + ++/* rpm >= 4.14 handles this automatically on exit */ ++#if 0 + /* RPM doc says "clean up any open iterators and databases". + * Observed to eliminate these Berkeley DB warnings: + * "BDB2053 Freeing read locks for locker 0x1e0: 28718/139661746636736" + */ + rpmdbCheckTerminate(1); ++#endif + #endif + + list_free_with_free(list_fingerprints); +@@ -100,7 +103,11 @@ void rpm_load_gpgkey(const char* filename) + } + + uint8_t keyID[8]; ++#if 0 + if (pgpPubkeyFingerprint(pkt, pklen, keyID) == 0) ++#else ++ if (pgpPubkeyKeyID(pkt, pklen, keyID) == 0) ++#endif + { + char *fingerprint = pgpHexStr(keyID, sizeof(keyID)); + if (fingerprint != NULL) +-- +2.14.0 + diff --git a/abrt.spec b/abrt.spec index ea5ad34..4002713 100644 --- a/abrt.spec +++ b/abrt.spec @@ -72,6 +72,9 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta # don't remove this patch, packages in rawhide are not signed! Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch +# Hacks for RPM 4.14 support +Patch1: 0001-Quick-hack-to-fix-build-with-rpm-4.14.patch + # '%%autosetup -S git' -> git BuildRequires: git From f36c5ca8dc7d08fc6023f510e47e494d601a708a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 19 Aug 2017 07:11:29 -0400 Subject: [PATCH 174/318] Rename python binary packages --- abrt.spec | 71 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 46 insertions(+), 25 deletions(-) diff --git a/abrt.spec b/abrt.spec index 4002713..74d1f6b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.3 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -290,25 +290,25 @@ Provides: libreport-plugin-bodhi = %{version}-%{release} %description plugin-bodhi Search for a new updates in bodhi server. -%package addon-python +%package -n python2-abrt-addon Summary: %{name}'s addon for catching and analyzing Python exceptions Group: System Environment/Libraries -Requires: python Requires: %{name} = %{version}-%{release} Requires: systemd-python -Requires: abrt-python +Requires: python2-abrt +Provides: abrt-addon-python%{?_isa} = %{version}-%{release} +Obsoletes: abrt-addon-python < %{version}-%{release} -%description addon-python +%description -n python2-abrt-addon This package contains python hook and python analyzer plugin for handling uncaught exception in python programs. -%package addon-python3 +%package -n python3-abrt-addon Summary: %{name}'s addon for catching and analyzing Python 3 exceptions Group: System Environment/Libraries -Requires: python3 Requires: %{name} = %{version}-%{release} Requires: python3-systemd -Requires: abrt-python3 +Requires: python3-abrt %description addon-python3 This package contains python 3 hook and python analyzer plugin for handling @@ -455,7 +455,7 @@ ABRT DBus service which provides org.freedesktop.problems API on dbus and uses PolicyKit to authorize to access the problem data. -%package python +%package -n python2-abrt Summary: ABRT Python API Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} @@ -463,26 +463,33 @@ Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: dbus-python Requires: libreport-python +%{?python_provide:%python_provide python2-abrt} +# Remove before F30 +Provides: %{name}-python%{?_isa} = %{version}-%{release} +Obsoletes: %{name}-python < %{version}-%{release} BuildRequires: python-nose BuildRequires: python-sphinx BuildRequires: libreport-python -%description python +%description -n python2-abrt High-level API for querying, creating and manipulating problems handled by ABRT in Python. -%package python-doc +%package -n python2-abrt-doc Summary: ABRT Python API Documentation Group: Documentation BuildArch: noarch BuildRequires: python2-devel Requires: %{name} = %{version}-%{release} -Requires: %{name}-python = %{version}-%{release} +Requires: python2-abrt = %{version}-%{release} +# Remove before F30 +Provides: %{name}-python-doc%{?_isa} = %{version}-%{release} +Obsoletes: %{name}-python-doc < %{version}-%{release} -%description python-doc +%description -n python2-abrt-doc Examples and documentation for ABRT Python API. -%package python3 +%package -n python3-abrt Summary: ABRT Python 3 API Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} @@ -490,23 +497,30 @@ Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python3-dbus Requires: libreport-python3 +%{?python_provide:%python_provide python3-abrt} +# Remove before F30 +Provides: %{name}-python3%{?_isa} = %{version}-%{release} +Obsoletes: %{name}-python3 < %{version}-%{release} BuildRequires: python3-nose BuildRequires: python3-sphinx BuildRequires: libreport-python3 -%description python3 +%description -n python3-abrt High-level API for querying, creating and manipulating problems handled by ABRT in Python 3. -%package python3-doc +%package -n abrt-python3-doc Summary: ABRT Python API Documentation Group: Documentation BuildArch: noarch BuildRequires: python3-devel Requires: %{name} = %{version}-%{release} Requires: %{name}-python3 = %{version}-%{release} +# Remove before F30 +Provides: %{name}-python3-doc%{?_isa} = %{version}-%{release} +Obsoletes: %{name}-python3-doc < %{version}-%{release} -%description python3-doc +%description -n abrt-python3-doc Examples and documentation for ABRT Python 3 API. %package console-notification @@ -613,10 +627,10 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_post abrt-xorg.service %journal_catalog_update -%post addon-python +%post -n python2-abrt-addon %journal_catalog_update -%post addon-python3 +%post -n python3-abrt-addon %journal_catalog_update %if %{?have_kexec_tools} == 1 @@ -1037,7 +1051,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-harvest-pstoreoops.1* %{_mandir}/man1/abrt-merge-pstoreoops.1* -%files addon-python +%files -n python2-abrt-addon %config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf %{_datadir}/%{name}/conf.d/plugins/python.conf %{_mandir}/man5/abrt-python.conf.5* @@ -1049,7 +1063,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{python_sitearch}/abrt*.py* %{python_sitearch}/abrt.pth -%files addon-python3 +%files -n python3-abrt-addon %config(noreplace) %{_sysconfdir}/%{name}/plugins/python3.conf %{_datadir}/%{name}/conf.d/plugins/python3.conf %{_mandir}/man5/abrt-python3.conf.5* @@ -1130,24 +1144,31 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.css %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_dbus_event.conf -%files python +%files -n python2-abrt %{python_sitearch}/problem/ %{_mandir}/man5/abrt-python.5* -%files python-doc +%files -n python2-abrt-doc %{python_sitelib}/problem_examples -%files python3 +%files -n python3-abrt %{python3_sitearch}/problem/ %{_mandir}/man5/abrt-python3.5* -%files python3-doc +%files -n python3-abrt-doc %{python3_sitelib}/problem_examples %files console-notification %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Aug 16 2017 Zbigniew Jędrzejewski-Szmek - 2.10.3-7 +- Python 2 binary package renamed to python2-abrt + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 +- Python 3 binary package renamed to python3-abrt +- Add-on packages renamed to python[23]-abrt-addon +- Documentation packages renamed to python[23]-abrt-doc + * Fri Aug 11 2017 Igor Gnatenko - 2.10.3-6 - Rebuilt after RPM update (№ 3) From afd3ea3beadc8c05c70cade6d996b5032ca90979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 19 Aug 2017 10:17:11 -0400 Subject: [PATCH 175/318] Finish renaming of python binary packages I messed up previous commit, sorry. --- abrt.spec | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/abrt.spec b/abrt.spec index 74d1f6b..8c5b01e 100644 --- a/abrt.spec +++ b/abrt.spec @@ -259,7 +259,7 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: kexec-tools -Requires: abrt-python3 +Requires: python3-abrt Requires: python3-augeas %description addon-vmcore @@ -310,7 +310,7 @@ Requires: %{name} = %{version}-%{release} Requires: python3-systemd Requires: python3-abrt -%description addon-python3 +%description -n python3-abrt-addon This package contains python 3 hook and python analyzer plugin for handling uncaught exception in python 3 programs. @@ -350,7 +350,7 @@ Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} Requires: abrt-dbus -Requires: abrt-python +Requires: python2-abrt Requires: abrt-addon-ccpp Requires: python-argh Requires: python2-argcomplete @@ -371,7 +371,7 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp -Requires: abrt-addon-python3 +Requires: python3-abrt-addon Requires: abrt-addon-xorg %if 0%{?rhel} Requires: libreport-rhel >= %{libreport_ver} @@ -405,7 +405,7 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp -Requires: abrt-addon-python3 +Requires: python3-abrt-addon Requires: abrt-addon-xorg # Default config of addon-ccpp requires gdb BuildRequires: gdb-headless @@ -509,7 +509,7 @@ BuildRequires: libreport-python3 High-level API for querying, creating and manipulating problems handled by ABRT in Python 3. -%package -n abrt-python3-doc +%package -n python3-abrt-doc Summary: ABRT Python API Documentation Group: Documentation BuildArch: noarch @@ -520,7 +520,7 @@ Requires: %{name}-python3 = %{version}-%{release} Provides: %{name}-python3-doc%{?_isa} = %{version}-%{release} Obsoletes: %{name}-python3-doc < %{version}-%{release} -%description -n abrt-python3-doc +%description -n python3-abrt-doc Examples and documentation for ABRT Python 3 API. %package console-notification From 49b1bc1549f8954aef277789cabe51b0ae16767e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 19 Aug 2017 18:25:34 -0400 Subject: [PATCH 176/318] Fix %_isa and add some missing Provides --- abrt.spec | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/abrt.spec b/abrt.spec index 8c5b01e..e81dac7 100644 --- a/abrt.spec +++ b/abrt.spec @@ -116,7 +116,7 @@ Requires: systemd-units %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} -Requires: %{name}-python3 = %{version}-%{release} +Requires: python3-%{name} = %{version}-%{release} Requires(pre): shadow-utils Requires: python3-augeas Requires: python3-dbus @@ -296,6 +296,8 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: systemd-python Requires: python2-abrt +# Remove before F30 +Provides: abrt-addon-python = %{version}-%{release} Provides: abrt-addon-python%{?_isa} = %{version}-%{release} Obsoletes: abrt-addon-python < %{version}-%{release} @@ -309,6 +311,10 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: python3-systemd Requires: python3-abrt +# Remove before F30 +Provides: abrt-addon-python3 = %{version}-%{release} +Provides: abrt-addon-python3%{?_isa} = %{version}-%{release} +Obsoletes: abrt-addon-python3 < %{version}-%{release} %description -n python3-abrt-addon This package contains python 3 hook and python analyzer plugin for handling @@ -465,6 +471,7 @@ Requires: dbus-python Requires: libreport-python %{?python_provide:%python_provide python2-abrt} # Remove before F30 +Provides: %{name}-python = %{version}-%{release} Provides: %{name}-python%{?_isa} = %{version}-%{release} Obsoletes: %{name}-python < %{version}-%{release} BuildRequires: python-nose @@ -483,7 +490,7 @@ BuildRequires: python2-devel Requires: %{name} = %{version}-%{release} Requires: python2-abrt = %{version}-%{release} # Remove before F30 -Provides: %{name}-python-doc%{?_isa} = %{version}-%{release} +Provides: %{name}-python-doc = %{version}-%{release} Obsoletes: %{name}-python-doc < %{version}-%{release} %description -n python2-abrt-doc @@ -499,6 +506,7 @@ Requires: python3-dbus Requires: libreport-python3 %{?python_provide:%python_provide python3-abrt} # Remove before F30 +Provides: %{name}-python3 = %{version}-%{release} Provides: %{name}-python3%{?_isa} = %{version}-%{release} Obsoletes: %{name}-python3 < %{version}-%{release} BuildRequires: python3-nose @@ -515,9 +523,9 @@ Group: Documentation BuildArch: noarch BuildRequires: python3-devel Requires: %{name} = %{version}-%{release} -Requires: %{name}-python3 = %{version}-%{release} +Requires: python3-%{name} = %{version}-%{release} # Remove before F30 -Provides: %{name}-python3-doc%{?_isa} = %{version}-%{release} +Provides: %{name}-python3-doc = %{version}-%{release} Obsoletes: %{name}-python3-doc < %{version}-%{release} %description -n python3-abrt-doc From d2918af2e6895b09610ecaa5992ded9c952bf684 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Mon, 28 Aug 2017 13:06:51 +0200 Subject: [PATCH 177/318] New version 2.10.4 Signed-off-by: Matej Habrnal --- .gitignore | 1 + ...uick-hack-to-fix-build-with-rpm-4.14.patch | 54 ------------------- abrt.spec | 23 +++++--- sources | 2 +- 4 files changed, 18 insertions(+), 62 deletions(-) delete mode 100644 0001-Quick-hack-to-fix-build-with-rpm-4.14.patch diff --git a/.gitignore b/.gitignore index ea3779c..5cab542 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.1.tar.gz /abrt-2.10.2.tar.gz /abrt-2.10.3.tar.gz +/abrt-2.10.4.tar.gz diff --git a/0001-Quick-hack-to-fix-build-with-rpm-4.14.patch b/0001-Quick-hack-to-fix-build-with-rpm-4.14.patch deleted file mode 100644 index ea52a98..0000000 --- a/0001-Quick-hack-to-fix-build-with-rpm-4.14.patch +++ /dev/null @@ -1,54 +0,0 @@ -From c01551e6e9fd293a3f40e481afe8c28e786fe632 Mon Sep 17 00:00:00 2001 -From: Panu Matilainen -Date: Fri, 11 Aug 2017 13:24:26 +0300 -Subject: [PATCH] Quick hack to fix build with rpm >= 4.14 - -1) rpm >= 4.14 no longer has rpmCheckTerminate() call, it cleans up - automatically on exit(). Note that "needing" rpmCheckTerminate() - means the code is buggy: it does not properly track and free - rpmdb iterators and/or rpmts handles. -2) pgpPubkeyFingerprint() now returns the actual fingerprint, the - key ID which it previously returned is now retrieved by - pgpPubkeyKeyID() - -If compatibility to older versions is needed, these will need -configure checks, left as an excercise for someone more familiar -with the abrt codebase. ---- - src/daemon/rpm.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c -index 36b36a91..011e44ca 100644 ---- a/src/daemon/rpm.c -+++ b/src/daemon/rpm.c -@@ -76,11 +76,14 @@ void rpm_destroy() - rpmFreeMacros(NULL); - rpmFreeRpmrc(); - -+/* rpm >= 4.14 handles this automatically on exit */ -+#if 0 - /* RPM doc says "clean up any open iterators and databases". - * Observed to eliminate these Berkeley DB warnings: - * "BDB2053 Freeing read locks for locker 0x1e0: 28718/139661746636736" - */ - rpmdbCheckTerminate(1); -+#endif - #endif - - list_free_with_free(list_fingerprints); -@@ -100,7 +103,11 @@ void rpm_load_gpgkey(const char* filename) - } - - uint8_t keyID[8]; -+#if 0 - if (pgpPubkeyFingerprint(pkt, pklen, keyID) == 0) -+#else -+ if (pgpPubkeyKeyID(pkt, pklen, keyID) == 0) -+#endif - { - char *fingerprint = pgpHexStr(keyID, sizeof(keyID)); - if (fingerprint != NULL) --- -2.14.0 - diff --git a/abrt.spec b/abrt.spec index e81dac7..3d0ebe1 100644 --- a/abrt.spec +++ b/abrt.spec @@ -54,13 +54,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.9.1 +%define libreport_ver 2.9.2 %define satyr_ver 0.22 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.3 -Release: 7%{?dist} +Version: 2.10.4 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -72,9 +72,6 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta # don't remove this patch, packages in rawhide are not signed! Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch -# Hacks for RPM 4.14 support -Patch1: 0001-Quick-hack-to-fix-build-with-rpm-4.14.patch - # '%%autosetup -S git' -> git BuildRequires: git @@ -85,7 +82,7 @@ BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel #why? BuildRequires: file-devel -BuildRequires: python-devel +BuildRequires: python2-devel BuildRequires: python3-devel BuildRequires: gettext BuildRequires: libxml2-devel @@ -469,6 +466,7 @@ Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: dbus-python Requires: libreport-python +Requires: python-gobject %{?python_provide:%python_provide python2-abrt} # Remove before F30 Provides: %{name}-python = %{version}-%{release} @@ -504,6 +502,7 @@ Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python3-dbus Requires: libreport-python3 +Requires: python3-gobject %{?python_provide:%python_provide python3-abrt} # Remove before F30 Provides: %{name}-python3 = %{version}-%{release} @@ -1170,6 +1169,16 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Aug 28 2017 Matej Habrnal 2.10.4-1 +- Translation updates +- logging: rename log() to log_warning() +- Quick hack to fix build with rpm >= 4.14 +- cli,dbus: Allow polkit to be optional at build time +- spec: add dependency for python{3}-gobject +- a-d-journal-core: fix bad condition in creating reason msg +- a-d-journal-core: use pid of crashed process in dumpdir name +- changelog: update CHANGELOG.md + * Wed Aug 16 2017 Zbigniew Jędrzejewski-Szmek - 2.10.3-7 - Python 2 binary package renamed to python2-abrt See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 diff --git a/sources b/sources index 8ac10eb..3c2b8b9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.3.tar.gz) = dac86703c60f1b56b8cfa7b2e400f5165a0ee9bd457667dec71981f9475b35552c80d5c5864de22414d83f4ce8ea29300d299f36e7fe4eb77a80112d6a1852ab +SHA512 (abrt-2.10.4.tar.gz) = f87fa0592867ef9c8543f066ffd9a0595941c14b4b0420746ebd7ca9e1335d45f0323d2e299778171031f0537e0e8da3dcfd33e3e6adae1cd76e33af7b131504 From 6a0f0e431aac043d4c491afa442c0dbe99f97f38 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Wed, 30 Aug 2017 14:35:12 +0200 Subject: [PATCH 178/318] Fix log renaming to log_warning Signed-off-by: Martin Kutlak --- ...ng-rename-omitted-log-to-log_warning.patch | 70 +++++++++++++++++++ abrt.spec | 6 +- 2 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 0001-logging-rename-omitted-log-to-log_warning.patch diff --git a/0001-logging-rename-omitted-log-to-log_warning.patch b/0001-logging-rename-omitted-log-to-log_warning.patch new file mode 100644 index 0000000..0a447e5 --- /dev/null +++ b/0001-logging-rename-omitted-log-to-log_warning.patch @@ -0,0 +1,70 @@ +From c9915e40c85d91d7434557419a5f9fde160e1e07 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Wed, 30 Aug 2017 11:16:15 +0200 +Subject: [PATCH] logging: rename omitted log() to log_warning() + +Some of the log() functions were omitted in commit f33b8731efedd7382e4f11d83e618a06d92a23ab. + +Signed-off-by: Martin Kutlak +--- + src/daemon/abrt-handle-upload.in | 2 +- + src/plugins/abrt-action-find-bodhi-update | 2 +- + src/plugins/abrt-action-install-debuginfo.in | 2 +- + src/plugins/abrt-action-ureport | 2 +- + 4 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/daemon/abrt-handle-upload.in b/src/daemon/abrt-handle-upload.in +index f31d3a1..469c2ae 100755 +--- a/src/daemon/abrt-handle-upload.in ++++ b/src/daemon/abrt-handle-upload.in +@@ -12,7 +12,7 @@ import shutil + import datetime + import grp + +-from reportclient import set_verbosity, error_msg_and_die, error_msg, log ++from reportclient import set_verbosity, error_msg_and_die, error_msg, log_warning + + GETTEXT_PROGNAME = "abrt" + import locale +diff --git a/src/plugins/abrt-action-find-bodhi-update b/src/plugins/abrt-action-find-bodhi-update +index 3bb96fc..0cae6cc 100755 +--- a/src/plugins/abrt-action-find-bodhi-update ++++ b/src/plugins/abrt-action-find-bodhi-update +@@ -40,7 +40,7 @@ import sys + from argparse import ArgumentParser + from subprocess import Popen, PIPE + +-from reportclient import (_, log, log1, set_verbosity, verbose, RETURN_OK, ++from reportclient import (_, log_warning, log1, set_verbosity, verbose, RETURN_OK, + RETURN_FAILURE, error_msg) + import report + +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index f2abf43..6269c22 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -11,7 +11,7 @@ import errno + import getopt + import reportclient + from subprocess import Popen, PIPE +-from reportclient import verbose, log, log1, log2, set_verbosity, error_msg_and_die, error_msg ++from reportclient import verbose, log_warning, log1, log2, set_verbosity, error_msg_and_die, error_msg + import time + from reportclient.debuginfo import DebugInfoDownload, filter_installed_debuginfos, build_ids_to_path, clean_up + import problem +diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport +index a7484c8..089eeb0 100755 +--- a/src/plugins/abrt-action-ureport ++++ b/src/plugins/abrt-action-ureport +@@ -11,7 +11,7 @@ import getopt + import augeas + + from report import dd_opendir, DD_FAIL_QUIETLY_ENOENT, run_event_on_problem_dir +-from reportclient import set_verbosity, error_msg_and_die, error_msg, log1, log ++from reportclient import set_verbosity, error_msg_and_die, error_msg, log1, log_warning + + GETTEXT_PROGNAME = "abrt" + import locale +-- +2.9.5 + diff --git a/abrt.spec b/abrt.spec index 3d0ebe1..3ff8a66 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -71,6 +71,7 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta # don't remove this patch, packages in rawhide are not signed! Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch +Patch1: 0001-logging-rename-omitted-log-to-log_warning.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -1169,6 +1170,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Aug 30 2017 Martin Kutlak 2.10.4-2 +- logging: rename omitted log() to log_warning() + * Mon Aug 28 2017 Matej Habrnal 2.10.4-1 - Translation updates - logging: rename log() to log_warning() From a074333d286d3d85fabaafacea8e4ee2ae6bf144 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Mon, 25 Sep 2017 09:46:59 +0200 Subject: [PATCH 179/318] Drop GPG check patch for unsigned packages Rawhide packages are signed. https://fedoraproject.org/wiki/Releases/Rawhide Signed-off-by: Martin Kutlak --- abrt.spec | 7 +++--- disable-OpenGPGCheck-in-Fedora-Rawhide.patch | 26 -------------------- 2 files changed, 4 insertions(+), 29 deletions(-) delete mode 100644 disable-OpenGPGCheck-in-Fedora-Rawhide.patch diff --git a/abrt.spec b/abrt.spec index 3ff8a66..4ffaf03 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,7 +60,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -69,8 +69,6 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta # 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 -# don't remove this patch, packages in rawhide are not signed! -Patch0: disable-OpenGPGCheck-in-Fedora-Rawhide.patch Patch1: 0001-logging-rename-omitted-log-to-log_warning.patch # '%%autosetup -S git' -> git @@ -1170,6 +1168,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Sep 27 2017 Martin Kutlak 2.10.4-3 +- Drop GPG check patch for unsigned packages + * Wed Aug 30 2017 Martin Kutlak 2.10.4-2 - logging: rename omitted log() to log_warning() diff --git a/disable-OpenGPGCheck-in-Fedora-Rawhide.patch b/disable-OpenGPGCheck-in-Fedora-Rawhide.patch deleted file mode 100644 index f88c86d..0000000 --- a/disable-OpenGPGCheck-in-Fedora-Rawhide.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 1ef034096efe367af85f568bc982af969124003b Mon Sep 17 00:00:00 2001 -From: rpm-build -Date: Mon, 10 Feb 2014 09:39:07 +0100 -Subject: [PATCH] disable OpenGPGCheck in Fedora Rawhide - -Packages in Fedora Rawhide are not signed. ---- - 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 3d35bb6..e3f724a 100644 ---- a/src/daemon/abrt-action-save-package-data.conf -+++ b/src/daemon/abrt-action-save-package-data.conf -@@ -3,7 +3,7 @@ - # Product Signing (GPG) Keys: - # https://access.redhat.com/security/team/key - # --OpenGPGCheck = yes -+OpenGPGCheck = no - - # Blacklisted packages - # --- -1.8.3.1 - From 85802ca9d7307ce8d954d31332c17e16ef61ec11 Mon Sep 17 00:00:00 2001 From: Julius Milan Date: Thu, 2 Nov 2017 19:53:05 +0100 Subject: [PATCH 180/318] New version 2.10.5 Signed-off-by: Julius Milan --- .gitignore | 1 + ...ng-rename-omitted-log-to-log_warning.patch | 70 ------------------- abrt.spec | 27 ++++--- sources | 2 +- 4 files changed, 21 insertions(+), 79 deletions(-) delete mode 100644 0001-logging-rename-omitted-log-to-log_warning.patch diff --git a/.gitignore b/.gitignore index 5cab542..1d4a538 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.2.tar.gz /abrt-2.10.3.tar.gz /abrt-2.10.4.tar.gz +/abrt-2.10.5.tar.gz diff --git a/0001-logging-rename-omitted-log-to-log_warning.patch b/0001-logging-rename-omitted-log-to-log_warning.patch deleted file mode 100644 index 0a447e5..0000000 --- a/0001-logging-rename-omitted-log-to-log_warning.patch +++ /dev/null @@ -1,70 +0,0 @@ -From c9915e40c85d91d7434557419a5f9fde160e1e07 Mon Sep 17 00:00:00 2001 -From: Martin Kutlak -Date: Wed, 30 Aug 2017 11:16:15 +0200 -Subject: [PATCH] logging: rename omitted log() to log_warning() - -Some of the log() functions were omitted in commit f33b8731efedd7382e4f11d83e618a06d92a23ab. - -Signed-off-by: Martin Kutlak ---- - src/daemon/abrt-handle-upload.in | 2 +- - src/plugins/abrt-action-find-bodhi-update | 2 +- - src/plugins/abrt-action-install-debuginfo.in | 2 +- - src/plugins/abrt-action-ureport | 2 +- - 4 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/src/daemon/abrt-handle-upload.in b/src/daemon/abrt-handle-upload.in -index f31d3a1..469c2ae 100755 ---- a/src/daemon/abrt-handle-upload.in -+++ b/src/daemon/abrt-handle-upload.in -@@ -12,7 +12,7 @@ import shutil - import datetime - import grp - --from reportclient import set_verbosity, error_msg_and_die, error_msg, log -+from reportclient import set_verbosity, error_msg_and_die, error_msg, log_warning - - GETTEXT_PROGNAME = "abrt" - import locale -diff --git a/src/plugins/abrt-action-find-bodhi-update b/src/plugins/abrt-action-find-bodhi-update -index 3bb96fc..0cae6cc 100755 ---- a/src/plugins/abrt-action-find-bodhi-update -+++ b/src/plugins/abrt-action-find-bodhi-update -@@ -40,7 +40,7 @@ import sys - from argparse import ArgumentParser - from subprocess import Popen, PIPE - --from reportclient import (_, log, log1, set_verbosity, verbose, RETURN_OK, -+from reportclient import (_, log_warning, log1, set_verbosity, verbose, RETURN_OK, - RETURN_FAILURE, error_msg) - import report - -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index f2abf43..6269c22 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -11,7 +11,7 @@ import errno - import getopt - import reportclient - from subprocess import Popen, PIPE --from reportclient import verbose, log, log1, log2, set_verbosity, error_msg_and_die, error_msg -+from reportclient import verbose, log_warning, log1, log2, set_verbosity, error_msg_and_die, error_msg - import time - from reportclient.debuginfo import DebugInfoDownload, filter_installed_debuginfos, build_ids_to_path, clean_up - import problem -diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport -index a7484c8..089eeb0 100755 ---- a/src/plugins/abrt-action-ureport -+++ b/src/plugins/abrt-action-ureport -@@ -11,7 +11,7 @@ import getopt - import augeas - - from report import dd_opendir, DD_FAIL_QUIETLY_ENOENT, run_event_on_problem_dir --from reportclient import set_verbosity, error_msg_and_die, error_msg, log1, log -+from reportclient import set_verbosity, error_msg_and_die, error_msg, log1, log_warning - - GETTEXT_PROGNAME = "abrt" - import locale --- -2.9.5 - diff --git a/abrt.spec b/abrt.spec index 4ffaf03..fab1d0a 100644 --- a/abrt.spec +++ b/abrt.spec @@ -54,13 +54,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.9.2 -%define satyr_ver 0.22 +%define libreport_ver 2.9.3 +%define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.4 -Release: 3%{?dist} +Version: 2.10.5 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -69,8 +69,6 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta # 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 -Patch1: 0001-logging-rename-omitted-log-to-log_warning.patch - # '%%autosetup -S git' -> git BuildRequires: git @@ -465,7 +463,7 @@ Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: dbus-python Requires: libreport-python -Requires: python-gobject +Requires: python2-gobject-base %{?python_provide:%python_provide python2-abrt} # Remove before F30 Provides: %{name}-python = %{version}-%{release} @@ -501,12 +499,12 @@ Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python3-dbus Requires: libreport-python3 -Requires: python3-gobject %{?python_provide:%python_provide python3-abrt} # Remove before F30 Provides: %{name}-python3 = %{version}-%{release} Provides: %{name}-python3%{?_isa} = %{version}-%{release} Obsoletes: %{name}-python3 < %{version}-%{release} +Requires: python3-gobject-base BuildRequires: python3-nose BuildRequires: python3-sphinx BuildRequires: libreport-python3 @@ -1168,6 +1166,19 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Nov 02 2017 Julius Milan 2.10.5-1 +- Translation updates +- a-action-ureport: add option 'ProcessUnpackaged' +- spec: change dependency on python{2,3}-gobject +- applet: Additional changes to allow optional polkit +- doc: remove obsolete doxygen tags +- dbus: Additional changes to allow optional polkit +- cli-ng: Explicitly state python version in shebangs +- spec: rename python binary packages +- a-d-journal-core: Save mountinfo from journal +- a-d-journal-core: Save container cmdline +- logging: rename omitted log() to log_warning() + * Wed Sep 27 2017 Martin Kutlak 2.10.4-3 - Drop GPG check patch for unsigned packages diff --git a/sources b/sources index 3c2b8b9..fab8148 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.4.tar.gz) = f87fa0592867ef9c8543f066ffd9a0595941c14b4b0420746ebd7ca9e1335d45f0323d2e299778171031f0537e0e8da3dcfd33e3e6adae1cd76e33af7b131504 +SHA512 (abrt-2.10.5.tar.gz) = 6e334b045efa18f8200447eb142f54d4f68b39d5a470c30b7272778a3ab22c1b55c222fae8657d86e6c78dfd3070f3ddb68f25ee6ca5ca0be4c5463239cbf0ef From 37ad20102eb1f79bbba661bf39a38d97298d22d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sun, 10 Dec 2017 20:50:30 +0100 Subject: [PATCH 181/318] Rebuilt for libjson-c.so.3 --- abrt-2.10.5_json-c_013.patch | 39 ++++++++++++++++++++++++++++++++++ abrt.spec | 41 +++++++++++++++++++----------------- 2 files changed, 61 insertions(+), 19 deletions(-) create mode 100644 abrt-2.10.5_json-c_013.patch diff --git a/abrt-2.10.5_json-c_013.patch b/abrt-2.10.5_json-c_013.patch new file mode 100644 index 0000000..fc7f80a --- /dev/null +++ b/abrt-2.10.5_json-c_013.patch @@ -0,0 +1,39 @@ +From 395bbb2cbd9a12ff11068ea29922e1575d4d93b3 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= +Date: Sun, 10 Dec 2017 22:59:33 +0100 +Subject: [PATCH] Fix build against libjson-c.so.3 + +--- + src/daemon/abrt-action-save-container-data.c | 2 +- + src/plugins/bodhi.c | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/daemon/abrt-action-save-container-data.c b/src/daemon/abrt-action-save-container-data.c +index 5d8cdb7..9a5bfa4 100644 +--- a/src/daemon/abrt-action-save-container-data.c ++++ b/src/daemon/abrt-action-save-container-data.c +@@ -141,7 +141,7 @@ void dump_docker_info(struct dump_dir *dd, const char *root_dir) + json = json_tokener_parse(output); + free(output); + +- if (is_error(json)) ++ if (json == NULL) + { + error_msg("Unable parse response from docker"); + goto dump_docker_info_cleanup; +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index 84ed4d8..14d65ad 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -419,7 +419,7 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) + // log_warning("%s", post_state->body); + + json_object *json = json_tokener_parse(post_state->body); +- if (is_error(json)) ++ if (json == NULL) + error_msg_and_die("fatal: unable parse response from bodhi server"); + + /* we must check the http_resp_code because only error responses contain +-- +2.15.1 + diff --git a/abrt.spec b/abrt.spec index fab1d0a..3aa6642 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1,7 +1,3 @@ -%{!?python_site: %global python_site %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} -# platform-dependent -%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} - # http://fedoraproject.org/wiki/Packaging:Guidelines#PIE # http://fedoraproject.org/wiki/Hardened_Packages %global _hardened_build 1 @@ -25,23 +21,23 @@ %bcond_without atomic %ifarch aarch64 -%define have_kexec_tools 0 +%global have_kexec_tools 0 %else -%define have_kexec_tools 1 +%global have_kexec_tools 1 %endif # rpmbuild --define 'desktopvendor mystring' %if "x%{desktopvendor}" == "x" %if %{with systemd} - %define desktopvendor %(source /etc/os-release; echo ${ID}) + %global desktopvendor %(source /etc/os-release; echo ${ID}) %else %if 0%{?rhel} >= 6 - %define desktopvendor redhat + %global desktopvendor redhat %else %if 0%{?suse_version} - %define desktopvendor suse + %global desktopvendor suse %else - %define desktopvendor fedora + %global desktopvendor fedora %endif %endif %endif @@ -49,23 +45,27 @@ # do not append package version to doc directory of subpackages in F20 and later; rhbz#993656 %if "%{_pkgdocdir}" == "%{_docdir}/%{name}" - %define docdirversion %{nil} + %global docdirversion %{nil} %else - %define docdirversion -%{version} + %global docdirversion -%{version} %endif -%define libreport_ver 2.9.3 -%define satyr_ver 0.24 +%global libreport_ver 2.9.3 +%global satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +# Needed for libjson-c.so.3*. +# See: https://github.com/json-c/json-c/issues/304 +Patch0: abrt-2.10.5_json-c_013.patch + # 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 @@ -542,9 +542,9 @@ to the shell # Default '__scm_apply_git' is 'git apply && git commit' but this workflow # doesn't allow us to create a new file within a patch, so we have to use # 'git am' (see /usr/lib/rpm/macros for more details) -#%%define __scm_apply_git(qp:m:) %%{__git} am -%define __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex -%autosetup -S git +#%%global __scm_apply_git(qp:m:) %%{__git} am +%global __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex +%autosetup -S git -p 1 %build autoreconf --force --install @@ -605,7 +605,7 @@ make check %pre #uidgid pair 173:173 reserved in setup rhbz#670231 -%define abrt_gid_uid 173 +%global abrt_gid_uid 173 getent group abrt >/dev/null || groupadd -f -g %{abrt_gid_uid} --system abrt getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d /etc/abrt -s /sbin/nologin abrt exit 0 @@ -1166,6 +1166,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sun Dec 10 2017 Björn Esser - 2.10.5-2 +- Rebuilt for libjson-c.so.3 + * Thu Nov 02 2017 Julius Milan 2.10.5-1 - Translation updates - a-action-ureport: add option 'ProcessUnpackaged' From d663542b406dd29c2ef93803e69c3779d65301e4 Mon Sep 17 00:00:00 2001 From: Iryna Shcherbina Date: Mon, 11 Dec 2017 14:39:41 +0100 Subject: [PATCH 182/318] Fix ambiguous Python 2 dependency declarations --- abrt.spec | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/abrt.spec b/abrt.spec index 3aa6642..c7ca38f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -56,7 +56,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -91,15 +91,15 @@ BuildRequires: doxygen BuildRequires: xmlto BuildRequires: libreport-devel >= %{libreport_ver} BuildRequires: satyr-devel >= %{satyr_ver} -BuildRequires: systemd-python +BuildRequires: python2-systemd BuildRequires: python3-systemd BuildRequires: augeas BuildRequires: libselinux-devel BuildRequires: python2-argcomplete BuildRequires: python3-argcomplete -BuildRequires: python-argh +BuildRequires: python2-argh BuildRequires: python3-argh -BuildRequires: python-humanize +BuildRequires: python2-humanize BuildRequires: python3-humanize Requires: libreport >= %{libreport_ver} @@ -288,7 +288,7 @@ Search for a new updates in bodhi server. Summary: %{name}'s addon for catching and analyzing Python exceptions Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -Requires: systemd-python +Requires: python2-systemd Requires: python2-abrt # Remove before F30 Provides: abrt-addon-python = %{version}-%{release} @@ -352,9 +352,9 @@ Requires: abrt-libs = %{version}-%{release} Requires: abrt-dbus Requires: python2-abrt Requires: abrt-addon-ccpp -Requires: python-argh +Requires: python2-argh Requires: python2-argcomplete -Requires: python-humanize +Requires: python2-humanize Requires: /usr/bin/register-python-argcomplete %description cli-ng @@ -461,17 +461,17 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} -Requires: dbus-python -Requires: libreport-python +Requires: python2-dbus +Requires: python2-libreport Requires: python2-gobject-base %{?python_provide:%python_provide python2-abrt} # Remove before F30 Provides: %{name}-python = %{version}-%{release} Provides: %{name}-python%{?_isa} = %{version}-%{release} Obsoletes: %{name}-python < %{version}-%{release} -BuildRequires: python-nose -BuildRequires: python-sphinx -BuildRequires: libreport-python +BuildRequires: python2-nose +BuildRequires: python2-sphinx +BuildRequires: python2-libreport %description -n python2-abrt High-level API for querying, creating and manipulating @@ -1166,6 +1166,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Dec 11 2017 Iryna Shcherbina - 2.10.5-3 +- Fix ambiguous Python 2 dependency declarations + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + * Sun Dec 10 2017 Björn Esser - 2.10.5-2 - Rebuilt for libjson-c.so.3 From 4684ea4866fe789cc5346d5fc008cac4fe55cc96 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 5 Jan 2018 23:23:42 +0100 Subject: [PATCH 183/318] Remove obsolete scriptlets Signed-off-by: Igor Gnatenko --- abrt.spec | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/abrt.spec b/abrt.spec index c7ca38f..c6e04f4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -56,7 +56,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.5 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -739,12 +739,6 @@ fi %postun gui-libs -p /sbin/ldconfig -%postun gui -if [ $1 -eq 0 ] ; then - touch --no-create %{_datadir}/icons/hicolor &>/dev/null - gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : -fi - %posttrans service abrtd condrestart >/dev/null 2>&1 || : @@ -793,9 +787,6 @@ service abrt-pstoreoops condrestart >/dev/null 2>&1 || : %posttrans addon-upload-watch service abrt-upload-watch condrestart >/dev/null 2>&1 || : -%posttrans gui -gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - %posttrans dbus # Force abrt-dbus to restart like we do with the other services killall abrt-dbus >/dev/null 2>&1 || : @@ -1166,6 +1157,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jan 05 2018 Igor Gnatenko - 2.10.5-4 +- Remove obsolete scriptlets + * Mon Dec 11 2017 Iryna Shcherbina - 2.10.5-3 - Fix ambiguous Python 2 dependency declarations (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) From 09e4addde4a49c0ff00b49e511cd4eef971106d3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 01:46:08 +0000 Subject: [PATCH 184/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index c6e04f4..002d290 100644 --- a/abrt.spec +++ b/abrt.spec @@ -56,7 +56,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.5 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1157,6 +1157,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 2.10.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Jan 05 2018 Igor Gnatenko - 2.10.5-4 - Remove obsolete scriptlets From 7b19a66f3c0069ca041528baa412a1573892af52 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 9 Feb 2018 09:04:06 +0100 Subject: [PATCH 185/318] Escape macros in %changelog Reference: https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/Y2ZUKK2B7T2IKXPMODNF6HB2O5T5TS6H/ Signed-off-by: Igor Gnatenko --- abrt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index 002d290..1903183 100644 --- a/abrt.spec +++ b/abrt.spec @@ -56,7 +56,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.5 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1157,6 +1157,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Feb 09 2018 Igor Gnatenko - 2.10.5-6 +- Escape macros in %%changelog + * Wed Feb 07 2018 Fedora Release Engineering - 2.10.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild @@ -1384,7 +1387,7 @@ killall abrt-dbus >/dev/null 2>&1 || : - Resolves: #1308840 * Wed Feb 10 2016 Matej Habrnal 2.8.0-2 -- drop %e from the core_pattern +- drop %%e from the core_pattern * Wed Feb 03 2016 Matej Habrnal 2.8.0-1 - a-a-save-package-data: do not blacklist firefox From 6b7ef257424dc49d43d26ec5fcb8d5c1a3343c31 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:00:48 +0100 Subject: [PATCH 186/318] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- abrt.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 1903183..25d1df1 100644 --- a/abrt.spec +++ b/abrt.spec @@ -108,7 +108,6 @@ Requires: satyr >= %{satyr_ver} %if %{with systemd} Requires: systemd-units %endif -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} Requires: python3-%{name} = %{version}-%{release} Requires(pre): shadow-utils From e06dcb57e76b324db15a33e6b582114c70d42d6b Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 21 Feb 2018 16:34:57 +0100 Subject: [PATCH 187/318] New version 2.10.6 Signed-off-by: Matej Habrnal --- .gitignore | 1 + ...er-workaround-permission-issue-in-mi.patch | 76 +++++++++ abrt-2.10.5_json-c_013.patch | 39 ----- abrt.spec | 151 ++++++++---------- sources | 2 +- 5 files changed, 145 insertions(+), 124 deletions(-) create mode 100644 0001-a-container-logger-workaround-permission-issue-in-mi.patch delete mode 100644 abrt-2.10.5_json-c_013.patch diff --git a/.gitignore b/.gitignore index 1d4a538..3830f87 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.3.tar.gz /abrt-2.10.4.tar.gz /abrt-2.10.5.tar.gz +/abrt-2.10.6.tar.gz diff --git a/0001-a-container-logger-workaround-permission-issue-in-mi.patch b/0001-a-container-logger-workaround-permission-issue-in-mi.patch new file mode 100644 index 0000000..1dcef9e --- /dev/null +++ b/0001-a-container-logger-workaround-permission-issue-in-mi.patch @@ -0,0 +1,76 @@ +From 578317a67c0f30469c28752ea2f40ae87a1a356c Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 21 Feb 2018 16:14:36 +0100 +Subject: [PATCH] a-container-logger: workaround permission issue in minishift + +This workarounds the following issue: +https://github.com/minishift/minishift/issues/2058 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-container-logger.c | 27 +++++++++++++++++++++++---- + 1 file changed, 23 insertions(+), 4 deletions(-) + +diff --git a/src/plugins/abrt-container-logger.c b/src/plugins/abrt-container-logger.c +index 2f9488a3..df40f562 100644 +--- a/src/plugins/abrt-container-logger.c ++++ b/src/plugins/abrt-container-logger.c +@@ -15,6 +15,7 @@ + + #include + #include ++#include + + #define INIT_PROC_STDERR_FD_PATH "/proc/1/fd/2" + +@@ -25,7 +26,6 @@ int main(int argc, char *argv[]) + "\n" + "\nThe tool reads from standard input and writes to '"INIT_PROC_STDERR_FD_PATH"'"; + +- /* the tool expects one parameter STR */ + if (argc > 1) + { + fprintf(stderr, "%s\n", program_usage_string); +@@ -35,9 +35,27 @@ int main(int argc, char *argv[]) + FILE *f = fopen(INIT_PROC_STDERR_FD_PATH, "w"); + if (f == NULL) + { +- perror("Failed to open '"INIT_PROC_STDERR_FD_PATH"'"); +- return 2; ++ perror("Failed to open '"INIT_PROC_STDERR_FD_PATH"' as root"); ++ ++ /* Try to open the 'INIT_PROC_STDERR_FD_PATH' as normal user because of ++ https://github.com/minishift/minishift/issues/2058 ++ */ ++ if (seteuid(getuid()) == 0) ++ { ++ f = fopen(INIT_PROC_STDERR_FD_PATH, "w"); ++ if (f == NULL) ++ { ++ perror("Failed to open '"INIT_PROC_STDERR_FD_PATH"' as user"); ++ return 2; ++ } ++ } ++ else ++ { ++ perror("Failed to setuid"); ++ return 3; ++ } + } ++ + setvbuf (f, NULL, _IONBF, 0); + + char buffer[BUFSIZ]; +@@ -52,7 +70,8 @@ int main(int argc, char *argv[]) + if (fwrite(buffer, bytes_read, 1, f) != 1) + { + perror("Failed to write to '"INIT_PROC_STDERR_FD_PATH"'"); +- return 3; ++ fclose(f); ++ return 4; + } + } + fclose(f); +-- +2.14.3 + diff --git a/abrt-2.10.5_json-c_013.patch b/abrt-2.10.5_json-c_013.patch deleted file mode 100644 index fc7f80a..0000000 --- a/abrt-2.10.5_json-c_013.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 395bbb2cbd9a12ff11068ea29922e1575d4d93b3 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= -Date: Sun, 10 Dec 2017 22:59:33 +0100 -Subject: [PATCH] Fix build against libjson-c.so.3 - ---- - src/daemon/abrt-action-save-container-data.c | 2 +- - src/plugins/bodhi.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/daemon/abrt-action-save-container-data.c b/src/daemon/abrt-action-save-container-data.c -index 5d8cdb7..9a5bfa4 100644 ---- a/src/daemon/abrt-action-save-container-data.c -+++ b/src/daemon/abrt-action-save-container-data.c -@@ -141,7 +141,7 @@ void dump_docker_info(struct dump_dir *dd, const char *root_dir) - json = json_tokener_parse(output); - free(output); - -- if (is_error(json)) -+ if (json == NULL) - { - error_msg("Unable parse response from docker"); - goto dump_docker_info_cleanup; -diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c -index 84ed4d8..14d65ad 100644 ---- a/src/plugins/bodhi.c -+++ b/src/plugins/bodhi.c -@@ -419,7 +419,7 @@ static GHashTable *bodhi_query_list(const char *query, const char *release) - // log_warning("%s", post_state->body); - - json_object *json = json_tokener_parse(post_state->body); -- if (is_error(json)) -+ if (json == NULL) - error_msg_and_die("fatal: unable parse response from bodhi server"); - - /* we must check the http_resp_code because only error responses contain --- -2.15.1 - diff --git a/abrt.spec b/abrt.spec index 25d1df1..2103c09 100644 --- a/abrt.spec +++ b/abrt.spec @@ -2,21 +2,6 @@ # http://fedoraproject.org/wiki/Hardened_Packages %global _hardened_build 1 -%if 0%{?fedora} >= 14 - %bcond_without systemd -%else - %bcond_with systemd -%endif - -# systemd wasn't set by the code above - so we're on old Fedora or we're not on Fedora at all -%if %{without systemd} - %if 0%{?rhel} >= 7 - %bcond_without systemd - %else - %bcond_with systemd - %endif -%endif - # build abrt-atomic subpackage %bcond_without atomic @@ -28,19 +13,7 @@ # rpmbuild --define 'desktopvendor mystring' %if "x%{desktopvendor}" == "x" - %if %{with systemd} - %global desktopvendor %(source /etc/os-release; echo ${ID}) - %else - %if 0%{?rhel} >= 6 - %global desktopvendor redhat - %else - %if 0%{?suse_version} - %global desktopvendor suse - %else - %global desktopvendor fedora - %endif - %endif - %endif + %define desktopvendor %(source /etc/os-release; echo ${ID}) %endif # do not append package version to doc directory of subpackages in F20 and later; rhbz#993656 @@ -55,19 +28,16 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.5 -Release: 6%{?dist} +Version: 2.10.6 +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -# Needed for libjson-c.so.3*. -# See: https://github.com/json-c/json-c/issues/304 -Patch0: abrt-2.10.5_json-c_013.patch - # 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-a-container-logger-workaround-permission-issue-in-mi.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -105,9 +75,7 @@ BuildRequires: python3-humanize Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} -%if %{with systemd} Requires: systemd-units -%endif Requires: %{name}-libs = %{version}-%{release} Requires: python3-%{name} = %{version}-%{release} Requires(pre): shadow-utils @@ -117,6 +85,35 @@ Requires: python3-dmidecode Requires: libreport-plugin-ureport >= %{libreport_ver} Requires: libreport-plugin-systemd-journal +#gui +BuildRequires: libreport-gtk-devel >= %{libreport_ver} +BuildRequires: gsettings-desktop-schemas-devel >= 3.15 +#addon-ccpp +BuildRequires: gdb-headless +BuildRequires: libcap-devel +#addon-kerneloops +BuildRequires: systemd-devel +# plugin-bodhi +BuildRequires: json-c-devel +BuildRequires: libreport-web-devel >= %{libreport_ver} +#desktop +#Default config of addon-ccpp requires gdb +BuildRequires: gdb-headless +#dbus +BuildRequires: polkit-devel +#python2-abrt +BuildRequires: python-nose +BuildRequires: python-sphinx +BuildRequires: libreport-python +#python2-abrt-doc +BuildRequires: python2-devel +#python3-abrt +BuildRequires: python3-nose +BuildRequires: python3-sphinx +BuildRequires: libreport-python3 +#python3-abrt-doc +BuildRequires: python3-devel + %description %{name} is a tool to help users to detect defects in applications and to create a bug report with all information needed by maintainer to fix it. @@ -159,8 +156,6 @@ Requires: %{name} = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: gnome-abrt Requires: gsettings-desktop-schemas >= 3.15 -BuildRequires: libreport-gtk-devel >= %{libreport_ver} -BuildRequires: gsettings-desktop-schemas-devel >= 3.15 # we used to have abrt-applet, now abrt-gui includes it: Provides: abrt-applet = %{version}-%{release} Obsoletes: abrt-applet < 0.0.5 @@ -183,8 +178,6 @@ This package contains hook for C/C++ crashed programs. Summary: %{name}'s C/C++ addon Group: System Environment/Libraries Requires: cpio -BuildRequires: gdb-headless -BuildRequires: libcap-devel Requires: gdb-headless Requires: elfutils %if 0%{!?rhel:1} @@ -222,7 +215,6 @@ which is able to analyze C/C++ crashes remotely. %package addon-kerneloops Summary: %{name}'s kerneloops addon Group: System Environment/Libraries -BuildRequires: systemd-devel Requires: curl Requires: %{name} = %{version}-%{release} %if 0%{!?rhel:1} @@ -273,10 +265,8 @@ This package contains plugin for collecting kernel oopses from pstore storage. %package plugin-bodhi Summary: %{name}'s bodhi plugin -BuildRequires: json-c-devel Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -BuildRequires: libreport-web-devel >= %{libreport_ver} Obsoletes: libreport-plugin-bodhi > 0.0.1 Provides: libreport-plugin-bodhi = %{version}-%{release} @@ -313,6 +303,14 @@ Obsoletes: abrt-addon-python3 < %{version}-%{release} This package contains python 3 hook and python analyzer plugin for handling uncaught exception in python 3 programs. +%package -n python3-abrt-container-addon +Summary: %{name}'s container addon for catching Python 3 exceptions +Conflicts: python3-abrt-addon + +%description -n python3-abrt-container-addon +This package contains python 3 hook and handling uncaught exception in python 3 +programs in container. + %package plugin-sosreport Summary: %{name}'s plugin for building automatic sosreports Requires: sos @@ -407,7 +405,6 @@ Requires: abrt-addon-ccpp Requires: python3-abrt-addon Requires: abrt-addon-xorg # Default config of addon-ccpp requires gdb -BuildRequires: gdb-headless Requires: gdb-headless Requires: elfutils Requires: abrt-gui @@ -446,7 +443,6 @@ hosts. Summary: ABRT DBus service Group: Applications/System Requires: %{name} = %{version}-%{release} -BuildRequires: polkit-devel Requires: abrt-libs = %{version}-%{release} %description dbus @@ -468,9 +464,6 @@ Requires: python2-gobject-base Provides: %{name}-python = %{version}-%{release} Provides: %{name}-python%{?_isa} = %{version}-%{release} Obsoletes: %{name}-python < %{version}-%{release} -BuildRequires: python2-nose -BuildRequires: python2-sphinx -BuildRequires: python2-libreport %description -n python2-abrt High-level API for querying, creating and manipulating @@ -480,7 +473,6 @@ problems handled by ABRT in Python. Summary: ABRT Python API Documentation Group: Documentation BuildArch: noarch -BuildRequires: python2-devel Requires: %{name} = %{version}-%{release} Requires: python2-abrt = %{version}-%{release} # Remove before F30 @@ -504,9 +496,6 @@ Provides: %{name}-python3 = %{version}-%{release} Provides: %{name}-python3%{?_isa} = %{version}-%{release} Obsoletes: %{name}-python3 < %{version}-%{release} Requires: python3-gobject-base -BuildRequires: python3-nose -BuildRequires: python3-sphinx -BuildRequires: libreport-python3 %description -n python3-abrt High-level API for querying, creating and manipulating @@ -516,7 +505,6 @@ problems handled by ABRT in Python 3. Summary: ABRT Python API Documentation Group: Documentation BuildArch: noarch -BuildRequires: python3-devel Requires: %{name} = %{version}-%{release} Requires: python3-%{name} = %{version}-%{release} # Remove before F30 @@ -579,7 +567,6 @@ find $RPM_BUILD_ROOT -name "*.py[co]" -delete # remove all .la and .a files find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f -mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt @@ -730,6 +717,10 @@ fi %systemd_postun_with_restart abrt-coredump-helper.service %endif +%if 0%{?fedora} > 27 +# ldconfig and gtk-update-icon-cache is not needed +%else + %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -737,6 +728,7 @@ fi %post gui-libs -p /sbin/ldconfig %postun gui-libs -p /sbin/ldconfig +%endif %posttrans service abrtd condrestart >/dev/null 2>&1 || : @@ -793,12 +785,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %files -f %{name}.lang %doc README.md COPYING -%if %{with systemd} %{_unitdir}/abrtd.service %{_tmpfilesdir}/abrt.conf -%else -%{_initrddir}/abrtd -%endif %{_sbindir}/abrtd %{_sbindir}/abrt-server %{_sbindir}/abrt-auto-reporting @@ -905,12 +893,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_journalcatalogdir}/abrt_ccpp.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_ccpp_format.conf %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_journal_ccpp_format.conf -%if %{with systemd} %{_unitdir}/abrt-ccpp.service %{_unitdir}/abrt-journal-core.service -%else -%{_initrddir}/abrt-ccpp -%endif %dir %{_localstatedir}/lib/abrt @@ -957,11 +941,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %files addon-upload-watch %{_sbindir}/abrt-upload-watch -%if %{with systemd} %{_unitdir}/abrt-upload-watch.service -%else -%{_initrddir}/abrt-upload-watch -%endif %{_mandir}/man*/abrt-upload-watch.* @@ -979,11 +959,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/koops_event.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/plugins/oops.conf %{_datadir}/%{name}/conf.d/plugins/oops.conf -%if %{with systemd} %{_unitdir}/abrt-oops.service -%else -%{_initrddir}/abrt-oops -%endif %dir %{_localstatedir}/lib/abrt @@ -1000,11 +976,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_journalcatalogdir}/abrt_xorg.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_xorg_format.conf %{_mandir}/man5/xorg_event.conf.5* -%if %{with systemd} %{_unitdir}/abrt-xorg.service -%else -%{_initrddir}/abrt-xorg -%endif %{_bindir}/abrt-dump-xorg %{_bindir}/abrt-dump-journal-xorg %{_mandir}/man1/abrt-dump-xorg.1* @@ -1017,11 +989,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/%{name}/plugins/vmcore.conf %{_datadir}/%{name}/conf.d/plugins/vmcore.conf %{_datadir}/libreport/events/analyze_VMcore.xml -%if %{with systemd} %{_unitdir}/abrt-vmcore.service -%else -%{_initrddir}/abrt-vmcore -%endif %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore %{_bindir}/abrt-action-check-oops-for-hw-error @@ -1035,11 +1003,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %endif %files addon-pstoreoops -%if %{with systemd} %{_unitdir}/abrt-pstoreoops.service -%else -%{_initrddir}/abrt-pstoreoops -%endif %{_sbindir}/abrt-harvest-pstoreoops %{_bindir}/abrt-merge-pstoreoops %{_mandir}/man1/abrt-harvest-pstoreoops.1* @@ -1065,8 +1029,15 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_journalcatalogdir}/abrt_python3.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf %{_mandir}/man5/python3_event.conf.5* -%{python3_sitearch}/abrt* -%{python3_sitearch}/__pycache__/abrt* +%{python3_sitearch}/abrt3.pth +%{python3_sitearch}/abrt_exception_handler3.py +%{python3_sitearch}/__pycache__/abrt_exception_handler3.* + +%files -n python3-abrt-container-addon +%{python3_sitearch}/abrt3_container.pth +%{python3_sitearch}/abrt_exception_handler3_container.py +%{python3_sitearch}/__pycache__/abrt_exception_handler3_container.* +%attr(6755, root, root) %{_libexecdir}/abrt-container-logger %files plugin-sosreport %defattr(-,root,root,-) @@ -1156,6 +1127,18 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Feb 19 2018 Matej Habrnal 2.10.6-2 +- Translation updates +- hooks: introduce docker hook for Python3 +- Remove deprecated is_error macro +- ldconfig is not needed in rawhide +- remove python_sitearch macro +- remove python_site macro +- move BuildRequires to top +- remove systemd-units and replace it with systemd macro +- remove init.d services +- a-h-event: Do not deduplicate different containers + * Fri Feb 09 2018 Igor Gnatenko - 2.10.5-6 - Escape macros in %%changelog diff --git a/sources b/sources index fab8148..8467ed0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.5.tar.gz) = 6e334b045efa18f8200447eb142f54d4f68b39d5a470c30b7272778a3ab22c1b55c222fae8657d86e6c78dfd3070f3ddb68f25ee6ca5ca0be4c5463239cbf0ef +SHA512 (abrt-2.10.6.tar.gz) = 4c47aec3ace8033be954cc75f500d7394a77a3dd2511cabbe1706615907d4d6a4f89da1aec6d4ebc9519e47058ae139fbac40eab47048572a34ea52da528f700 From dc422cf7ed84cfeaba21bc7cb2c37dd618046eb1 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Mon, 26 Feb 2018 15:27:37 +0100 Subject: [PATCH 188/318] New version 2.10.7 Signed-off-by: Matej Habrnal --- .gitignore | 1 + ...er-workaround-permission-issue-in-mi.patch | 76 ------------------- abrt.spec | 24 +++++- sources | 2 +- 4 files changed, 22 insertions(+), 81 deletions(-) delete mode 100644 0001-a-container-logger-workaround-permission-issue-in-mi.patch diff --git a/.gitignore b/.gitignore index 3830f87..89a39ce 100644 --- a/.gitignore +++ b/.gitignore @@ -58,3 +58,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.4.tar.gz /abrt-2.10.5.tar.gz /abrt-2.10.6.tar.gz +/abrt-2.10.7.tar.gz diff --git a/0001-a-container-logger-workaround-permission-issue-in-mi.patch b/0001-a-container-logger-workaround-permission-issue-in-mi.patch deleted file mode 100644 index 1dcef9e..0000000 --- a/0001-a-container-logger-workaround-permission-issue-in-mi.patch +++ /dev/null @@ -1,76 +0,0 @@ -From 578317a67c0f30469c28752ea2f40ae87a1a356c Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 21 Feb 2018 16:14:36 +0100 -Subject: [PATCH] a-container-logger: workaround permission issue in minishift - -This workarounds the following issue: -https://github.com/minishift/minishift/issues/2058 - -Signed-off-by: Matej Habrnal ---- - src/plugins/abrt-container-logger.c | 27 +++++++++++++++++++++++---- - 1 file changed, 23 insertions(+), 4 deletions(-) - -diff --git a/src/plugins/abrt-container-logger.c b/src/plugins/abrt-container-logger.c -index 2f9488a3..df40f562 100644 ---- a/src/plugins/abrt-container-logger.c -+++ b/src/plugins/abrt-container-logger.c -@@ -15,6 +15,7 @@ - - #include - #include -+#include - - #define INIT_PROC_STDERR_FD_PATH "/proc/1/fd/2" - -@@ -25,7 +26,6 @@ int main(int argc, char *argv[]) - "\n" - "\nThe tool reads from standard input and writes to '"INIT_PROC_STDERR_FD_PATH"'"; - -- /* the tool expects one parameter STR */ - if (argc > 1) - { - fprintf(stderr, "%s\n", program_usage_string); -@@ -35,9 +35,27 @@ int main(int argc, char *argv[]) - FILE *f = fopen(INIT_PROC_STDERR_FD_PATH, "w"); - if (f == NULL) - { -- perror("Failed to open '"INIT_PROC_STDERR_FD_PATH"'"); -- return 2; -+ perror("Failed to open '"INIT_PROC_STDERR_FD_PATH"' as root"); -+ -+ /* Try to open the 'INIT_PROC_STDERR_FD_PATH' as normal user because of -+ https://github.com/minishift/minishift/issues/2058 -+ */ -+ if (seteuid(getuid()) == 0) -+ { -+ f = fopen(INIT_PROC_STDERR_FD_PATH, "w"); -+ if (f == NULL) -+ { -+ perror("Failed to open '"INIT_PROC_STDERR_FD_PATH"' as user"); -+ return 2; -+ } -+ } -+ else -+ { -+ perror("Failed to setuid"); -+ return 3; -+ } - } -+ - setvbuf (f, NULL, _IONBF, 0); - - char buffer[BUFSIZ]; -@@ -52,7 +70,8 @@ int main(int argc, char *argv[]) - if (fwrite(buffer, bytes_read, 1, f) != 1) - { - perror("Failed to write to '"INIT_PROC_STDERR_FD_PATH"'"); -- return 3; -+ fclose(f); -+ return 4; - } - } - fclose(f); --- -2.14.3 - diff --git a/abrt.spec b/abrt.spec index 2103c09..21f8b21 100644 --- a/abrt.spec +++ b/abrt.spec @@ -28,8 +28,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.6 -Release: 2%{?dist} +Version: 2.10.7 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -37,7 +37,6 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta # 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-a-container-logger-workaround-permission-issue-in-mi.patch # '%%autosetup -S git' -> git BuildRequires: git @@ -288,6 +287,14 @@ Obsoletes: abrt-addon-python < %{version}-%{release} This package contains python hook and python analyzer plugin for handling uncaught exception in python programs. +%package -n python2-abrt-container-addon +Summary: %{name}'s container addon for catching Python 2 exceptions +Conflicts: python2-abrt-addon + +%description -n python2-abrt-container-addon +This package contains python 2 hook and handling uncaught exception in python 2 +programs in container. + %package -n python3-abrt-addon Summary: %{name}'s addon for catching and analyzing Python 3 exceptions Group: System Environment/Libraries @@ -1018,8 +1025,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_journalcatalogdir}/abrt_python.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python_format.conf %{_mandir}/man5/python_event.conf.5* -%{python_sitearch}/abrt*.py* %{python_sitearch}/abrt.pth +%{python_sitearch}/abrt_exception_handler.* + +%files -n python2-abrt-container-addon +%{python_sitearch}/abrt_container.pth +%{python_sitearch}/abrt_exception_handler_container.* +%attr(6755, root, root) %{_libexecdir}/abrt-container-logger-python2 %files -n python3-abrt-addon %config(noreplace) %{_sysconfdir}/%{name}/plugins/python3.conf @@ -1127,6 +1139,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Feb 26 2018 Matej Habrnal 2.10.7-1 +- Translation updates +- hooks: introduce docker hook for Python2 + * Mon Feb 19 2018 Matej Habrnal 2.10.6-2 - Translation updates - hooks: introduce docker hook for Python3 diff --git a/sources b/sources index 8467ed0..6988f43 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.6.tar.gz) = 4c47aec3ace8033be954cc75f500d7394a77a3dd2511cabbe1706615907d4d6a4f89da1aec6d4ebc9519e47058ae139fbac40eab47048572a34ea52da528f700 +SHA512 (abrt-2.10.7.tar.gz) = 3db4ee8554906137c8ecbdf9c64e310fbfb2673a4c5df6211750616ba65156c3c133fc04c4b93c277f80e3cee0078de3773884273d4a80b5b64de9d599e3c780 From 22482fb18b2792e192ade494ed1df582fba32177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Tue, 6 Mar 2018 15:14:36 +0100 Subject: [PATCH 189/318] Rebuilt for libjson-c.so.4 (json-c v0.13.1) --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 21f8b21..ab74017 100644 --- a/abrt.spec +++ b/abrt.spec @@ -29,7 +29,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1139,6 +1139,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Mar 06 2018 Björn Esser - 2.10.7-2 +- Rebuilt for libjson-c.so.4 (json-c v0.13.1) + * Mon Feb 26 2018 Matej Habrnal 2.10.7-1 - Translation updates - hooks: introduce docker hook for Python2 From fa6bf827b279ec770a9fa8da3bec261f7ba51fb5 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 21 Mar 2018 11:52:41 +0100 Subject: [PATCH 190/318] New version 2.10.8 Signed-off-by: Matej Habrnal --- .gitignore | 1 + abrt.spec | 20 +++++++++++++------- sources | 2 +- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 89a39ce..e6a7c64 100644 --- a/.gitignore +++ b/.gitignore @@ -59,3 +59,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.5.tar.gz /abrt-2.10.6.tar.gz /abrt-2.10.7.tar.gz +/abrt-2.10.8.tar.gz diff --git a/abrt.spec b/abrt.spec index ab74017..e691c40 100644 --- a/abrt.spec +++ b/abrt.spec @@ -28,8 +28,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.7 -Release: 2%{?dist} +Version: 2.10.8 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -206,6 +206,7 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: xz Requires: tar +Requires: nss-pem %description retrace-client This package contains the client application for Retrace server @@ -354,11 +355,11 @@ Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} Requires: abrt-dbus -Requires: python2-abrt +Requires: python3-abrt Requires: abrt-addon-ccpp -Requires: python2-argh -Requires: python2-argcomplete -Requires: python2-humanize +Requires: python3-argh +Requires: python3-argcomplete +Requires: python3-humanize Requires: /usr/bin/register-python-argcomplete %description cli-ng @@ -1069,7 +1070,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %files cli-ng %{_datadir}/bash-completion/completions/abrt %{_bindir}/abrt -%{python_sitearch}/abrtcli/ +%{python3_sitearch}/abrtcli/ %{_mandir}/man1/abrt.1* %files desktop @@ -1139,6 +1140,11 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Mar 21 2018 Matej Habrnal 2.10.8-1 +- Translation updates +- cli-ng: use Python3 as default +- Add a new element 'interpreter' for python problems + * Tue Mar 06 2018 Björn Esser - 2.10.7-2 - Rebuilt for libjson-c.so.4 (json-c v0.13.1) diff --git a/sources b/sources index 6988f43..5308a3e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.7.tar.gz) = 3db4ee8554906137c8ecbdf9c64e310fbfb2673a4c5df6211750616ba65156c3c133fc04c4b93c277f80e3cee0078de3773884273d4a80b5b64de9d599e3c780 +SHA512 (abrt-2.10.8.tar.gz) = 22e655da84e859c14fef42cb72658ecb5a48d76b5bd116b51087aa26b04fd87c4f786e911abdee7b8ec5129bac2a5c894a9c5c3e2253e5390b1391cf5e0995bb From 648b4c8601e317c90509429f08b4e72b26343ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Tue, 27 Mar 2018 10:11:14 +0200 Subject: [PATCH 191/318] Rebuilt for libjson-c.so.4 (json-c v0.13.1) on fc28 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index e691c40..8573045 100644 --- a/abrt.spec +++ b/abrt.spec @@ -29,7 +29,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://abrt.readthedocs.org/ @@ -1140,6 +1140,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Mar 27 2018 Björn Esser - 2.10.8-2 +- Rebuilt for libjson-c.so.4 (json-c v0.13.1) on fc28 + * Wed Mar 21 2018 Matej Habrnal 2.10.8-1 - Translation updates - cli-ng: use Python3 as default From 4f98a322c2469e567bc73ec240a745937241c5f7 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Fri, 27 Apr 2018 13:13:39 +0200 Subject: [PATCH 192/318] New upstream release 2.10.9 Signed-off-by: Matej Habrnal --- .gitignore | 1 + abrt.spec | 928 ++++++++++++++++++++++++++++++++++------------------- sources | 2 +- 3 files changed, 600 insertions(+), 331 deletions(-) diff --git a/.gitignore b/.gitignore index e6a7c64..02415f7 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.6.tar.gz /abrt-2.10.7.tar.gz /abrt-2.10.8.tar.gz +/abrt-2.10.9.tar.gz diff --git a/abrt.spec b/abrt.spec index 8573045..5fa88c0 100644 --- a/abrt.spec +++ b/abrt.spec @@ -2,13 +2,33 @@ # http://fedoraproject.org/wiki/Hardened_Packages %global _hardened_build 1 +%if 0%{?fedora} || 0%{?rhel} > 7 +# Enable python3 build by default +%bcond_without python3 +%else +%bcond_with python3 +%endif + +%if 0%{?rhel} > 7 || 0%{?fedora} > 28 +# Disable python2 build by default +%bcond_with python2 +%else +%bcond_without python2 +%endif + +%if 0%{?rhel}%{?suse_version} + %bcond_with bodhi +%else + %bcond_without bodhi +%endif + # build abrt-atomic subpackage %bcond_without atomic %ifarch aarch64 -%global have_kexec_tools 0 +%define have_kexec_tools 0 %else -%global have_kexec_tools 1 +%define have_kexec_tools 1 %endif # rpmbuild --define 'desktopvendor mystring' @@ -16,73 +36,102 @@ %define desktopvendor %(source /etc/os-release; echo ${ID}) %endif -# do not append package version to doc directory of subpackages in F20 and later; rhbz#993656 -%if "%{_pkgdocdir}" == "%{_docdir}/%{name}" - %global docdirversion %{nil} +%if 0%{?suse_version} +%define dbus_devel dbus-1-devel +%define libjson_devel libjson-devel +%define nss_devel mozilla-nss-devel +%define shadow_utils pwdutils %else - %global docdirversion -%{version} +%define dbus_devel dbus-devel +%define libjson_devel json-c-devel +%define nss_devel nss-devel +%define shadow_utils shadow-utils %endif -%global libreport_ver 2.9.3 -%global satyr_ver 0.24 +# do not append package version to doc directory of subpackages in F20 and later; rhbz#993656 +%if "%{_pkgdocdir}" == "%{_docdir}/%{name}" + %define docdirversion %{nil} +%else + %define docdirversion -%{version} +%endif + +%define libreport_ver 2.9.3 +%define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.8 -Release: 2%{?dist} +Version: 2.10.9 +Release: 1%{?dist} License: GPLv2+ -Group: Applications/System URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{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 - -# '%%autosetup -S git' -> git -BuildRequires: git - -BuildRequires: dbus-devel +BuildRequires: %{dbus_devel} BuildRequires: gtk3-devel BuildRequires: glib2-devel >= 2.43 BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel #why? BuildRequires: file-devel -BuildRequires: python2-devel -BuildRequires: python3-devel BuildRequires: gettext BuildRequires: libxml2-devel BuildRequires: intltool BuildRequires: libtool -BuildRequires: nss-devel +BuildRequires: %{nss_devel} BuildRequires: asciidoc BuildRequires: doxygen BuildRequires: xmlto BuildRequires: libreport-devel >= %{libreport_ver} BuildRequires: satyr-devel >= %{satyr_ver} -BuildRequires: python2-systemd -BuildRequires: python3-systemd BuildRequires: augeas BuildRequires: libselinux-devel +%if %{with python2} +BuildRequires: python2-devel +BuildRequires: python2-systemd BuildRequires: python2-argcomplete -BuildRequires: python3-argcomplete BuildRequires: python2-argh -BuildRequires: python3-argh BuildRequires: python2-humanize +%endif # with python2 +%if %{with python3} +BuildRequires: python3-devel +BuildRequires: python3-systemd +BuildRequires: python3-argcomplete +BuildRequires: python3-argh BuildRequires: python3-humanize +BuildRequires: python3-devel +%endif # with python3 Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} +# these only exist on suse +%if 0%{?suse_version} +BuildRequires: dbus-1-glib-devel +Requires: dbus-1-glib +%endif -Requires: systemd-units +%{?systemd_requires} +Requires: systemd Requires: %{name}-libs = %{version}-%{release} Requires: python3-%{name} = %{version}-%{release} -Requires(pre): shadow-utils +Requires(pre): %{shadow_utils} +%if %{with python2} +Requires: python2-augeas +Requires: python2-dbus +Requires: python2-dmidecode +%endif # with python2 +%if %{with python3} Requires: python3-augeas Requires: python3-dbus -Requires: python3-dmidecode -Requires: libreport-plugin-ureport >= %{libreport_ver} +%endif # with python3 +%ifarch aarch64 i686 x86_64 +Requires: dmidecode +%endif +Requires: libreport-plugin-ureport +%if 0%{?rhel} +Requires: libreport-plugin-rhtsupport +%endif +%if 0%{?fedora} Requires: libreport-plugin-systemd-journal +%endif #gui BuildRequires: libreport-gtk-devel >= %{libreport_ver} @@ -92,26 +141,31 @@ BuildRequires: gdb-headless BuildRequires: libcap-devel #addon-kerneloops BuildRequires: systemd-devel +BuildRequires: %{libjson_devel} +%if %{with bodhi} # plugin-bodhi -BuildRequires: json-c-devel BuildRequires: libreport-web-devel >= %{libreport_ver} +%endif #desktop #Default config of addon-ccpp requires gdb BuildRequires: gdb-headless #dbus BuildRequires: polkit-devel +%if %{with python2} #python2-abrt -BuildRequires: python-nose -BuildRequires: python-sphinx -BuildRequires: libreport-python +BuildRequires: python2-sphinx +BuildRequires: python2-libreport #python2-abrt-doc BuildRequires: python2-devel +%endif # with python2 +%if %{with python3} #python3-abrt BuildRequires: python3-nose BuildRequires: python3-sphinx -BuildRequires: libreport-python3 +BuildRequires: python3-libreport #python3-abrt-doc BuildRequires: python3-devel +%endif # with python3 %description %{name} is a tool to help users to detect defects in applications and @@ -120,14 +174,12 @@ It uses plugin system to extend its functionality. %package libs Summary: Libraries for %{name} -Group: System Environment/Libraries %description libs Libraries for %{name}. %package devel Summary: Development libraries for %{name} -Group: Development/Libraries Requires: abrt-libs = %{version}-%{release} %description devel @@ -135,14 +187,12 @@ Development libraries and headers for %{name}. %package gui-libs Summary: Libraries for %{name}-gui -Group: System Environment/Libraries %description gui-libs Libraries for %{name}-gui. %package gui-devel Summary: Development libraries for %{name}-gui -Group: Development/Libraries Requires: abrt-gui-libs = %{version}-%{release} %description gui-devel @@ -150,7 +200,6 @@ Development libraries and headers for %{name}-gui. %package gui Summary: %{name}'s gui -Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: gnome-abrt @@ -167,7 +216,6 @@ GTK+ wizard for convenient bug reporting. %package addon-coredump-helper Summary: %{name}'s /proc/sys/kernel/core_pattern helper -Group: System Environment/Libraries Requires: abrt-libs = %{version}-%{release} %description addon-coredump-helper @@ -175,7 +223,6 @@ This package contains hook for C/C++ crashed programs. %package addon-ccpp Summary: %{name}'s C/C++ addon -Group: System Environment/Libraries Requires: cpio Requires: gdb-headless Requires: elfutils @@ -184,16 +231,20 @@ Requires: elfutils Requires: %{name}-retrace-client %endif Requires: %{name} = %{version}-%{release} -Requires: abrt-libs = %{version}-%{release} Requires: %{name}-addon-coredump-helper = %{version}-%{release} -Requires: libreport-python3 +Requires: abrt-libs = %{version}-%{release} +%if %{with python2} +Requires: python2-libreport +%endif # with python2 +%if %{with python3} +Requires: python3-libreport +%endif # with python3 %description addon-ccpp This package contains %{name}'s C/C++ analyzer plugin. %package addon-upload-watch Summary: %{name}'s upload addon -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} @@ -202,7 +253,6 @@ This package contains hook for uploaded problems. %package retrace-client Summary: %{name}'s retrace client -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: xz Requires: tar @@ -214,7 +264,6 @@ which is able to analyze C/C++ crashes remotely. %package addon-kerneloops Summary: %{name}'s kerneloops addon -Group: System Environment/Libraries Requires: curl Requires: %{name} = %{version}-%{release} %if 0%{!?rhel:1} @@ -228,7 +277,6 @@ system log. %package addon-xorg Summary: %{name}'s Xorg addon -Group: System Environment/Libraries Requires: curl Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} @@ -240,12 +288,18 @@ log. %if %{?have_kexec_tools} == 1 %package addon-vmcore Summary: %{name}'s vmcore addon -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: kexec-tools +%if %{with python2} +Requires: python2-abrt +Requires: python2-augeas +%endif # with python2 +%if %{with python3} Requires: python3-abrt Requires: python3-augeas +%endif # with python3 +Requires: util-linux %description addon-vmcore This package contains plugin for collecting kernel crash information from @@ -254,35 +308,35 @@ vmcore files. %package addon-pstoreoops Summary: %{name}'s pstore oops addon -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} Requires: abrt-addon-kerneloops -Obsoletes: abrt-addon-uefioops < 2.1.7 +Obsoletes: abrt-addon-uefioops %description addon-pstoreoops This package contains plugin for collecting kernel oopses from pstore storage. +%if %{with bodhi} %package plugin-bodhi Summary: %{name}'s bodhi plugin -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Obsoletes: libreport-plugin-bodhi > 0.0.1 Provides: libreport-plugin-bodhi = %{version}-%{release} %description plugin-bodhi Search for a new updates in bodhi server. +%endif +%if %{with python2} %package -n python2-abrt-addon Summary: %{name}'s addon for catching and analyzing Python exceptions -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: python2-systemd Requires: python2-abrt # Remove before F30 Provides: abrt-addon-python = %{version}-%{release} Provides: abrt-addon-python%{?_isa} = %{version}-%{release} -Obsoletes: abrt-addon-python < %{version}-%{release} +Obsoletes: abrt-addon-python < 2.10.4 %description -n python2-abrt-addon This package contains python hook and python analyzer plugin for handling @@ -291,21 +345,23 @@ uncaught exception in python programs. %package -n python2-abrt-container-addon Summary: %{name}'s container addon for catching Python 2 exceptions Conflicts: python2-abrt-addon +Requires: container-exception-logger %description -n python2-abrt-container-addon This package contains python 2 hook and handling uncaught exception in python 2 programs in container. +%endif # with python2 +%if %{with python3} %package -n python3-abrt-addon Summary: %{name}'s addon for catching and analyzing Python 3 exceptions -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: python3-systemd Requires: python3-abrt # Remove before F30 Provides: abrt-addon-python3 = %{version}-%{release} Provides: abrt-addon-python3%{?_isa} = %{version}-%{release} -Obsoletes: abrt-addon-python3 < %{version}-%{release} +Obsoletes: abrt-addon-python3 < 2.10.4 %description -n python3-abrt-addon This package contains python 3 hook and python analyzer plugin for handling @@ -314,10 +370,12 @@ uncaught exception in python 3 programs. %package -n python3-abrt-container-addon Summary: %{name}'s container addon for catching Python 3 exceptions Conflicts: python3-abrt-addon +Requires: container-exception-logger %description -n python3-abrt-container-addon This package contains python 3 hook and handling uncaught exception in python 3 programs in container. +%endif # with python3 %package plugin-sosreport Summary: %{name}'s plugin for building automatic sosreports @@ -338,7 +396,6 @@ of machine_id for abrt events. %package tui Summary: %{name}'s command line interface -Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} @@ -348,9 +405,9 @@ Requires: abrt-dbus This package contains a simple command line client for processing abrt reports in command line environment. +%if %{with python3} %package cli-ng Summary: %{name}'s improved command line interface -Group: User Interface/Desktops Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} @@ -360,14 +417,13 @@ Requires: abrt-addon-ccpp Requires: python3-argh Requires: python3-argcomplete Requires: python3-humanize -Requires: /usr/bin/register-python-argcomplete %description cli-ng New generation command line interface for ABRT +%endif # with python3 %package cli Summary: Virtual package to make easy default installation on non-graphical environments -Group: Applications/System Requires: %{name} = %{version}-%{release} Requires: abrt-tui Requires: abrt-addon-kerneloops @@ -376,20 +432,30 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp +%if %{with python2} +Requires: python2-abrt-addon +%endif # with python2 +%if %{with python3} Requires: python3-abrt-addon +%endif # with python3 Requires: abrt-addon-xorg %if 0%{?rhel} Requires: libreport-rhel >= %{libreport_ver} Requires: libreport-plugin-rhtsupport >= %{libreport_ver} %else Requires: abrt-retrace-client +%if %{with bodhi} Requires: abrt-plugin-bodhi +%endif +%if 0%{!?suse_version:1} Requires: libreport-plugin-bugzilla >= %{libreport_ver} +%endif Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} - +%if 0%{?fedora} Requires: libreport-fedora >= %{libreport_ver} %endif +%endif %description cli Virtual package to install all necessary packages for usage from command line @@ -397,7 +463,6 @@ environment. %package desktop Summary: Virtual package to make easy default installation on desktop environments -Group: User Interface/Desktops # This package gets installed when anything requests bug-buddy - # happens when users upgrade Fn to Fn+1; # or if user just wants "typical desktop installation". @@ -410,11 +475,11 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp +%if %{with python2} Requires: python3-abrt-addon +%endif # with python2 Requires: abrt-addon-xorg -# Default config of addon-ccpp requires gdb Requires: gdb-headless -Requires: elfutils Requires: abrt-gui Requires: gnome-abrt %if 0%{?rhel} @@ -422,14 +487,20 @@ Requires: libreport-rhel >= %{libreport_ver} Requires: libreport-plugin-rhtsupport >= %{libreport_ver} %else Requires: abrt-retrace-client +%if %{with bodhi} Requires: abrt-plugin-bodhi +%endif +%if 0%{!?suse_version:1} Requires: libreport-plugin-bugzilla >= %{libreport_ver} +%endif Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} +%if 0%{?fedora} Requires: libreport-fedora >= %{libreport_ver} %endif +%endif #Requires: abrt-plugin-firefox -Provides: bug-buddy = 2.28.0 +Provides: bug-buddy = %{version}-%{release} %description desktop Virtual package to install all necessary packages for usage from desktop @@ -437,19 +508,17 @@ environment. %if %{with atomic} %package atomic -Summary: Package to make easy default installation on Atomic hosts -Group: Applications/System +Summary: Package to make easy default installation on Atomic hosts. Requires: %{name}-addon-coredump-helper = %{version}-%{release} Conflicts: %{name}-addon-ccpp -%endif %description atomic Package to install all necessary packages for usage from Atomic hosts. +%endif %package dbus Summary: ABRT DBus service -Group: Applications/System Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} @@ -457,21 +526,24 @@ Requires: abrt-libs = %{version}-%{release} ABRT DBus service which provides org.freedesktop.problems API on dbus and uses PolicyKit to authorize to access the problem data. - +%if %{with python2} %package -n python2-abrt Summary: ABRT Python API -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python2-dbus Requires: python2-libreport +%if 0%{?rhel:%{rhel} == 7} +Requires: python-gobject-base +%else Requires: python2-gobject-base +%endif %{?python_provide:%python_provide python2-abrt} # Remove before F30 Provides: %{name}-python = %{version}-%{release} Provides: %{name}-python%{?_isa} = %{version}-%{release} -Obsoletes: %{name}-python < %{version}-%{release} +Obsoletes: %{name}-python < 2.10.4 %description -n python2-abrt High-level API for querying, creating and manipulating @@ -479,30 +551,30 @@ problems handled by ABRT in Python. %package -n python2-abrt-doc Summary: ABRT Python API Documentation -Group: Documentation BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: python2-abrt = %{version}-%{release} # Remove before F30 Provides: %{name}-python-doc = %{version}-%{release} -Obsoletes: %{name}-python-doc < %{version}-%{release} +Obsoletes: %{name}-python-doc < 2.10.4 %description -n python2-abrt-doc Examples and documentation for ABRT Python API. +%endif # with python2 +%if %{with python3} %package -n python3-abrt Summary: ABRT Python 3 API -Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python3-dbus -Requires: libreport-python3 +Requires: python3-libreport %{?python_provide:%python_provide python3-abrt} # Remove before F30 Provides: %{name}-python3 = %{version}-%{release} Provides: %{name}-python3%{?_isa} = %{version}-%{release} -Obsoletes: %{name}-python3 < %{version}-%{release} +Obsoletes: %{name}-python3 < 2.10.4 Requires: python3-gobject-base %description -n python3-abrt @@ -511,20 +583,19 @@ problems handled by ABRT in Python 3. %package -n python3-abrt-doc Summary: ABRT Python API Documentation -Group: Documentation BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: python3-%{name} = %{version}-%{release} # Remove before F30 Provides: %{name}-python3-doc = %{version}-%{release} -Obsoletes: %{name}-python3-doc < %{version}-%{release} +Obsoletes: %{name}-python3-doc < 2.10.4 %description -n python3-abrt-doc Examples and documentation for ABRT Python 3 API. +%endif # with python3 %package console-notification Summary: ABRT console notification script -Group: Applications/System Requires: %{name} = %{version}-%{release} Requires: %{name}-cli = %{version}-%{release} @@ -533,29 +604,40 @@ A small script which prints a count of detected problems when someone logs in to the shell %prep -# http://www.rpm.org/wiki/PackagerDocs/Autosetup -# Default '__scm_apply_git' is 'git apply && git commit' but this workflow -# doesn't allow us to create a new file within a patch, so we have to use -# 'git am' (see /usr/lib/rpm/macros for more details) -#%%global __scm_apply_git(qp:m:) %%{__git} am -%global __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex -%autosetup -S git -p 1 +%setup -q %build -autoreconf --force --install -intltoolize --force --copy --automake -CFLAGS="%{optflags} -Werror" %configure --enable-doxygen-docs \ -%ifnarch arm armhfp armv7hl armv7l aarch64 - --enable-native-unwinder \ +autoconf + +%define var_base_dir spool + +CFLAGS="%{optflags} -Werror" %configure \ +%if %{without python2} + --without-python2 \ +%endif # with python2 +%if %{without python3} + --without-python3 \ +%endif # with python3 +%if %{without bodhi} + --without-bodhi \ %endif %if %{without atomic} - --without-atomic \ + --without-atomic \ +%endif +%if 0%{?rhel} + --enable-suggest-autoreporting \ + --enable-authenticated-autoreporting \ +%endif +%ifnarch arm armhfp armv7hl armv7l aarch64 + --enable-native-unwinder \ %endif %if %{?have_kexec_tools} == 0 - --disable-addon-vmcore \ + --disable-addon-vmcore \ %endif - --enable-dump-time-unwind \ - --disable-silent-rules + --with-defaultdumplocation=/var/%{var_base_dir}/abrt \ + --enable-doxygen-docs \ + --enable-dump-time-unwind \ + --disable-silent-rules make %{?_smp_mflags} @@ -577,7 +659,7 @@ find $RPM_BUILD_ROOT -name "*.py[co]" -delete find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di mkdir -p $RPM_BUILD_ROOT/var/run/abrt -mkdir -p $RPM_BUILD_ROOT/var/spool/abrt +mkdir -p $RPM_BUILD_ROOT/var/%{var_base_dir}/abrt mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/abrt @@ -590,16 +672,17 @@ ln -sf %{_datadir}/applications/abrt-applet.desktop ${RPM_BUILD_ROOT}%{_sysconfd # After everything is installed, remove info dir rm -f %{buildroot}%{_infodir}/dir -# Install completions script in the right place -rm %{buildroot}%{_sysconfdir}/bash_completion.d/abrt.bash_completion -install -Dpm0644 src/cli-ng/abrt.bash_completion %{buildroot}%{_datadir}/bash-completion/completions/abrt - %check -make check +make check|| { + # find and print the logs of failed test + # do not cat tests/testsuite.log because it contains a lot of bloat + find tests/testsuite.dir -name "testsuite.log" -print -exec cat '{}' \; + exit 1 +} %pre #uidgid pair 173:173 reserved in setup rhbz#670231 -%global abrt_gid_uid 173 +%define abrt_gid_uid 173 getent group abrt >/dev/null || groupadd -f -g %{abrt_gid_uid} --system abrt getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d /etc/abrt -s /sbin/nologin abrt exit 0 @@ -625,11 +708,15 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_post abrt-xorg.service %journal_catalog_update +%if %{with python2} %post -n python2-abrt-addon %journal_catalog_update +%endif # with python2 +%if %{with python3} %post -n python3-abrt-addon %journal_catalog_update +%endif # with python3 %if %{?have_kexec_tools} == 1 %post addon-vmcore @@ -723,12 +810,11 @@ fi %postun atomic %systemd_postun_with_restart abrt-coredump-helper.service -%endif +%endif # with atomic -%if 0%{?fedora} > 27 -# ldconfig and gtk-update-icon-cache is not needed +%if 0%{?fedora} > 27 || 0%{?rhel} > 7 +# ldconfigi and gtk-update-icon-cache is not needed %else - %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -736,9 +822,16 @@ fi %post gui-libs -p /sbin/ldconfig %postun gui-libs -p /sbin/ldconfig + +%postun gui +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi %endif %posttrans +# update the old problem dirs to contain "type" element service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp @@ -753,7 +846,7 @@ service abrtd condrestart >/dev/null 2>&1 || : # Hence we introduced a %{_localstatedir}/lib/abrt/abrt-migrated file to # mark the migration was done. if test ! -f %{_localstatedir}/lib/abrt/abrt-migrated ; then - systemctl --no-reload preset abrt-ccpp.service >/dev/null 2>&1 || : + systemctl --no-reload preset abrt-ccpp.service >/dev/null 2>&1 || : systemctl --no-reload preset abrt-journal-core.service >/dev/null 2>&1 || : if service abrt-ccpp status >/dev/null 2>&1 ; then systemctl stop abrt-ccpp >/dev/null 2>&1 || : @@ -763,6 +856,17 @@ if test ! -f %{_localstatedir}/lib/abrt/abrt-migrated ; then fi systemctl try-restart abrt-journal-core >/dev/null 2>&1 || : systemctl try-restart abrt-ccpp >/dev/null 2>&1 || : +# Regenerate core_bactraces because of missing crash threads +abrtdir=$(grep "DumpLocation" /etc/abrt/abrt.conf | cut -d'=' -f2 | tr -d ' ') +if test -d "$abrtdir"; then + for DD in `find "$abrtdir" -mindepth 1 -maxdepth 1 -type d` + do + if test -f "$DD/analyzer" && grep -q "^CCpp$" "$DD/analyzer"; then + /usr/bin/abrt-action-generate-core-backtrace -d "$DD" -- >/dev/null 2>&1 || : + test -f "$DD/core_backtrace" && chown `stat --format=%U:abrt $DD` "$DD/core_backtrace" || : + fi + done +fi %posttrans addon-kerneloops service abrt-oops condrestart >/dev/null 2>&1 || : @@ -775,6 +879,7 @@ service abrt-xorg condrestart >/dev/null 2>&1 || : service abrt-vmcore condrestart >/dev/null 2>&1 || : # Copy the configuration file to plugin's directory test -f /etc/abrt/abrt-harvest-vmcore.conf && { + echo "Moving /etc/abrt/abrt-harvest-vmcore.conf to /etc/abrt/plugins/vmcore.conf" mv -b /etc/abrt/abrt-harvest-vmcore.conf /etc/abrt/plugins/vmcore.conf } exit 0 @@ -783,14 +888,17 @@ exit 0 %posttrans addon-pstoreoops service abrt-pstoreoops condrestart >/dev/null 2>&1 || : -%posttrans addon-upload-watch -service abrt-upload-watch condrestart >/dev/null 2>&1 || : +%if 0%{?fedora} > 27 +# gtk-update-icon-cache is not needed +%else +%posttrans gui +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +%endif %posttrans dbus # Force abrt-dbus to restart like we do with the other services killall abrt-dbus >/dev/null 2>&1 || : - %files -f %{name}.lang %doc README.md COPYING %{_unitdir}/abrtd.service @@ -821,7 +929,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf %{_mandir}/man5/smart_event.conf.5* -%dir %attr(0751, root, abrt) %{_localstatedir}/spool/%{name} +%dir %attr(0751, root, abrt) %{_localstatedir}/%{var_base_dir}/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} @@ -890,7 +998,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %files addon-coredump-helper %{_libexecdir}/abrt-hook-ccpp %{_sbindir}/abrt-install-ccpp-hook -%{_mandir}/man*/abrt-install-ccpp-hook.* %files addon-ccpp %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di @@ -940,12 +1047,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-action-generate-core-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* +%{_mandir}/man*/abrt-install-ccpp-hook.* %{_mandir}/man*/abrt-action-install-debuginfo.* %{_mandir}/man*/abrt-action-analyze-ccpp-local.* %{_mandir}/man*/abrt-action-analyze-core.* %{_mandir}/man*/abrt-action-analyze-vulnerability.* %{_mandir}/man*/abrt-action-perform-ccpp-analysis.* -%{_mandir}/man*/abrt-dump-journal-core.* +%{_mandir}/man1/abrt-dump-journal-core.1* %files addon-upload-watch %{_sbindir}/abrt-upload-watch @@ -1000,8 +1108,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_unitdir}/abrt-vmcore.service %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore -%{_bindir}/abrt-action-check-oops-for-hw-error %{_bindir}/abrt-action-check-oops-for-alt-component +%{_bindir}/abrt-action-check-oops-for-hw-error %{_mandir}/man1/abrt-harvest-vmcore.1* %{_mandir}/man5/abrt-vmcore.conf.5* %{_mandir}/man1/abrt-action-analyze-vmcore.1* @@ -1017,11 +1125,11 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-harvest-pstoreoops.1* %{_mandir}/man1/abrt-merge-pstoreoops.1* +%if %{with python2} %files -n python2-abrt-addon %config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf %{_datadir}/%{name}/conf.d/plugins/python.conf %{_mandir}/man5/abrt-python.conf.5* -# TODO? Do we need %%config(noreplace) in the below line too? %config(noreplace) %{_sysconfdir}/libreport/events.d/python_event.conf %{_journalcatalogdir}/abrt_python.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python_format.conf @@ -1032,8 +1140,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %files -n python2-abrt-container-addon %{python_sitearch}/abrt_container.pth %{python_sitearch}/abrt_exception_handler_container.* -%attr(6755, root, root) %{_libexecdir}/abrt-container-logger-python2 +%endif # with python2 +%if %{with python3} %files -n python3-abrt-addon %config(noreplace) %{_sysconfdir}/%{name}/plugins/python3.conf %{_datadir}/%{name}/conf.d/plugins/python3.conf @@ -1050,7 +1159,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{python3_sitearch}/abrt3_container.pth %{python3_sitearch}/abrt_exception_handler3_container.py %{python3_sitearch}/__pycache__/abrt_exception_handler3_container.* -%attr(6755, root, root) %{_libexecdir}/abrt-container-logger +%endif # with python3 %files plugin-sosreport %defattr(-,root,root,-) @@ -1067,11 +1176,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_bindir}/abrt-cli %{_mandir}/man1/abrt-cli.1* +%if %{with python3} %files cli-ng -%{_datadir}/bash-completion/completions/abrt +%config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion %{_bindir}/abrt %{python3_sitearch}/abrtcli/ %{_mandir}/man1/abrt.1* +%endif # with python3 %files desktop @@ -1086,6 +1197,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-action-save-package-data.conf.5* %endif +%if %{with bodhi} %files plugin-bodhi %{_bindir}/abrt-bodhi %{_bindir}/abrt-action-find-bodhi-update @@ -1093,6 +1205,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_datadir}/libreport/events/analyze_BodhiUpdates.xml %{_mandir}/man1/abrt-bodhi.1* %{_mandir}/man1/abrt-action-find-bodhi-update.1* +%endif %files dbus %{_sbindir}/abrt-dbus @@ -1122,42 +1235,60 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.css %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_dbus_event.conf +%if %{with python2} %files -n python2-abrt %{python_sitearch}/problem/ %{_mandir}/man5/abrt-python.5* %files -n python2-abrt-doc %{python_sitelib}/problem_examples +%endif # with python2 +%if %{with python3} %files -n python3-abrt %{python3_sitearch}/problem/ %{_mandir}/man5/abrt-python3.5* %files -n python3-abrt-doc %{python3_sitelib}/problem_examples +%endif # with python3 %files console-notification %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog -* Tue Mar 27 2018 Björn Esser - 2.10.8-2 -- Rebuilt for libjson-c.so.4 (json-c v0.13.1) on fc28 +* Fri Apr 27 2018 Matej Habrnal 2.10.9-1 +- build: conditionalize the Python2 and Python3 +- cli-ng,hooks,python-problem: Allow python to be optional at build time +- spec: fix ambiguous Python 2 dependency declarations +- plugins: a-a-g-machine-id use dmidecode command +- spec: use dmidecode instead of python3-dmidecode +- hooks: use container-exception-logger tool +- spec: container python hooks require cel +- hooks: do not write any additional logs +- a-a-s-package-data: add python3.7 to known Interpreters +- autogen: ignore abrt's python packages +- correctly parse buildrequires from spec file * Wed Mar 21 2018 Matej Habrnal 2.10.8-1 - Translation updates +- spec: use Python3 as default in abrt-cli-ng - cli-ng: use Python3 as default - Add a new element 'interpreter' for python problems - -* Tue Mar 06 2018 Björn Esser - 2.10.7-2 -- Rebuilt for libjson-c.so.4 (json-c v0.13.1) +- retrace-client: Require nss-pem * Mon Feb 26 2018 Matej Habrnal 2.10.7-1 - Translation updates - hooks: introduce docker hook for Python2 +- hook: add type to Python3 container exception handler +- spec: introduce docker hook for Python2 +- Add ABRT hexa stickers +- a-container-logger: workaround permission issue in minishift -* Mon Feb 19 2018 Matej Habrnal 2.10.6-2 +* Mon Feb 19 2018 Matej Habrnal 2.10.6-1 - Translation updates - hooks: introduce docker hook for Python3 +- spec: introduce Python3 hook for container - Remove deprecated is_error macro - ldconfig is not needed in rawhide - remove python_sitearch macro @@ -1166,22 +1297,7 @@ killall abrt-dbus >/dev/null 2>&1 || : - remove systemd-units and replace it with systemd macro - remove init.d services - a-h-event: Do not deduplicate different containers - -* Fri Feb 09 2018 Igor Gnatenko - 2.10.5-6 -- Escape macros in %%changelog - -* Wed Feb 07 2018 Fedora Release Engineering - 2.10.5-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Fri Jan 05 2018 Igor Gnatenko - 2.10.5-4 -- Remove obsolete scriptlets - -* Mon Dec 11 2017 Iryna Shcherbina - 2.10.5-3 -- Fix ambiguous Python 2 dependency declarations - (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) - -* Sun Dec 10 2017 Björn Esser - 2.10.5-2 -- Rebuilt for libjson-c.so.3 +- rpm: include epocho in package element if > 0 * Thu Nov 02 2017 Julius Milan 2.10.5-1 - Translation updates @@ -1196,44 +1312,20 @@ killall abrt-dbus >/dev/null 2>&1 || : - a-d-journal-core: Save container cmdline - logging: rename omitted log() to log_warning() -* Wed Sep 27 2017 Martin Kutlak 2.10.4-3 -- Drop GPG check patch for unsigned packages - -* Wed Aug 30 2017 Martin Kutlak 2.10.4-2 -- logging: rename omitted log() to log_warning() - * Mon Aug 28 2017 Matej Habrnal 2.10.4-1 - Translation updates - logging: rename log() to log_warning() - Quick hack to fix build with rpm >= 4.14 +- tests: Crash different binary in infinite event loop +- tests: Revert not sufficient fix +- tests: Reflect field changes in reporter-s-journal +- tests: Get docker-inspect while container is running - cli,dbus: Allow polkit to be optional at build time - spec: add dependency for python{3}-gobject - a-d-journal-core: fix bad condition in creating reason msg - a-d-journal-core: use pid of crashed process in dumpdir name - changelog: update CHANGELOG.md -* Wed Aug 16 2017 Zbigniew Jędrzejewski-Szmek - 2.10.3-7 -- Python 2 binary package renamed to python2-abrt - See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 -- Python 3 binary package renamed to python3-abrt -- Add-on packages renamed to python[23]-abrt-addon -- Documentation packages renamed to python[23]-abrt-doc - -* Fri Aug 11 2017 Igor Gnatenko - 2.10.3-6 -- Rebuilt after RPM update (№ 3) - -* Thu Aug 10 2017 Igor Gnatenko - 2.10.3-5 -- Rebuilt for RPM soname bump - -* Thu Aug 10 2017 Igor Gnatenko - 2.10.3-4 -- Rebuilt for RPM soname bump - -* Wed Aug 02 2017 Fedora Release Engineering - 2.10.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 2.10.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - * Thu Jun 15 2017 Martin Kutlak 2.10.3-1 - Translation updates - applet: add a default action to a notification @@ -1246,14 +1338,7 @@ killall abrt-dbus >/dev/null 2>&1 || : - abrt-journal: adapt to suspicious blacklist addition - koops: add suspicious strings blacklist - build: fix changelog adding in release target -- Resolves: #1452160, #1444924, #1437956 - -* Fri May 19 2017 Matej Habrnal 2.10.2-3 -- abrt-desktop shouldn't require gdb but gdb-headless -- Resolves: #1452336 - -* Thu Apr 27 2017 Matej Habrnal 2.10.2-2 -- create /var/lib/abrt because of abrt-migration +- changelog: update CHANGELOG.md * Tue Apr 25 2017 Matej Habrnal 2.10.2-1 - Translation updates @@ -1264,14 +1349,19 @@ killall abrt-dbus >/dev/null 2>&1 || : - Spelling fixes - Python 3.6 invalid escape sequence deprecation fix - koops_event: add check to restrict reporting of MCEs -- Resolves: #1439821 * Thu Mar 16 2017 Matej Habrnal 2.10.1-1 +- changelog: update CHANGELOG.md +- build: create tarball in release-* target +- spec: sosreport is not a package +- Fix Typo - bodhi: Remove dependency on hawkey - spec: Remove dependency on hawkey - build: do not upload tarball to fedorahosted.org - spec: do not use fedorahosted.org as source +- spec: install new plugins - plugins: introduce Machine ID and SOS report +- Update CHANGELOG.md - build: fix generating list of dependences in autogen.sh - spec: start abrt-journal-core instead of abrt-ccpp - build: fix scratch-build target @@ -1280,81 +1370,112 @@ killall abrt-dbus >/dev/null 2>&1 || : - kernel: modify suspicious string "invalid opcode:" - daemon: Allow rpm to be optional at build time - spec: allow any compression of man pages +- spec: remove defattr +- spec: remove cleaning buildroot +- spec: use versioned provides +- spec: remove changelog entries older than 2 years +- remove Buildroot and Groups tags - spec: recommend libreport-plugin-systemd-journal on Fedoras - doc: document selinux change needed for automatic deletion of reports - ccpp: tell gdb to analyze saved binary image -* Fri Feb 10 2017 Fedora Release Engineering - 2.10.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Sat Jan 21 2017 Igor Gnatenko - 2.10.0-3 -- Rebuild for xmlrpc-c - -* Wed Jan 18 2017 Matej Habrnal 2.10.0-2 -- daemon: Allow rpm to be optional at build time -- modify kernel's suspicious string "invalid opcode:" -- fix calling of run_event_on_problem_dir in a-a-ureprt -- Resolves: #1413637, #1413451 - -* Mon Jan 02 2017 Matej Habrnal 2.10.0-1 +* Sat Dec 03 2016 Jakub Filak 2.10.0-1 - Translation updates +- spec: bump required libreport and satyr versions - build: make the release-* targets smarter - Add CHANGELOG.md +- a-a-notify: set env var before run report_systemd-journal event - use run_event_on_problem_dir() helper for running events - notify: do not require package element +- spec: add catalog_journal_ccpp_format.conf file +- reporter-s-journal: add formatting file for abrt-journal-core analyser - cli-ng: fix --fmt parameter - python: create analyzer element in dumpdir +- abrt-action-list-dsos: fix typo in vendor variable name +- cli-ng: chown problem before reporting - lib: stop printing out a debug message 'adding: ' +- cli: print out the not-reportable reason - cli: configure libreport to ignore not-reportable +- cli-ng: force reporting even if not-reportable - cli-ng: introduce verbose argument +- Import GObject from gi.repository - ccpp: configure package repositories for correct OS - a-a-s-c-data: adapt to current docker +- daemon: don't drop problems from unknown containers - a-a-s-c-data: correct detection of container type +- spec: install Bodhi event files - bodhi: factor out Bodhi updates lookup into a solo event - problems2: update the documentation -- create crash_function and exception_type elements +- a-a-analyze-python: create exception_type element +- a-a-analyze-xorg: create crash_function into dump dir +- koops: create crash_function element +- a-a-analyze-python: create crash_function element +- a-a-analyze-c: create crash_function element +- spec: add formatting files for reporter-systemd-journal +- reporter-systemd-journal: add formatting files - vmcore: /var/tmp/abrt is no longer a dump location - events: add event report_systemd-journal to all addons - abrt-action-notify: notify to systemd journal +- spec: add abrt's catalog source files - journal-catalog: add abrt's catalog source files - ccpp: retain partial core_backtrace upon error +- ccpp: log waitpid errors +- ccpp: inform users about not supported unwinding +- ccpp: close stdin when we can let the process die - daemon: properly shutdown socket connection - daemon: close forgotten FD to /proc/[pid] +- ccpp: pass proc pid FD instead of pid to *_at fns +- ccpp+daemon: pass valid params to dd_open_item() +- python: remove unused functions from sysexcept hook +- build: add gettext-devel to sysdeps +- spec: add libcap-devel to BRs of addon-ccpp - ccpp: avoid running elfutils under root +- Add abrt-action-analyze-vulnerability to .gitignore +- build: autoge.sh without args configures for debugging - conf: increase MaxCrashReportsSize to 5GiB - ccpp: fast dumping and abrt core limit +- CI: make debugging easier with more log messages - doc: add a guide for ABRT hackers +- vmcore: fix an undefined variable on error path - vmcore: read kdump.conf from an arbitrary location +- ccpp: use libreport 'at' functions +- ccpp: use abort() to exit in debug mode - python2: stop generating dso_list in the process +- python: stop collecting ENVIRON in the process +- abrtd: details of processes from different PID NS - abrtd: save interesting process details - a-a-s-package-data: add python3.6 to known Interpreters +- spec: update gdb Requires - tree-wide: make path to GDB configurable - a-a-ureport: print out exit codes in verbose mode - daemon: stop replacing analyzer with type -* Mon Dec 19 2016 Miro Hrončok - 2.9.0-2 -- Rebuild for Python 3.6 - * Fri Sep 09 2016 Jakub Filak 2.9.0-1 +- spec: install abrt_dbus_event.conf +- dbus: use Problems2 API in abrt-dbus - dbus: Problems2 API implementation +- spec: install Problems2 interfaces +- dbus-doc: rewrite the XML to Problems2 +- Fix memory leaks +- lib: introdcue a function checking post-create name - abrtd: change HTTP response code for duplicate problems to 303 +- autogen: fix typo in usage help string +- daemon: send base names from abrt-server to abrtd - lib: normalize slashes of configured paths - lib: make configuration paths alterable at runtime +- Add generated CCpp.conf to .gitignore - abrt-bodhi: use CCpp PackageManager configuration directive from configure - cli: introduce unsafe reporting for not-reporable problems - handle-event: stop creating post-create lock - daemon: trigger dump location cleanup after detection - hook-ccpp: dump own core file in debug mode -- fix memory leaks - -* Tue Jul 19 2016 Fedora Release Engineering - 2.8.2-2 -- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Mon Jul 18 2016 Matej Habrnal 2.8.2-1 - Translation updates - abrt-hook-ccpp: Fix mismatching argument - Allow selinux to be optional at build time - vmcore: use findmnt to get mountpoint +- spec: add utils-linux to vmcore's Require - vmcore: fix finding partitions by UUID and LABEL - a-a-install-debuginfo: Exception may not have an argument errno - koops: do not assume version has 3 levels @@ -1362,7 +1483,6 @@ killall abrt-dbus >/dev/null 2>&1 || : - examples: add oops-kernel-panic-hung-tasks-arm - Add oops processing for kernel panics caused by hung tasks. - abrt-hook-ccpp: save get_fsuid() return values in int variables -- Resolves: #1357264 * Wed May 25 2016 Matej Habrnal 2.8.1-1 - a-dump-journal-xorg: allow *libexec/X* to be executable element @@ -1380,214 +1500,362 @@ killall abrt-dbus >/dev/null 2>&1 || : - a-retrace-client: format security - daemon: avoid infinite crash loops - spec: drop abrt-action-save-kernel-data bits - -* Fri Apr 08 2016 Matej Habrnal 2.8.0-5 - spec: README -> README.md - Add basic documentation - a-a-install-debuginfo: fix BrokenPipe error - a-a-install-debuginfo: make tmpdir variable global - -* Mon Mar 7 2016 Matej Habrnal 2.8.0-4 - python3 addon: workaround a bug in traceback - -* Tue Feb 23 2016 Matej Habrnal 2.8.0-3 -- translation updates -- blacklist Firefox's plugin-container -- turn off compat cores -- Resolves: #1308840 - -* Wed Feb 10 2016 Matej Habrnal 2.8.0-2 -- drop %%e from the core_pattern +- CCpp: turn off compat cores +- a-a-save-package-data: blacklist /usr/lib(64)/firefox/plugin-container +- Fix minor typo: possition -> position +- translations: add missing new line +- Translation updates +- translations: update zanata configuration +- ccpp: drop %e from the core_pattern +- Save Vendor and GPG Fingerprint * Wed Feb 03 2016 Matej Habrnal 2.8.0-1 - a-a-save-package-data: do not blacklist firefox -- Resolves: #1304310 * Tue Feb 02 2016 Matej Habrnal 2.7.2-1 +- ccpp: bug fix - undefined variables +- a-a-c-o-f-hw-error: fix unicode error +- ccpp: use error_msg_ignore_crash() instead of error_msg() - ccpp: add AllowedUsers and AllowedGroups feature +- doc: fix formatting in abrt.conf man page - ccpp: use executable name from pid - a-a-c-o-f-hw-error: do not crash on invalid unicode +- Use %s instead of %d. - configui: link GUI library with libabrt.so +- Do not include system libabrt.h - ccpp: unify log message of ignored crashes - ccpp: add IgnoredPath option +- lib: check_recent_crash_file do not produce error_msg * Mon Nov 23 2015 Jakub Filak 2.7.1-1 -- CVE-2015-5287: switch owner of /var/spool/abrt to 'root' -- CVE-2015-5287: ccpp: save abrt core files only if DebugLevel > 0 -- CVE-2015-5287: ccpp: save abrt core files only to new files -- CVE-2015-5287: abrt configuration: introduce DebugLevel -- CVE-2015-5273: a-a-i-d-to-abrt-cache: make own random temporary directory +- spec: switch owner of the dump location to 'root' +- abrtd: switch owner of the dump location to 'root' +- lib: add convenient wrappers for ensuring writable dir +- ccpp: save abrt core files only to new files +- ccpp: ignore crashes of ABRT binaries if DebugLevel == 0 +- conf: introduce DebugLevel +- a-a-i-d-to-abrt-cache: make own random temporary directory +- update .gitignore - ccpp: make crashes of processes with locked memory not-reportable +- a-a-s-p-data: fix segfault if GPGKeysDir isn't configured +- a-dump-journal-xorg: make journal filter configurable +- doc: a-a-analyze-xorg fix path to conf file +- abrt-journal: use GList instead of char** in abrt_journal_set_journal_filter() - xorg: introduce tool abrt-dump-journal-xorg - abrt-xorg.service: change due to abrt-dump-journal-xorg +- journal: add function abrt_journal_get_next_log_line +- spec: add abrt-dump-journal-xorg to spec file +- xorg: rewrite skip_pfx() function to work with journal msgs +- xorg: introduce library xorg-utils +- dbus: ensure expected bytes width of DBus numbers - a-d-journal-core: set root owner for created dump directory +- doc: add missing man page for abrt-dump-journal-core - spec: add missing man page for abrt-dump-journal-core -- Resolves: #1262252, #1284557 - -* Sat Nov 14 2015 Zbigniew Jędrzejewski-Szmek - 2.7.0-4 -- Update requires on python-argcomplete -- Move completion script to /usr - -* Fri Nov 6 2015 Jakub Filak - 2.7.0-3 -- Rebuilt for Python3.5 rebuild - -* Wed Oct 28 2015 Jakub Filak 2.7.0-2 -- Fix broken problem details in abrt-cli/gnome-abrt * Thu Oct 15 2015 Matej Habrnal 2.7.0-1 +- abrt-python: add problem.chown +- a-a-a-ccpp-local don't delete build_ids +- update .gitignore +- spec: add cli-ng - cli-ng: initial + +* Thu Oct 15 2015 Matej Habrnal 2.6.3-1 - bodhi: introduce wrapper for 'reporter-bugzilla -h' and 'abrt-bodhi' +- remove random code example from abrt-server +- spec: introduce abrt-action-find-bodhi-update +- api: fix pths -> paths rename - handle-event: remove obsolete workaround - remove 'not needed' code +- events: fix example wording - doc: change /var/tmp/abrt to /var/spool/abrt +- doc: actualize core_pattern content in documentation - doc: fix default DumpLocation in abrt.conf man page +- events: improve example +- events: comments not needed anymore +- abrt-retrace-client: use atoll for _size conversion - abrt-dump-xorg: support Xorg log backtraces prefixed by (EE) - -* Tue Sep 15 2015 Matej Habrnal 2.6.2-8 -- doc: actualize the abrt-bodhi man page +- runtests: more verbose fail in get_crash_path +- ureport-auth: force cp/mv when restoring configuration +- runtests: stick to new BZ password rules +- bodhi: fix typo in error messages - bodhi: fix a segfault when testing an os-release opt for 'rawhide' - -* Wed Aug 26 2015 Matej Habrnal 2.6.2-7 +- doc: actualize the abrt-bodhi man page +- autogen: use dnf instead of yum to install dependencies - bodhi: add parsing of error responses - bodhi: add ignoring of Rawhide -- do not break the reporting if a-bodhi fails +- ccpp: do not break the reporting if a-bodhi fails - spec: add hawkey to BRs of abrt-bodhi - introduce bodhi2 to abrt-bodhi +- a-handle-upload: pass bytes to file.write() +- upload a problem data in the EVENT 'notify' +- turn off several post-create scripts for remote problems - convert all 'ex.message' stmts to 'str(ex)' -- don't start reporting of not-reportable problems -- add bash on the package blacklist -- Resolves #1250379 - -* Fri Aug 14 2015 Matej Habrnal 2.6.2-6 -- ccpp - use global TID -- fix comment related to 'MakeCompatCore' option in CCpp.conf -- fix testing of DBus API return codes -- dbus-api: unify reporting of errors -- fix related to conditional compilation of man page -- abrt-auto-reporting: fix related to conditional compilation +- cli: don't start reporting of not-reportable problems +- a-a-s-p-d: add bash on the package blacklist - correct usage of abrt-gdb-exploitable - -* Wed Jul 29 2015 Jakub Filak - 2.6.2-5 -- Add python3-augeas to Requires: (FAF report #529272) - -* Tue Jul 28 2015 Jakub Filak - 2.6.2-4 -- Rebuild for rmplib : https://lists.fedoraproject.org/pipermail/devel/2015-July/212672.html - -* Fri Jul 24 2015 Matej Habrnal 2.6.2-3 -- read vmcore by chunks +- testsutie: first wait_for_hooks, then get_crash_path +- ccpp: use global TID +- ccpp: fix comment related to 'MakeCompatCore' option in CCpp.conf +- cli: fix testing of DBus API return codes +- dbus-api: unify reporting of errors +- doc: fix related to conditional compilation of man page +- abrt-auto-reporting: fix related to conditional compilation +- vmcore: read vmcore by chunks - pass encoded Unicode to hashlib.sha1.update() - abrt-merge-pstoreoops: merge files in descending order -- Resolves #1246459 - -* Wed Jul 22 2015 Matej Habrnal 2.6.2-2 - use gettext instead of lgettext in all python scripts +- gitignore: add a generated man page source file * Fri Jul 17 2015 Jakub Filak 2.6.2-1 -- switch to Python 3 -- reassign components of certain Kernel oopses to xorg-x11-drv-* -- de-prioritize post-mortem processes - applet: do not crash if the new problem has no command_line -- abrt-hook-ccpp: do not crash if generate_core_backtrace fails -- cli: enable authentication for all commands +- ccpp: do not crash if generate_core_backtrace fails +- abrt: Fixup component of select kernel backtraces +- abrtd: de-prioritize post-create event scripts +- spec: switch python Requires to python3 +- switch all python scripts to python3 +- spec: drop abrt-addon-python requires +- a-dump-oops: allow update the problem, if more then one oops found +- cli: use internal command impl in the command process +- cli: remove useless code from print_crash() +- cli: enable authetication for all commands -* Fri Jul 03 2015 Matej Habrnal 2.6.1-1 -- keep the polkit authorization for all clients -- enable polkit authentication on command line -- use TID to find crash thread -- remove PyGObject from all Requires -- update version of gdb because of -ascending -- make it easier to find the backtrace of th crash thread -- save TID in the file 'tid' -- get TID from correct cmd line argument -- add option always generate backtrace locally -- add processor information to sosreport -- update abrt-cli man page -- Resolves #1217901 - -* Tue Jun 16 2015 Fedora Release Engineering - 2.6.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild +* Thu Jul 02 2015 Matej Habrnal 2.6.1-1 +- dbus: keep the polkit authorization for all clients +- cli: enable polkit authentication on command line +- spec: --enable-dump-time-unwind by default +- ccpp: use TID to find crash thread +- spec: remove PyGObject from all Requires +- spec: update version of gdb because of -ascending +- lib: make it easier to find the backtrace of th crash thread +- ccpp: save TID in the file 'tid' +- ccpp: get TID from correct cmd line argument +- configui: add option always generate backtrace locally +- a-a-p-ccpp-analysis: use ask_yes_no_save_result instead of ask_yes_no_yesforever +- spec: use more appropriate url +- spec: abrt requires libreport-plugin-rhtsupport on rhel +- sosreport: add processor information to sosreport +- doc: update abrt-cli man page * Tue Jun 09 2015 Jakub Filak 2.6.0-1 -- move the default dump location to /var/spool/abrt from /var/tmp/abrt +- spec: add abrt-dbus to Rs of abrt-python +- vmcore: use libreport dd API in the harvestor +- ccpp: don't save the system logs by default +- cli: exit with the number of unreported problems +- spec: restart abrt-dbus in posttrans +- cli: chown before reporting - hooks: use root for owner of all dump directories - ccpp: do not unlink failed and big user cores -- ccpp: don't save the system logs by default -- ccpp: stop reading hs_error.log from /tmp -- ccpp: emulate selinux for creation of compat cores +- ccpp: include the system logs only with root's coredumps - koops: don't save dmesg if kernel.dmesg_restrict=1 -- dbus: validate passed arguments +- daemon, dbus: allow only root to create CCpp, Koops, vmcore and xorg +- daemon: allow only root user to trigger the post-create +- daemon: harden against race conditions in DELETE +- ccpp: revert the UID/GID changes if user core fails +- a-a-i-d-t-a-cache: sanitize umask +- a-a-i-d-t-a-cache: sanitize arguments +- dbus: report invalid element names +- dbus: avoid race-conditions in tests for dum dir availability +- dbus: process only valid sub-directories of the dump location +- lib: add functions validating dump dir +- daemon: use libreport's function checking file name +- configure: move the default dump location to /var/spool +- ccpp: avoid overriding system files by coredump +- spec: add libselinux-devel to BRs +- ccpp: emulate selinux for creation of compat cores +- ccpp: harden dealing with UID/GID +- ccpp: do not use value of /proc/PID/cwd for chdir +- ccpp: do not override existing files by compat cores +- ccpp: stop reading hs_error.log from /tmp +- ccpp: fix symlink race conditions - turn off exploring crashed process's root directories -- abrt-python: bug fixes and improvements -- fixes for CVE-2015-3315, CVE-2015-3142, CVE-2015-1869, CVE-2015-1870 -- fixes for CVE-2015-3147, CVE-2015-3151, CVE-2015-3150, CVE-2015-3159 -- spec: add abrt-dbus to Rs of abrt-python and abrt-cli -- spec: restart abrt-dbus in posttrans - -* Wed May 20 2015 Matej Habrnal 2.5.1-3 -- applet: fix problem info double free -- upload: validate and sanitize uploaded dump directories -- applet: switch to D-Bus methods -- lib: add new kernel taint flags -- abrt-auto-reporting: require rhtsupport.conf file only on RHEL -- doc, polkit: Spelling/grammar fixes -- applet: migrate Autoreporting options to GSettings -- config UI: read glade from a local file first +- abrt-python: add proper PYTHONPATH to test shellscripts +- abrt-python: unify unknown problem type handling +- abrt-python: add not_reportable properties +- spec: remove analyzer to type conversion +- abrt-python: add Python3 problem type +- abrt-python: add id, short_id and path to problem +- abrt-python: add Problem.prefetch_data function +- abrt-python: handle reconnection gracefully - config UI: Automatic reporting from GSettings -- Resolves: #1217901 - -* Mon Apr 13 2015 Jakub Filak 2.5.1-2 -- Remove no longer needed posttrans scriptlet copying analyzer to type +- doc, polkit: Spelling/grammar fixes +- applet: fix problem info double free +- a-a-s-p-d: add new known interpreter to conf file +- config UI: enable options without config files +- config UI: read glade from a local file first +- applet: migrate Autoreporting options to GSettings +- abrt-action-list-dsos: do not decode not existing object +- spec: add AUTHENTICATED_AUTOREPORTING conditional +- abrt-auto-reporting: require rhtsupport.conf file only on RHEL +- lib: add new kernel taint flags +- spec: add a dependency on abrt-dbus to abrt-cli +- cli: do not exit with segfault if dbus fails +- applet: switch to D-Bus methods +- upload: validate and sanitize uploaded dump directories * Thu Apr 09 2015 Jakub Filak 2.5.1-1 - Translation updates - problem: use 'type' element instead of 'analyzer' - cli-status: don't return 0 if there is a problem older than limit -- cli: use the DBus methods for getting problem information - journal-oops: add an argument accepting journal directory +- journal: open journal files from directory - lib: don't expect kernel's version '2.6.*' or '3.*.*' +- cli: use the DBus methods for getting problem information +- libabrt: add wrappers TestElemeExists and GetInfo for one element - dbus: add new method to test existence of an element +- libabrt: add new function fetching full problem data over DBus +- applet: use a shared function for getting problems over DBus - vmcore: generate 'reason' file in all cases +- applet: Fix trivial indentation bug - applet: Don't show report button for unpackaged programs +- applet: fix freeing of the notify problem list - applet: get the list of problems through D-Bus service - -* Fri Mar 20 2015 Jakub Filak 2.5.0-2 -- applet: re-enable notifications of problems not-yet seen problems at start-up +- doc: D-Bus api: make desc of DeleteProblem clearer * Wed Mar 18 2015 Jakub Filak 2.5.0-1 +- applet: cast to correct type to fix a warrning +- applet: Use new problem_create_app_from_env() helper +- doc: add documentation for GetProblemData - dbus: add a new method GetProblemData - abrt_event: run save package data event even if component exists - a-a-s-container-data: add a new argument --root +- spec: add a-a-s-package-data to abrt-atomic - a-a-s-kernel-data: add --root argument - journal-oops: add an argument similar to '--merge' +- spec: let configure generate the spec file - ccpp: create the dump location from standalone hook - retrace-client: stop failing on SSL2 - spec: changes for Atomic hosts +- add stuff necessary for Project Atomic +- Python 3 fixes - ccpp: add support for multiple pkg mngrs - Python 3 compatibility -- Don't allow users to list problems "by hand" +- Revert "dbus: Allow admins to load problems without a password" +- dbus: Allow admins to load problems without a password +- abrtd: Don't allow users to list problems "by hand" +- spec: Don't allow users to list problems "by hand" - spec: abrt-python requires libreport-python to build -* Fri Feb 20 2015 Jakub Filak - 2.4.0-1 -- gracefully handle crashes in containers -- reworked abrt-applet's work-flow -- process unpackaged by default -- support collecting coredumps from systemd-coredumpctl -- search for log lines in journald more efficiently -- support sending micro-reports without the need to save coredump -- create a new package abrt-coredump-helper for Fedora Atomic - -* Fri Nov 07 2014 Jakub Filak - 2.3.0-5 +* Fri Feb 20 2015 Jakub Filak 2.4.0-1 +- spec: factor out core_pattern helper from addon-ccpp +- ccpp: standalone hook +- ccpp: save package data from hook in case of crash in container +- a-a-s-package-data: save data from artifical chroots +- spec: install containers tools +- containers: add utility collecting containers info +- ccpp: add support for containers +- spec: install the daemon's D-Bus configuration file +- daemon: add configuration enabling our name on the System bus +- daemon: get rid of own main loop +- init: set Type of abrtd.service to dbus +- applet: Use libreport's helper to find applications +- applet: Remove unused build information +- build: Fix pkg-config warning related to abrt.pc +- applet: Fix a massive leak in the app detection code +- applet: Remove left-over code from the systray icon +- applet: Use the easy way to detect empty lists +- applet: Fix a number of "problems" memory leaks +- applet: Make problem_info_t refcounted +- applet: If gnome-abrt isn't there, don't offer to report +- applet: Fix multiple notifications for the same problem +- applet: Always defer auto-reporting without a network +- applet: Don't ignore foreign problems if an admin +- applet: Rename problem variable to "pi" +- applet: Remove unused "flags" parameters +- applet: Completely ignore incomplete problems +- applet: Don't ignore repeat problems in the same app +- applet: Fix warning when crash doesn't happen in app +- applet: Remove unused functions +- applet: Remove unused flags +- applet: Rewrite notifications +- applet: Don't run full reports from the applet +- applet: Simplify "report" action +- applet: Add helper to guess .desktop for a cmdline +- applet: Get more details from the crash report +- applet: Ignore other people's problems for non-admins +- applet: Remove handling of "ignored" crashes +- applet: Remove specific persistent notifications handling +- applet: Rename applet to match gnome-abrt +- applet: Initialise libnotify on startup +- applet: Use g_new0() instead of xzalloc() +- applet: Use g_strdup_printf()/g_strdup() +- applet: Move variable inside block where it's used +- daemon: process unpackaged by default +- spec: fix abrt-applet requires +- applet: Fix memory leak in fork_exec_gui() +- applet: Detect whether gnome-abrt is available +- applet: Use GUI_EXECUTABLE macro +- autogen: move configure to the default case +- applet: Use GIO to launch gnome-abrt +- applet: Fix typo in "Oterwise" +- applet: Use symbolic icon instead of abrt's in notifications +- applet: Add some debug to new_dir_exists() +- applet: Require at least libnotify 0.7 +- applet: Fix typo in "cuurent" +- applet: Don't defer sending out uReports +- applet: Use G_SOURCE_REMOVE in timeout callback +- spec: Bump required glib2 version +- applet: Use g_bus_own_name() for single-instance +- applet: Remove status icon +- applet: Use GDBus to filter crash signals +- applet: Remove XSMP support +- build: Launch configure after autogen.sh +- make: make some python depencies optional +- configure: fix typos +- configure: check for python-sphinx and nose +- spec: add gsettings-desktop-schemas to the build requires +- core: use updated dump_fd_info() +- switch from 'analyzer' to 'type' +- spec: install abrt-dump-journal-core stuff +- init: add abrt-journal-core service +- introduce abrt-dump-journal-core +- applet: Remove the automatic crash reporting message dialog +- applet: Remove pre-glib 2.32 code +- applet: Remove pointless custom signal handling +- applet: Use GNetworkMonitor instead of NM directly +- applet: Use GSettings to check whether to send uReports +- Rewrite journalctl invocations: replace grep/tail pipeline with journalctl builtins. +- Don't slurp unbounded amounts of data when invoking journalctl. Fixes #887. +- console-notifications: add timeout +- cli-status: use will_python_exception +- ccpp-hook: move utility functions to hooklib +- ccpp-hook: move /proc/[pid]/ utils to libreport +- abrt-journal: add functions for reading/saving journald state +- Do not use 'bool' in OPT_BOOL() macro : it expects 'int' +- daemon: Own a D-Bus name +- zanata: add gettext mappings +- auto-reporting: add options to specify auth type +- translations: move from transifex to zanata +- spec: add missing augeas dependency +- Only analyze vulnerabilities when coredump present +- abrt-install-ccpp-hook check configuration +- UUID from core backtrace if coredump is missing +- Create core backtrace in unwind hook +- abrt-hook-ccpp: minor refactoring +- vmcore: remove original vmcore file in the last step +- vmcore: catch IOErrors and OSErrors +- python: load the configuration from correct file +- Remove garbage from ccpp_event.conf +- spec: update the required gdb version +- gdb: make gdb aware of the abrt's debuginfo dir +- Revert "gdb: disable loading of auto-loaded files" +- spec: update the URL - koops: improve 'reason' text for page faults -- do not detect Firefox crashes -- make ABRT queiter -- update Package URL - -* Tue Oct 14 2014 Jakub Filak - 2.3.0-4 -- oops: get rid of invalid characters when dumping from journald - -* Mon Oct 13 2014 Jakub Filak - 2.3.0-3 -- applet: show package instead of duphash +- sos: use all valuable plugins +- a-a-g-machine-id: do not print any error from the event handler +- a-a-g-machine-id: omit trailing new-line for one-liners only +- a-a-g-machine-id: suppress its failures in abrt_event.conf +- a-a-g-machine-id: add systemd's machine id +- applet: ensure writable dump directory before reporting +- make ABRT quieter +- journal-oops: use the length result of sd_journal_get_data() - console-notifications: skip non-interactive shells - -* Thu Oct 09 2014 Jakub Filak - 2.3.0-2 +- applet: don't show duphash instead of component +- ureport: attach contact email if configured - console-notifications: use return instead of exit +- Translation updates +- a-a-s-p-d: add firefox on the package blacklist diff --git a/sources b/sources index 5308a3e..c4d3d4d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.8.tar.gz) = 22e655da84e859c14fef42cb72658ecb5a48d76b5bd116b51087aa26b04fd87c4f786e911abdee7b8ec5129bac2a5c894a9c5c3e2253e5390b1391cf5e0995bb +SHA512 (abrt-2.10.9.tar.gz) = aff498ba52402593a853bb1e6d20c2c97137a5643d4f346a4568849d2fb5f3bb231e2c9f5c1f9742e3bb14de18de415ceede080fa089f8aa93955868bb6d5ad0 From c9a0a107d94b7cce169d3b3a9fe8c001a337040e Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Fri, 27 Apr 2018 13:25:04 +0200 Subject: [PATCH 193/318] Fix python requires in spec file Signed-off-by: Matej Habrnal --- abrt.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/abrt.spec b/abrt.spec index 5fa88c0..f27dc79 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,7 +61,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.9 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -116,7 +116,6 @@ Requires(pre): %{shadow_utils} %if %{with python2} Requires: python2-augeas Requires: python2-dbus -Requires: python2-dmidecode %endif # with python2 %if %{with python3} Requires: python3-augeas @@ -476,8 +475,11 @@ Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp %if %{with python2} -Requires: python3-abrt-addon +Requires: python2-abrt-addon %endif # with python2 +%if %{with python3} +Requires: python3-abrt-addon +%endif # with python3 Requires: abrt-addon-xorg Requires: gdb-headless Requires: abrt-gui @@ -1257,6 +1259,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Apr 27 2018 Matej Habrnal 2.10.9-2 +- fix requires for python in spec file + * Fri Apr 27 2018 Matej Habrnal 2.10.9-1 - build: conditionalize the Python2 and Python3 - cli-ng,hooks,python-problem: Allow python to be optional at build time From 437b080e9aa3c2bf3322a2ab3324a919d16bb0bc Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Thu, 3 May 2018 10:56:51 +0200 Subject: [PATCH 194/318] drop python2-abrt-addon requires Signed-off-by: Matej Habrnal --- abrt.spec | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/abrt.spec b/abrt.spec index f27dc79..cbaea95 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,7 +61,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.9 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -290,13 +290,14 @@ Summary: %{name}'s vmcore addon Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: kexec-tools +%if %{with python3} +Requires: python3-abrt +Requires: python3-augeas +%else %if %{with python2} Requires: python2-abrt Requires: python2-augeas %endif # with python2 -%if %{with python3} -Requires: python3-abrt -Requires: python3-augeas %endif # with python3 Requires: util-linux @@ -431,9 +432,6 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp -%if %{with python2} -Requires: python2-abrt-addon -%endif # with python2 %if %{with python3} Requires: python3-abrt-addon %endif # with python3 @@ -474,9 +472,6 @@ Requires: abrt-addon-pstoreoops Requires: abrt-addon-vmcore %endif Requires: abrt-addon-ccpp -%if %{with python2} -Requires: python2-abrt-addon -%endif # with python2 %if %{with python3} Requires: python3-abrt-addon %endif # with python3 @@ -1259,6 +1254,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu May 03 2018 Matej Habrnal 2.10.9-3 +- drop python2-abrt-addon requires + * Fri Apr 27 2018 Matej Habrnal 2.10.9-2 - fix requires for python in spec file From 81b08b87c022c485e06072faf6f23c117c916e75 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Wed, 9 May 2018 10:18:59 +0200 Subject: [PATCH 195/318] abrt-addon-ccpp do not require python2 if "with python3" Signed-off-by: Matej Habrnal --- abrt.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/abrt.spec b/abrt.spec index cbaea95..e2ce70e 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,7 +61,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.9 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -232,11 +232,12 @@ Requires: %{name}-retrace-client Requires: %{name} = %{version}-%{release} Requires: %{name}-addon-coredump-helper = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} +%if %{with python3} +Requires: python3-libreport +%else %if %{with python2} Requires: python2-libreport %endif # with python2 -%if %{with python3} -Requires: python3-libreport %endif # with python3 %description addon-ccpp @@ -1254,6 +1255,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed May 09 2018 Matej Habrnal 2.10.9-4Thu May 03 +- abrt-addon-ccpp do not require python2 if "with python3" + * Thu May 03 2018 Matej Habrnal 2.10.9-3 - drop python2-abrt-addon requires From 2c14e84f084040af49423dbc26d3f51c1c385a64 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Thu, 10 May 2018 13:15:45 +0200 Subject: [PATCH 196/318] abrt do not require python2 if "with python3" Signed-off-by: Matej Habrnal --- abrt.spec | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/abrt.spec b/abrt.spec index e2ce70e..5d27865 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,7 +61,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.9 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -113,13 +113,14 @@ Requires: systemd Requires: %{name}-libs = %{version}-%{release} Requires: python3-%{name} = %{version}-%{release} Requires(pre): %{shadow_utils} +%if %{with python3} +Requires: python3-augeas +Requires: python3-dbus +%else %if %{with python2} Requires: python2-augeas Requires: python2-dbus %endif # with python2 -%if %{with python3} -Requires: python3-augeas -Requires: python3-dbus %endif # with python3 %ifarch aarch64 i686 x86_64 Requires: dmidecode @@ -1255,7 +1256,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog -* Wed May 09 2018 Matej Habrnal 2.10.9-4Thu May 03 +* Thu May 10 2018 Matej Habrnal 2.10.9-5 +- abrt do not require python2 if "with python3" + +* Wed May 09 2018 Matej Habrnal 2.10.9-4 - abrt-addon-ccpp do not require python2 if "with python3" * Thu May 03 2018 Matej Habrnal 2.10.9-3 From dcab69a1fb5b086f44abe6d208a46c521e301741 Mon Sep 17 00:00:00 2001 From: Matej Marusak Date: Thu, 31 May 2018 11:10:41 +0200 Subject: [PATCH 197/318] New version 2.10.10 Signed-off-by: Matej Marusak --- .gitignore | 1 + abrt.spec | 18 +++++++++++++++--- sources | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 02415f7..5cb8def 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.7.tar.gz /abrt-2.10.8.tar.gz /abrt-2.10.9.tar.gz +/abrt-2.10.10.tar.gz diff --git a/abrt.spec b/abrt.spec index 5d27865..2e1f409 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,8 +60,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.9 -Release: 5%{?dist} +Version: 2.10.10 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -257,7 +257,7 @@ Summary: %{name}'s retrace client Requires: %{name} = %{version}-%{release} Requires: xz Requires: tar -Requires: nss-pem +Requires: p11-kit-trust %description retrace-client This package contains the client application for Retrace server @@ -1256,6 +1256,18 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu May 31 2018 Matej Marusak 2.10.10-1 +- Translation updates +- Changelog: Update changelog +- Remove dependency on deprecated nss-pem +- spec: abrt do not require python2 +- spec: abrt-addon-ccpp do not require python2 +- spec: drop python2-abrt-addon requires +- spec: fix bugs in python requires +- cores: comment an unclearing statement +- cores: print to stdout +- cores: read all journal files + * Thu May 10 2018 Matej Habrnal 2.10.9-5 - abrt do not require python2 if "with python3" diff --git a/sources b/sources index c4d3d4d..6e603ef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.9.tar.gz) = aff498ba52402593a853bb1e6d20c2c97137a5643d4f346a4568849d2fb5f3bb231e2c9f5c1f9742e3bb14de18de415ceede080fa089f8aa93955868bb6d5ad0 +SHA512 (abrt-2.10.10.tar.gz) = 1a9183346257bde09d69b2da032472d16661637124635e4959f47d1ec3272b550651f584e6e2c16893b25b906458c86379c3ee6cdbd1cba025bc9a71018048df From 042464a92918d2015a4c4579d860abef426b5b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Fri, 8 Jun 2018 18:22:35 +0200 Subject: [PATCH 198/318] Set PYTHON to python3 during install ...to avoid ambiguous python invocation Fixes a FTBFS https://bugzilla.redhat.com/show_bug.cgi?id=1589314 --- abrt.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 2e1f409..b6c2a9f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,7 +61,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -642,6 +642,7 @@ make %{?_smp_mflags} %install make install DESTDIR=$RPM_BUILD_ROOT \ + PYTHON=%{__python3} \ mandir=%{_mandir} \ dbusabrtdocdir=%{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ @@ -1256,6 +1257,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jun 08 2018 Miro Hrončok - 2.10.10-2 +- Set PYTHON to python3 during install to avoid ambiguous python invocation (#1589314) + * Thu May 31 2018 Matej Marusak 2.10.10-1 - Translation updates - Changelog: Update changelog From 3c2253dc6db17dc4950f688f96fb5cca82eae98c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 18 Jun 2018 18:17:04 +0200 Subject: [PATCH 199/318] Rebuilt for Python 3.7 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index b6c2a9f..fcf2c4f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,7 +61,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.10 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1257,6 +1257,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jun 18 2018 Miro Hrončok - 2.10.10-3 +- Rebuilt for Python 3.7 + * Fri Jun 08 2018 Miro Hrončok - 2.10.10-2 - Set PYTHON to python3 during install to avoid ambiguous python invocation (#1589314) From a09a33c9f537c632f75fb396226ffd21deb90bcb Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 00:09:12 -0500 Subject: [PATCH 200/318] Remove needless use of %defattr --- abrt.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index fcf2c4f..3a057e9 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1162,11 +1162,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %endif # with python3 %files plugin-sosreport -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/sosreport_event.conf %files plugin-machine-id -%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/machine-id_event.conf %{_libexecdir}/abrt-action-generate-machine-id From 4ac8f5f7a977d82cb53d47646cef5e111d8aaad0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 19:56:23 +0000 Subject: [PATCH 201/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 3a057e9..36a03f4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,7 +61,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1255,6 +1255,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 2.10.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon Jun 18 2018 Miro Hrončok - 2.10.10-3 - Rebuilt for Python 3.7 From c6814312f95e283711f25af087974c9e09d15a63 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 29 Jul 2018 23:12:01 +0200 Subject: [PATCH 202/318] =?UTF-8?q?%{python=5Fsitelib}=20=E2=86=92=20%{pyt?= =?UTF-8?q?hon2=5Fsitelib}?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Igor Gnatenko --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 36a03f4..1db20ad 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1239,7 +1239,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-python.5* %files -n python2-abrt-doc -%{python_sitelib}/problem_examples +%{python2_sitelib}/problem_examples %endif # with python2 %if %{with python3} From d26d5045197f82fdb133351a85b4c5437d1c05db Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 30 Jul 2018 00:22:30 +0200 Subject: [PATCH 203/318] =?UTF-8?q?%{python=5Fsitearch}=20=E2=86=92=20%{py?= =?UTF-8?q?thon2=5Fsitearch}?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Igor Gnatenko --- abrt.spec | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/abrt.spec b/abrt.spec index 1db20ad..11c4f6b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -1134,12 +1134,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_journalcatalogdir}/abrt_python.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python_format.conf %{_mandir}/man5/python_event.conf.5* -%{python_sitearch}/abrt.pth -%{python_sitearch}/abrt_exception_handler.* +%{python2_sitearch}/abrt.pth +%{python2_sitearch}/abrt_exception_handler.* %files -n python2-abrt-container-addon -%{python_sitearch}/abrt_container.pth -%{python_sitearch}/abrt_exception_handler_container.* +%{python2_sitearch}/abrt_container.pth +%{python2_sitearch}/abrt_exception_handler_container.* %endif # with python2 %if %{with python3} @@ -1235,7 +1235,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %if %{with python2} %files -n python2-abrt -%{python_sitearch}/problem/ +%{python2_sitearch}/problem/ %{_mandir}/man5/abrt-python.5* %files -n python2-abrt-doc From bcfb1b554dfc12fa5f760a91edf3ae1559bf4083 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Sat, 15 Sep 2018 15:14:00 -0700 Subject: [PATCH 204/318] Backport several bugfix commits, inc. gdb bt generation fail Generation of gdb backtraces in 2.10.10 is entirely broken. As I was backporting that fix, I saw three other bug fix commits that looked significant, so backported those too. One is needed for the package to build at all (the g_type_class_add_private replacement). --- ...-and-e-parameter-into-abrt-hook-ccpp.patch | 133 ++++++++++++++++++ ...-deprecated-g_type_class_add_private.patch | 62 ++++++++ ...ix-missing-argument-error-during-del.patch | 42 ++++++ ...the-syntax-for-gdb-backtrace-command.patch | 41 ++++++ abrt.spec | 20 ++- 5 files changed, 297 insertions(+), 1 deletion(-) create mode 100644 0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch create mode 100644 0001-gui-Replace-deprecated-g_type_class_add_private.patch create mode 100644 0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch create mode 100644 0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch diff --git a/0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch b/0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch new file mode 100644 index 0000000..6edf224 --- /dev/null +++ b/0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch @@ -0,0 +1,133 @@ +From 94dc5d2783133cea27b1ae804d5b8a2da06808c5 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 6 Jun 2018 14:04:09 +0200 +Subject: [PATCH] ccpp: add %h and %e parameter into abrt-hook-ccpp + +Without this commit core_pattern's parameter %h and %e was not +translated at all. + +If there is a white space in executable filename, %e replaced only by +the first part of executable name (till the space). Hence we decided +to get executable name from /proc/PID/exe symlink exist. + +Example: +If 'core_pattern = core.%h.%p.%t.%e' the result was +core.%h.26284.1469805542.sleep not +core.myshostmane.26284.1469805542.sleep with spaces + +Related to #1587891 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt-hook-ccpp.c | 36 +++++++++++++++++++---------- + src/hooks/abrt-install-ccpp-hook.in | 2 +- + 2 files changed, 25 insertions(+), 13 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 1c4e45e5..40117fc8 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -65,13 +65,13 @@ static struct dump_dir *dd; + * %t - UNIX time of dump + * %P - global pid + * %I - crash thread tid +- * %e - executable filename (can contain white spaces) ++ * %h - hostname ++ * %e - executable filename (can contain white spaces, must be placed at the end) + * %% - output one "%" + */ + /* Hook must be installed with exactly the same sequence of %c specifiers. +- * Last one, %h, may be omitted (we can find it out). + */ +-static const char percent_specifiers[] = "%scpugtePi"; ++static const char percent_specifiers[] = "%scpugtPIhe"; + static char *core_basename = (char*) "core"; + + static DIR *open_cwd(pid_t pid) +@@ -146,7 +146,8 @@ static int setfscreatecon_raw(security_context_t context) + } + #endif + +-static int open_user_core(uid_t uid, uid_t fsuid, gid_t fsgid, pid_t pid, char **percent_values) ++static int open_user_core(uid_t uid, uid_t fsuid, gid_t fsgid, pid_t pid, ++ char **percent_values, const char *executable_filename) + { + proc_cwd = open_cwd(pid); + if (proc_cwd == NULL) +@@ -196,7 +197,13 @@ static int open_user_core(uid_t uid, uid_t fsuid, gid_t fsgid, pid_t pid, char * + { + const char *val = "%"; + if (specifier_num > 0) /* not %% */ ++ { + val = percent_values[specifier_num - 1]; ++ /* if %e (executable filename), use executable from ++ * /proc/PID/exe symlink if exists */ ++ if (percent_specifiers[specifier_num] == 'e' && executable_filename) ++ val = executable_filename; ++ } + //log_warning("c:'%c'", c); + //log_warning("val:'%s'", val); + +@@ -917,9 +924,9 @@ int main(int argc, char** argv) + + if (argc < 8) + { +- /* 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]); ++ /* percent specifier: %s %c %p %u %g %t %P %I %h %e */ ++ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] */ ++ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME GLOBAL_PID GLOBAL_TID HOSTNAME BINARY_NAME", argv[0]); + } + + /* Not needed on 2.6.30. +@@ -1016,13 +1023,21 @@ int main(int argc, char** argv) + + snprintf(path, sizeof(path), "%s/last-ccpp", g_settings_dump_location); + ++ char *executable = get_executable_at(pid_proc_fd); ++ const char *last_slash = NULL; ++ if (executable) ++ { ++ last_slash = strrchr(executable, '/'); ++ /* if the last_slash was found, skip it */ ++ if (last_slash) ++last_slash; ++ } ++ + /* Open a fd to compat coredump, if requested and is possible */ + int user_core_fd = -1; + if (setting_MakeCompatCore && ulimit_c != 0) + /* note: checks "user_pwd == NULL" inside; updates core_basename */ +- user_core_fd = open_user_core(uid, fsuid, fsgid, pid, &argv[1]); ++ user_core_fd = open_user_core(uid, fsuid, fsgid, pid, &argv[1], (const char *)last_slash); + +- char *executable = get_executable_at(pid_proc_fd); + if (executable == NULL) + { + /* readlink on /proc/$PID/exe failed, don't create abrt dump dir */ +@@ -1031,9 +1046,6 @@ int main(int argc, char** argv) + return create_user_core(user_core_fd, pid, ulimit_c); + } + +- const char *last_slash = strrchr(executable, '/'); +- /* if the last_slash was found, skip it */ +- if (last_slash) ++last_slash; + + /* ignoring crashes */ + if (executable && is_path_ignored(setting_ignored_paths, executable)) +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index 660c2091..f8c0c610 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,7 +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 %P %I" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %P %I %h %e" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +-- +2.19.0 + diff --git a/0001-gui-Replace-deprecated-g_type_class_add_private.patch b/0001-gui-Replace-deprecated-g_type_class_add_private.patch new file mode 100644 index 0000000..c2aa22c --- /dev/null +++ b/0001-gui-Replace-deprecated-g_type_class_add_private.patch @@ -0,0 +1,62 @@ +From af51c51636eb0ca318e62d4c712f2ba3e60ed9b0 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Tue, 28 Aug 2018 10:26:47 +0200 +Subject: [PATCH] gui: Replace deprecated g_type_class_add_private + +g_type_class_add_private will be deprecated in Glib 2.58 [1]. + +There is a G_DEFINE_TYPE_WITH_PRIVATE macro that can replace +the deprecated function and it is backwards compatible [2]. + +[1] blog.gtk.org/2018/07/11/news-from-glib-2-58 +[2] bassi.io/articles/2013/06/21/the-king-is-dead + +Signed-off-by: Martin Kutlak +--- + src/configuration-gui/abrt-config-widget.c | 9 ++------- + 1 file changed, 2 insertions(+), 7 deletions(-) + +diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c +index 62910db6..aa3b5c01 100644 +--- a/src/configuration-gui/abrt-config-widget.c ++++ b/src/configuration-gui/abrt-config-widget.c +@@ -27,9 +27,6 @@ + #include "libabrt.h" + #include + +-#define ABRT_CONFIG_WIDGET_GET_PRIVATE(o) \ +- (G_TYPE_INSTANCE_GET_PRIVATE((o), TYPE_ABRT_CONFIG_WIDGET, AbrtConfigWidgetPrivate)) +- + #define WID(s) GTK_WIDGET(gtk_builder_get_object(self->priv->builder, s)) + + #define UI_FILE_NAME "abrt-config-widget.glade" +@@ -107,7 +104,7 @@ struct AbrtConfigWidgetPrivate { + AbrtConfigWidgetOption options[_ABRT_OPT_END_]; + }; + +-G_DEFINE_TYPE(AbrtConfigWidget, abrt_config_widget, GTK_TYPE_BOX) ++G_DEFINE_TYPE_WITH_PRIVATE(AbrtConfigWidget, abrt_config_widget, GTK_TYPE_BOX) + + enum { + SN_CHANGED, +@@ -214,8 +211,6 @@ abrt_config_widget_class_init(AbrtConfigWidgetClass *klass) + + object_class->finalize = abrt_config_widget_finalize; + +- g_type_class_add_private(klass, sizeof(AbrtConfigWidgetPrivate)); +- + s_signals[SN_CHANGED] = g_signal_new ("changed", + G_TYPE_FROM_CLASS (klass), + G_SIGNAL_RUN_LAST, +@@ -413,7 +408,7 @@ abrt_config_widget_init(AbrtConfigWidget *self) + { + GError *error = NULL; + +- self->priv = ABRT_CONFIG_WIDGET_GET_PRIVATE(self); ++ self->priv = abrt_config_widget_get_instance_private(self); + + self->priv->builder = gtk_builder_new(); + gtk_builder_set_translation_domain(self->priv->builder, GETTEXT_PACKAGE); +-- +2.19.0 + diff --git a/0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch b/0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch new file mode 100644 index 0000000..80ceab8 --- /dev/null +++ b/0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch @@ -0,0 +1,42 @@ +From 179843d3800f4dd66b143968792a81668a7b172a Mon Sep 17 00:00:00 2001 +From: Jake Daryll Obina +Date: Mon, 25 Jun 2018 11:52:11 +0800 +Subject: [PATCH] harvest_vmcore: Fix missing argument error during + delete_and_close() + +delete_and_close() requires a directory name argument and it is being called +without one. This argument is really not necessary though since the directory +name is already saved in the directory object (can be queried via the directory +object's name attribute), and it is the saved directory that is always deleted +regardless of the argument passed in. + +Signed-off-by: Jake Daryll Obina +--- + src/hooks/abrt_harvest_vmcore.py.in | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index 7d4bba52..66c3ad37 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -128,13 +128,15 @@ def create_abrtd_info(dest, uuid): + return dd + + +-def delete_and_close(dd, dd_dirname): ++def delete_and_close(dd): + """ + Deletes the given dump directory and closes it. + + dd - dump directory object +- dd_dirname - full path to dump directory + """ ++ # Save the directory name as the directory object could be destroyed during ++ # delete(). ++ dd_dirname = dd.name + if not dd.delete() == 0: + sys.stderr.write("Unable to delete '%s'\n" % (dd_dirname)) + return +-- +2.19.0 + diff --git a/0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch b/0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch new file mode 100644 index 0000000..4b72a1a --- /dev/null +++ b/0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch @@ -0,0 +1,41 @@ +From 057f8b0395a37765b856737cb25186c52b300389 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Tue, 24 Jul 2018 10:17:05 +0200 +Subject: [PATCH] lib: Correct the syntax for gdb backtrace command + +abrt-action-generate-backtrace generates backtraces with error message: +A syntax error in expression, near `full'. + +According to the GDB documentation the correct syntax for backtrace +command is: +backtrace [n] +backtrace full [n] + +- sourceware.org/gdb/onlinedocs/gdb/Backtrace.html + +Signed-off-by: Martin Kutlak +--- + src/lib/hooklib.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 135c7cde..b66fc119 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -353,11 +353,11 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + /* Limit bt depth. With no limit, gdb sometimes OOMs the machine */ + unsigned bt_depth = 1024; + const char *thread_apply_all = "thread apply all -ascending"; +- const char *full = " full"; ++ const char *full = "full "; + char *bt = NULL; + while (1) + { +- args[bt_cmd_index] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); ++ args[bt_cmd_index] = xasprintf("%s backtrace %s%u", thread_apply_all, full, bt_depth); + bt = exec_vp(args, /*redirect_stderr:*/ 1, timeout_sec, NULL); + free(args[bt_cmd_index]); + if ((bt && strnlen(bt, 256*1024) < 256*1024) || bt_depth <= 32) +-- +2.19.0 + diff --git a/abrt.spec b/abrt.spec index 11c4f6b..e68abcf 100644 --- a/abrt.spec +++ b/abrt.spec @@ -61,10 +61,18 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.10.10 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +# Backported fix for https://bugzilla.redhat.com/show_bug.cgi?id=1629408 +Patch0: 0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch +# Backport: fix use of deprecated function (breaks build, as -Werror is used) +Patch1: 0001-gui-Replace-deprecated-g_type_class_add_private.patch +# Backport: fix missing argument error in harvest_vmcore +Patch2: 0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch +# Backport: ccpp: add %h and %e parameter into abrt-hook-ccpp +Patch3: 0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch BuildRequires: %{dbus_devel} BuildRequires: gtk3-devel BuildRequires: glib2-devel >= 2.43 @@ -604,6 +612,10 @@ to the shell %prep %setup -q +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 %build autoconf @@ -1255,6 +1267,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sat Sep 15 2018 Adam Williamson - 2.10.10-5 +- Backport fix for RHBZ #1629408 (failed gdb backtrace generation) +- Backport fix for deprecated function use (broke build) +- Backport fix for argument error in harvest_vmcore +- Backport fix for missing parameter translations in abrt-hook-ccpp + * Thu Jul 12 2018 Fedora Release Engineering - 2.10.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 92d12039171a61dfbb7f837f5c45d55103648c95 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Mon, 8 Oct 2018 15:19:17 +0200 Subject: [PATCH 205/318] New upstream release 2.11.0 Signed-off-by: Martin Kutlak --- .gitignore | 1 + ...-and-e-parameter-into-abrt-hook-ccpp.patch | 133 ------------------ ...-deprecated-g_type_class_add_private.patch | 62 -------- ...ix-missing-argument-error-during-del.patch | 42 ------ ...the-syntax-for-gdb-backtrace-command.patch | 41 ------ abrt.spec | 24 ++-- sources | 2 +- 7 files changed, 16 insertions(+), 289 deletions(-) delete mode 100644 0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch delete mode 100644 0001-gui-Replace-deprecated-g_type_class_add_private.patch delete mode 100644 0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch delete mode 100644 0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch diff --git a/.gitignore b/.gitignore index 5cb8def..e2076f2 100644 --- a/.gitignore +++ b/.gitignore @@ -62,3 +62,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.8.tar.gz /abrt-2.10.9.tar.gz /abrt-2.10.10.tar.gz +/abrt-2.11.0.tar.gz diff --git a/0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch b/0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch deleted file mode 100644 index 6edf224..0000000 --- a/0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch +++ /dev/null @@ -1,133 +0,0 @@ -From 94dc5d2783133cea27b1ae804d5b8a2da06808c5 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Wed, 6 Jun 2018 14:04:09 +0200 -Subject: [PATCH] ccpp: add %h and %e parameter into abrt-hook-ccpp - -Without this commit core_pattern's parameter %h and %e was not -translated at all. - -If there is a white space in executable filename, %e replaced only by -the first part of executable name (till the space). Hence we decided -to get executable name from /proc/PID/exe symlink exist. - -Example: -If 'core_pattern = core.%h.%p.%t.%e' the result was -core.%h.26284.1469805542.sleep not -core.myshostmane.26284.1469805542.sleep with spaces - -Related to #1587891 - -Signed-off-by: Matej Habrnal ---- - src/hooks/abrt-hook-ccpp.c | 36 +++++++++++++++++++---------- - src/hooks/abrt-install-ccpp-hook.in | 2 +- - 2 files changed, 25 insertions(+), 13 deletions(-) - -diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c -index 1c4e45e5..40117fc8 100644 ---- a/src/hooks/abrt-hook-ccpp.c -+++ b/src/hooks/abrt-hook-ccpp.c -@@ -65,13 +65,13 @@ static struct dump_dir *dd; - * %t - UNIX time of dump - * %P - global pid - * %I - crash thread tid -- * %e - executable filename (can contain white spaces) -+ * %h - hostname -+ * %e - executable filename (can contain white spaces, must be placed at the end) - * %% - output one "%" - */ - /* Hook must be installed with exactly the same sequence of %c specifiers. -- * Last one, %h, may be omitted (we can find it out). - */ --static const char percent_specifiers[] = "%scpugtePi"; -+static const char percent_specifiers[] = "%scpugtPIhe"; - static char *core_basename = (char*) "core"; - - static DIR *open_cwd(pid_t pid) -@@ -146,7 +146,8 @@ static int setfscreatecon_raw(security_context_t context) - } - #endif - --static int open_user_core(uid_t uid, uid_t fsuid, gid_t fsgid, pid_t pid, char **percent_values) -+static int open_user_core(uid_t uid, uid_t fsuid, gid_t fsgid, pid_t pid, -+ char **percent_values, const char *executable_filename) - { - proc_cwd = open_cwd(pid); - if (proc_cwd == NULL) -@@ -196,7 +197,13 @@ static int open_user_core(uid_t uid, uid_t fsuid, gid_t fsgid, pid_t pid, char * - { - const char *val = "%"; - if (specifier_num > 0) /* not %% */ -+ { - val = percent_values[specifier_num - 1]; -+ /* if %e (executable filename), use executable from -+ * /proc/PID/exe symlink if exists */ -+ if (percent_specifiers[specifier_num] == 'e' && executable_filename) -+ val = executable_filename; -+ } - //log_warning("c:'%c'", c); - //log_warning("val:'%s'", val); - -@@ -917,9 +924,9 @@ int main(int argc, char** argv) - - if (argc < 8) - { -- /* 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]); -+ /* percent specifier: %s %c %p %u %g %t %P %I %h %e */ -+ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] */ -+ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME GLOBAL_PID GLOBAL_TID HOSTNAME BINARY_NAME", argv[0]); - } - - /* Not needed on 2.6.30. -@@ -1016,13 +1023,21 @@ int main(int argc, char** argv) - - snprintf(path, sizeof(path), "%s/last-ccpp", g_settings_dump_location); - -+ char *executable = get_executable_at(pid_proc_fd); -+ const char *last_slash = NULL; -+ if (executable) -+ { -+ last_slash = strrchr(executable, '/'); -+ /* if the last_slash was found, skip it */ -+ if (last_slash) ++last_slash; -+ } -+ - /* Open a fd to compat coredump, if requested and is possible */ - int user_core_fd = -1; - if (setting_MakeCompatCore && ulimit_c != 0) - /* note: checks "user_pwd == NULL" inside; updates core_basename */ -- user_core_fd = open_user_core(uid, fsuid, fsgid, pid, &argv[1]); -+ user_core_fd = open_user_core(uid, fsuid, fsgid, pid, &argv[1], (const char *)last_slash); - -- char *executable = get_executable_at(pid_proc_fd); - if (executable == NULL) - { - /* readlink on /proc/$PID/exe failed, don't create abrt dump dir */ -@@ -1031,9 +1046,6 @@ int main(int argc, char** argv) - return create_user_core(user_core_fd, pid, ulimit_c); - } - -- const char *last_slash = strrchr(executable, '/'); -- /* if the last_slash was found, skip it */ -- if (last_slash) ++last_slash; - - /* ignoring crashes */ - if (executable && is_path_ignored(setting_ignored_paths, executable)) -diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in -index 660c2091..f8c0c610 100755 ---- a/src/hooks/abrt-install-ccpp-hook.in -+++ b/src/hooks/abrt-install-ccpp-hook.in -@@ -11,7 +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 %P %I" -+PATTERN="|$HOOK_BIN %s %c %p %u %g %t %P %I %h %e" - - # core_pipe_limit specifies how many dump_helpers can run at the same time - # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing --- -2.19.0 - diff --git a/0001-gui-Replace-deprecated-g_type_class_add_private.patch b/0001-gui-Replace-deprecated-g_type_class_add_private.patch deleted file mode 100644 index c2aa22c..0000000 --- a/0001-gui-Replace-deprecated-g_type_class_add_private.patch +++ /dev/null @@ -1,62 +0,0 @@ -From af51c51636eb0ca318e62d4c712f2ba3e60ed9b0 Mon Sep 17 00:00:00 2001 -From: Martin Kutlak -Date: Tue, 28 Aug 2018 10:26:47 +0200 -Subject: [PATCH] gui: Replace deprecated g_type_class_add_private - -g_type_class_add_private will be deprecated in Glib 2.58 [1]. - -There is a G_DEFINE_TYPE_WITH_PRIVATE macro that can replace -the deprecated function and it is backwards compatible [2]. - -[1] blog.gtk.org/2018/07/11/news-from-glib-2-58 -[2] bassi.io/articles/2013/06/21/the-king-is-dead - -Signed-off-by: Martin Kutlak ---- - src/configuration-gui/abrt-config-widget.c | 9 ++------- - 1 file changed, 2 insertions(+), 7 deletions(-) - -diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c -index 62910db6..aa3b5c01 100644 ---- a/src/configuration-gui/abrt-config-widget.c -+++ b/src/configuration-gui/abrt-config-widget.c -@@ -27,9 +27,6 @@ - #include "libabrt.h" - #include - --#define ABRT_CONFIG_WIDGET_GET_PRIVATE(o) \ -- (G_TYPE_INSTANCE_GET_PRIVATE((o), TYPE_ABRT_CONFIG_WIDGET, AbrtConfigWidgetPrivate)) -- - #define WID(s) GTK_WIDGET(gtk_builder_get_object(self->priv->builder, s)) - - #define UI_FILE_NAME "abrt-config-widget.glade" -@@ -107,7 +104,7 @@ struct AbrtConfigWidgetPrivate { - AbrtConfigWidgetOption options[_ABRT_OPT_END_]; - }; - --G_DEFINE_TYPE(AbrtConfigWidget, abrt_config_widget, GTK_TYPE_BOX) -+G_DEFINE_TYPE_WITH_PRIVATE(AbrtConfigWidget, abrt_config_widget, GTK_TYPE_BOX) - - enum { - SN_CHANGED, -@@ -214,8 +211,6 @@ abrt_config_widget_class_init(AbrtConfigWidgetClass *klass) - - object_class->finalize = abrt_config_widget_finalize; - -- g_type_class_add_private(klass, sizeof(AbrtConfigWidgetPrivate)); -- - s_signals[SN_CHANGED] = g_signal_new ("changed", - G_TYPE_FROM_CLASS (klass), - G_SIGNAL_RUN_LAST, -@@ -413,7 +408,7 @@ abrt_config_widget_init(AbrtConfigWidget *self) - { - GError *error = NULL; - -- self->priv = ABRT_CONFIG_WIDGET_GET_PRIVATE(self); -+ self->priv = abrt_config_widget_get_instance_private(self); - - self->priv->builder = gtk_builder_new(); - gtk_builder_set_translation_domain(self->priv->builder, GETTEXT_PACKAGE); --- -2.19.0 - diff --git a/0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch b/0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch deleted file mode 100644 index 80ceab8..0000000 --- a/0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 179843d3800f4dd66b143968792a81668a7b172a Mon Sep 17 00:00:00 2001 -From: Jake Daryll Obina -Date: Mon, 25 Jun 2018 11:52:11 +0800 -Subject: [PATCH] harvest_vmcore: Fix missing argument error during - delete_and_close() - -delete_and_close() requires a directory name argument and it is being called -without one. This argument is really not necessary though since the directory -name is already saved in the directory object (can be queried via the directory -object's name attribute), and it is the saved directory that is always deleted -regardless of the argument passed in. - -Signed-off-by: Jake Daryll Obina ---- - src/hooks/abrt_harvest_vmcore.py.in | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in -index 7d4bba52..66c3ad37 100644 ---- a/src/hooks/abrt_harvest_vmcore.py.in -+++ b/src/hooks/abrt_harvest_vmcore.py.in -@@ -128,13 +128,15 @@ def create_abrtd_info(dest, uuid): - return dd - - --def delete_and_close(dd, dd_dirname): -+def delete_and_close(dd): - """ - Deletes the given dump directory and closes it. - - dd - dump directory object -- dd_dirname - full path to dump directory - """ -+ # Save the directory name as the directory object could be destroyed during -+ # delete(). -+ dd_dirname = dd.name - if not dd.delete() == 0: - sys.stderr.write("Unable to delete '%s'\n" % (dd_dirname)) - return --- -2.19.0 - diff --git a/0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch b/0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch deleted file mode 100644 index 4b72a1a..0000000 --- a/0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 057f8b0395a37765b856737cb25186c52b300389 Mon Sep 17 00:00:00 2001 -From: Martin Kutlak -Date: Tue, 24 Jul 2018 10:17:05 +0200 -Subject: [PATCH] lib: Correct the syntax for gdb backtrace command - -abrt-action-generate-backtrace generates backtraces with error message: -A syntax error in expression, near `full'. - -According to the GDB documentation the correct syntax for backtrace -command is: -backtrace [n] -backtrace full [n] - -- sourceware.org/gdb/onlinedocs/gdb/Backtrace.html - -Signed-off-by: Martin Kutlak ---- - src/lib/hooklib.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c -index 135c7cde..b66fc119 100644 ---- a/src/lib/hooklib.c -+++ b/src/lib/hooklib.c -@@ -353,11 +353,11 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char - /* Limit bt depth. With no limit, gdb sometimes OOMs the machine */ - unsigned bt_depth = 1024; - const char *thread_apply_all = "thread apply all -ascending"; -- const char *full = " full"; -+ const char *full = "full "; - char *bt = NULL; - while (1) - { -- args[bt_cmd_index] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); -+ args[bt_cmd_index] = xasprintf("%s backtrace %s%u", thread_apply_all, full, bt_depth); - bt = exec_vp(args, /*redirect_stderr:*/ 1, timeout_sec, NULL); - free(args[bt_cmd_index]); - if ((bt && strnlen(bt, 256*1024) < 256*1024) || bt_depth <= 32) --- -2.19.0 - diff --git a/abrt.spec b/abrt.spec index e68abcf..b56cf15 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,19 +60,11 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.10.10 -Release: 5%{?dist} +Version: 2.11.0 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -# Backported fix for https://bugzilla.redhat.com/show_bug.cgi?id=1629408 -Patch0: 0001-lib-Correct-the-syntax-for-gdb-backtrace-command.patch -# Backport: fix use of deprecated function (breaks build, as -Werror is used) -Patch1: 0001-gui-Replace-deprecated-g_type_class_add_private.patch -# Backport: fix missing argument error in harvest_vmcore -Patch2: 0001-harvest_vmcore-Fix-missing-argument-error-during-del.patch -# Backport: ccpp: add %h and %e parameter into abrt-hook-ccpp -Patch3: 0001-ccpp-add-h-and-e-parameter-into-abrt-hook-ccpp.patch BuildRequires: %{dbus_devel} BuildRequires: gtk3-devel BuildRequires: glib2-devel >= 2.43 @@ -1267,6 +1259,18 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Oct 08 2018 Martin Kutlak 2.11.0-1 +- Translation updates +- plugins: Allow abrt-retrace-client to be optional at build time +- daemon: Fix double closed fd race condition +- sosreport: plugin "general" split into two new plugins +- plugins: Replace vfork with posix_spawn +- gui-config: Remove deprecated GTK functions +- abrtd.service: force abrt-dbus to load changes from conf +- spec: Build python*-abrt-addon packages as noarch +- spec: remove duplicated python3-devel +- spec: set PYTHON variable because of ./py-compile + * Sat Sep 15 2018 Adam Williamson - 2.10.10-5 - Backport fix for RHBZ #1629408 (failed gdb backtrace generation) - Backport fix for deprecated function use (broke build) diff --git a/sources b/sources index 6e603ef..455b996 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.10.10.tar.gz) = 1a9183346257bde09d69b2da032472d16661637124635e4959f47d1ec3272b550651f584e6e2c16893b25b906458c86379c3ee6cdbd1cba025bc9a71018048df +SHA512 (abrt-2.11.0.tar.gz) = 1c322fcc1cabda687bc428cfe8e717cc060409996c3c19172426b5718fe3cb18836924f4b0f99adf8adabba984d9d92df96e8f17c9e0d537bfb6cd4c7aac7c33 From 8dd747fdeddc6d535bfb1d33f34241a092bb1d5e Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Mon, 8 Oct 2018 15:30:32 +0200 Subject: [PATCH 206/318] Remove omitted patches Forgot to remove these in 92d12039171a61dfbb7f837f5c45d55103648c95 Signed-off-by: Martin Kutlak --- abrt.spec | 4 ---- 1 file changed, 4 deletions(-) diff --git a/abrt.spec b/abrt.spec index b56cf15..ec33193 100644 --- a/abrt.spec +++ b/abrt.spec @@ -604,10 +604,6 @@ to the shell %prep %setup -q -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 %build autoconf From 50039757c0fe0ab5d19207ac0035c78588c7aafc Mon Sep 17 00:00:00 2001 From: Matej Marusak Date: Tue, 8 Jan 2019 11:19:43 +0100 Subject: [PATCH 207/318] New upstream release Signed-off-by: Matej Marusak --- .gitignore | 1 + abrt.spec | 89 ++++++++++++++++++++++++++++++------------------------ sources | 2 +- 3 files changed, 52 insertions(+), 40 deletions(-) diff --git a/.gitignore b/.gitignore index e2076f2..7bd2baf 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.9.tar.gz /abrt-2.10.10.tar.gz /abrt-2.11.0.tar.gz +/abrt-2.11.1.tar.gz diff --git a/abrt.spec b/abrt.spec index ec33193..2d39a36 100644 --- a/abrt.spec +++ b/abrt.spec @@ -25,12 +25,6 @@ # build abrt-atomic subpackage %bcond_without atomic -%ifarch aarch64 -%define have_kexec_tools 0 -%else -%define have_kexec_tools 1 -%endif - # rpmbuild --define 'desktopvendor mystring' %if "x%{desktopvendor}" == "x" %define desktopvendor %(source /etc/os-release; echo ${ID}) @@ -39,12 +33,10 @@ %if 0%{?suse_version} %define dbus_devel dbus-1-devel %define libjson_devel libjson-devel -%define nss_devel mozilla-nss-devel %define shadow_utils pwdutils %else %define dbus_devel dbus-devel %define libjson_devel json-c-devel -%define nss_devel nss-devel %define shadow_utils shadow-utils %endif @@ -55,17 +47,18 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.9.3 +%define libreport_ver 2.9.7 %define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.11.0 +Version: 2.11.1 Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: %{dbus_devel} +BuildRequires: hostname BuildRequires: gtk3-devel BuildRequires: glib2-devel >= 2.43 BuildRequires: rpm-devel >= 4.6 @@ -76,7 +69,7 @@ BuildRequires: gettext BuildRequires: libxml2-devel BuildRequires: intltool BuildRequires: libtool -BuildRequires: %{nss_devel} +BuildRequires: libsoup-devel BuildRequires: asciidoc BuildRequires: doxygen BuildRequires: xmlto @@ -187,6 +180,7 @@ Development libraries and headers for %{name}. %package gui-libs Summary: Libraries for %{name}-gui +Requires: %{name}-libs = %{version}-%{release} %description gui-libs Libraries for %{name}-gui. @@ -241,6 +235,7 @@ Requires: python2-libreport %endif # with python2 %endif # with python3 + %description addon-ccpp This package contains %{name}'s C/C++ analyzer plugin. @@ -258,6 +253,7 @@ Requires: %{name} = %{version}-%{release} Requires: xz Requires: tar Requires: p11-kit-trust +Requires: libsoup %description retrace-client This package contains the client application for Retrace server @@ -286,7 +282,6 @@ Requires: abrt-libs = %{version}-%{release} This package contains plugin for collecting Xorg crash information from Xorg log. -%if %{?have_kexec_tools} == 1 %package addon-vmcore Summary: %{name}'s vmcore addon Requires: %{name} = %{version}-%{release} @@ -306,7 +301,6 @@ Requires: util-linux %description addon-vmcore This package contains plugin for collecting kernel crash information from vmcore files. -%endif %package addon-pstoreoops Summary: %{name}'s pstore oops addon @@ -381,7 +375,7 @@ programs in container. %package plugin-sosreport Summary: %{name}'s plugin for building automatic sosreports -Requires: sos +Requires: sos >= 3.6 Requires: %{name} = %{version}-%{release} %description plugin-sosreport @@ -430,9 +424,7 @@ Requires: %{name} = %{version}-%{release} Requires: abrt-tui Requires: abrt-addon-kerneloops Requires: abrt-addon-pstoreoops -%if %{?have_kexec_tools} == 1 Requires: abrt-addon-vmcore -%endif Requires: abrt-addon-ccpp %if %{with python3} Requires: python3-abrt-addon @@ -470,9 +462,7 @@ Summary: Virtual package to make easy default installation on desktop environmen Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: abrt-addon-pstoreoops -%if %{?have_kexec_tools} == 1 Requires: abrt-addon-vmcore -%endif Requires: abrt-addon-ccpp %if %{with python3} Requires: python3-abrt-addon @@ -509,6 +499,7 @@ environment. %package atomic Summary: Package to make easy default installation on Atomic hosts. Requires: %{name}-addon-coredump-helper = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} Conflicts: %{name}-addon-ccpp %description atomic @@ -627,11 +618,8 @@ CFLAGS="%{optflags} -Werror" %configure \ --enable-suggest-autoreporting \ --enable-authenticated-autoreporting \ %endif -%ifnarch arm armhfp armv7hl armv7l aarch64 +%ifnarch %{arm} --enable-native-unwinder \ -%endif -%if %{?have_kexec_tools} == 0 - --disable-addon-vmcore \ %endif --with-defaultdumplocation=/var/%{var_base_dir}/abrt \ --enable-doxygen-docs \ @@ -642,7 +630,9 @@ make %{?_smp_mflags} %install make install DESTDIR=$RPM_BUILD_ROOT \ +%if %{with python3} PYTHON=%{__python3} \ +%endif # with python3 mandir=%{_mandir} \ dbusabrtdocdir=%{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ @@ -665,9 +655,9 @@ mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/abrt desktop-file-install \ --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ - src/applet/abrt-applet.desktop + src/applet/org.freedesktop.problems.applet.desktop -ln -sf %{_datadir}/applications/abrt-applet.desktop ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart/ +ln -sf %{_datadir}/applications/org.freedesktop.problems.applet.desktop ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart/ # After everything is installed, remove info dir rm -f %{buildroot}%{_infodir}/dir @@ -718,11 +708,9 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %journal_catalog_update %endif # with python3 -%if %{?have_kexec_tools} == 1 %post addon-vmcore %systemd_post abrt-vmcore.service %journal_catalog_update -%endif %post addon-pstoreoops %systemd_post abrt-pstoreoops.service @@ -743,10 +731,8 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %preun addon-xorg %systemd_preun abrt-xorg.service -%if %{?have_kexec_tools} == 1 %preun addon-vmcore %systemd_preun abrt-vmcore.service -%endif %preun addon-pstoreoops %systemd_preun abrt-pstoreoops.service @@ -767,10 +753,8 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %postun addon-xorg %systemd_postun_with_restart abrt-xorg.service -%if %{?have_kexec_tools} == 1 %postun addon-vmcore %systemd_postun_with_restart abrt-vmcore.service -%endif %postun addon-pstoreoops %systemd_postun_with_restart abrt-pstoreoops.service @@ -874,7 +858,6 @@ service abrt-oops condrestart >/dev/null 2>&1 || : %posttrans addon-xorg service abrt-xorg condrestart >/dev/null 2>&1 || : -%if %{?have_kexec_tools} == 1 %posttrans addon-vmcore service abrt-vmcore condrestart >/dev/null 2>&1 || : # Copy the configuration file to plugin's directory @@ -883,7 +866,6 @@ test -f /etc/abrt/abrt-harvest-vmcore.conf && { mv -b /etc/abrt/abrt-harvest-vmcore.conf /etc/abrt/plugins/vmcore.conf } exit 0 -%endif %posttrans addon-pstoreoops service abrt-pstoreoops condrestart >/dev/null 2>&1 || : @@ -990,8 +972,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_bindir}/abrt-applet %{_bindir}/system-config-abrt #%%{_bindir}/test-report -%{_datadir}/applications/abrt-applet.desktop -%config(noreplace) %{_sysconfdir}/xdg/autostart/abrt-applet.desktop +%{_datadir}/applications/org.freedesktop.problems.applet.desktop +%config(noreplace) %{_sysconfdir}/xdg/autostart/org.freedesktop.problems.applet.desktop +%{_datadir}/dbus-1/services/org.freedesktop.problems.applet.service %{_mandir}/man1/abrt-applet.1* %{_mandir}/man1/system-config-abrt.1* @@ -1098,7 +1081,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-dump-xorg.1* %{_mandir}/man1/abrt-dump-journal-xorg.1* -%if %{?have_kexec_tools} == 1 %files addon-vmcore %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf %{_mandir}/man5/vmcore_event.conf.5* @@ -1116,7 +1098,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-action-check-oops-for-hw-error.1* %{_journalcatalogdir}/abrt_vmcore.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_vmcore_format.conf -%endif %files addon-pstoreoops %{_unitdir}/abrt-pstoreoops.service @@ -1219,10 +1200,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.oops.xml +%if %{with python2} %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python.xml -%if %{?have_kexec_tools} == 1 +%endif # with python2 +%if %{with python3} +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python3.xml +%endif # with python3 %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.vmcore.xml -%endif %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xorg.xml %{_datadir}/dbus-1/system-services/org.freedesktop.problems.service %{_datadir}/dbus-1/system-services/com.redhat.problems.configuration.service @@ -1239,7 +1223,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-python.5* %files -n python2-abrt-doc -%{python2_sitelib}/problem_examples +%{python_sitelib}/problem_examples %endif # with python2 %if %{with python3} @@ -1255,6 +1239,33 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jan 08 2019 Matej Marusak 2.11.1-1 +- Translation updates +- a-a-install-debuginfo: Clean cache if we need space +- shellcheck: Use command instead of type +- shellcheck: Check exit code directly with if mycmd +- shellcheck: Suppress shellcheck warning SC1090 +- shellcheck: Use $(...) instead of legacy backticked +- cli: Add a shebang +- applet: Port to GApplication/GNotification +- spec: Add explicit package-version requirement of abrt-libs +- Introduce pylintrc +- augeas: Adjust testsuite to changes in libreport +- signal_is_fatal: generate problem reports for SIGSYS +- plugins: retrace-client: Port to libsoup +- plugins: retrace-client: Fix copy-paste error +- revert: spec: disable addon-vmcore on aarch64 +- spec: turn on --enable-native-unwinder aarch64 +- configure: Replace sphinx-build check with sphinx-build-3 +- a-a-c-o-f-hw-error: Check systemd-journal for MCE logs +- koops: Filter kernel oopses based on logged hostname +- add hostname BR for tests +- add new prepare-data to dist files +- fix tests names for dist target after making templates from them +- fix for MCE events: Bug 1613182 - abrt-cli ignores rsyslog host info and incorrectly assumes that the receiving host had a problem +- dbus: Add configuration for Python3 +- Add . to etc + * Mon Oct 08 2018 Martin Kutlak 2.11.0-1 - Translation updates - plugins: Allow abrt-retrace-client to be optional at build time diff --git a/sources b/sources index 455b996..e43da5f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.11.0.tar.gz) = 1c322fcc1cabda687bc428cfe8e717cc060409996c3c19172426b5718fe3cb18836924f4b0f99adf8adabba984d9d92df96e8f17c9e0d537bfb6cd4c7aac7c33 +SHA512 (abrt-2.11.1.tar.gz) = d2388bb1123e50ef1c8875e2feeeb8ab6830035e13362fe4f30b39207454c866a0c80412deef05e109814f42efc0c2d51eed4ee3fdc468f4b8eb340acff96226 From 895d076624616454a8e0061f72bf3dcb1a36d00d Mon Sep 17 00:00:00 2001 From: Matej Marusak Date: Tue, 8 Jan 2019 14:41:38 +0100 Subject: [PATCH 208/318] Update to work with new glib Signed-off-by: Matej Marusak --- ...bus-task-Use-modern-GLib-type-macros.patch | 299 ++++++++++++++++++ abrt.spec | 8 +- 2 files changed, 306 insertions(+), 1 deletion(-) create mode 100644 0001-dbus-task-Use-modern-GLib-type-macros.patch diff --git a/0001-dbus-task-Use-modern-GLib-type-macros.patch b/0001-dbus-task-Use-modern-GLib-type-macros.patch new file mode 100644 index 0000000..f188eeb --- /dev/null +++ b/0001-dbus-task-Use-modern-GLib-type-macros.patch @@ -0,0 +1,299 @@ +From 21bdee77727417b6b16feed7b466953873319b58 Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Tue, 8 Jan 2019 14:26:15 +0100 +Subject: [PATCH] dbus: task: Use modern GLib type macros + +Signed-off-by: Ernestas Kulik +--- + src/dbus/abrt_problems2_task.c | 111 ++++++++++++++++++++++++--------- + src/dbus/abrt_problems2_task.h | 26 +------- + 2 files changed, 82 insertions(+), 55 deletions(-) + +diff --git a/src/dbus/abrt_problems2_task.c b/src/dbus/abrt_problems2_task.c +index f40381f6..cba6b469 100644 +--- a/src/dbus/abrt_problems2_task.c ++++ b/src/dbus/abrt_problems2_task.c +@@ -25,6 +25,15 @@ enum { + + static guint s_signals[SN_LAST_SIGNAL] = { 0 }; + ++struct _AbrtP2TaskPrivate ++{ ++ gint32 p2t_status; ++ GVariant *p2t_details; ++ GVariant *p2t_results; ++ gint32 p2t_code; ++ GCancellable *p2t_cancellable; ++}; ++ + G_DEFINE_TYPE_WITH_PRIVATE(AbrtP2Task, abrt_p2_task, G_TYPE_OBJECT) + + static void abrt_p2_task_finalize(GObject *gobject) +@@ -74,17 +83,24 @@ static void abrt_p2_task_class_init(AbrtP2TaskClass *klass) + + static void abrt_p2_task_init(AbrtP2Task *self) + { +- self->pv = abrt_p2_task_get_instance_private(self); +- self->pv->p2t_details = g_variant_new("a{sv}", NULL); ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(self); ++ ++ pv->p2t_details = g_variant_new("a{sv}", NULL); + } + + static void abrt_p2_task_change_status(AbrtP2Task *task, + AbrtP2TaskStatus status) + { +- if (task->pv->p2t_status == status) ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ if (pv->p2t_status == status) + return; + +- task->pv->p2t_status = status; ++ pv->p2t_status = status; + + g_signal_emit(task, + s_signals[SN_STATUS_CHANGED], +@@ -94,53 +110,77 @@ static void abrt_p2_task_change_status(AbrtP2Task *task, + + AbrtP2TaskStatus abrt_p2_task_status(AbrtP2Task *task) + { +- return task->pv->p2t_status; ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ return pv->p2t_status; + } + + GVariant *abrt_p2_task_details(AbrtP2Task *task) + { +- return g_variant_ref(task->pv->p2t_details); ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ return g_variant_ref(pv->p2t_details); + } + + void abrt_p2_task_add_detail(AbrtP2Task *task, + const char *key, + GVariant *value) + { ++ AbrtP2TaskPrivate *pv; + GVariantDict dict; +- g_variant_dict_init(&dict, task->pv->p2t_details); ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ g_variant_dict_init(&dict, pv->p2t_details); + g_variant_dict_insert(&dict, key, "v", value); + +- if (task->pv->p2t_details) +- g_variant_unref(task->pv->p2t_details); ++ if (pv->p2t_details) ++ g_variant_unref(pv->p2t_details); + +- task->pv->p2t_details = g_variant_dict_end(&dict); ++ pv->p2t_details = g_variant_dict_end(&dict); + } + + void abrt_p2_task_set_response(AbrtP2Task *task, + GVariant *response) + { +- if (task->pv->p2t_results != NULL) ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ if (pv->p2t_results != NULL) + log_warning("Task already has response assigned"); + +- task->pv->p2t_results = response; ++ pv->p2t_results = response; + } + + bool abrt_p2_task_is_cancelled(AbrtP2Task *task) + { +- return (task->pv->p2t_cancellable +- && g_cancellable_is_cancelled(task->pv->p2t_cancellable)) +- || task->pv->p2t_status == ABRT_P2_TASK_STATUS_CANCELED; ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ return (pv->p2t_cancellable ++ && g_cancellable_is_cancelled(pv->p2t_cancellable)) ++ || pv->p2t_status == ABRT_P2_TASK_STATUS_CANCELED; + } + + void abrt_p2_task_cancel(AbrtP2Task *task, + GError **error) + { ++ AbrtP2TaskPrivate *pv; ++ + if (abrt_p2_task_is_cancelled(task)) + return; + +- if (task->pv->p2t_status == ABRT_P2_TASK_STATUS_RUNNING) +- g_cancellable_cancel(task->pv->p2t_cancellable); +- else if (task->pv->p2t_status == ABRT_P2_TASK_STATUS_STOPPED) ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ if (pv->p2t_status == ABRT_P2_TASK_STATUS_RUNNING) ++ g_cancellable_cancel(pv->p2t_cancellable); ++ else if (pv->p2t_status == ABRT_P2_TASK_STATUS_STOPPED) + { + ABRT_P2_TASK_VIRTUAL_CANCEL(task, error); + +@@ -157,8 +197,12 @@ void abrt_p2_task_finish(AbrtP2Task *task, + gint32 *code, + GError **error) + { +- if ( task->pv->p2t_status != ABRT_P2_TASK_STATUS_DONE +- && task->pv->p2t_status != ABRT_P2_TASK_STATUS_FAILED) ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ if ( pv->p2t_status != ABRT_P2_TASK_STATUS_DONE ++ && pv->p2t_status != ABRT_P2_TASK_STATUS_FAILED) + { + g_set_error(error, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, + "Cannot finalize undone task"); +@@ -170,12 +214,12 @@ void abrt_p2_task_finish(AbrtP2Task *task, + if (*error != NULL) + return; + +- if (task->pv->p2t_results) +- *result = g_variant_ref(task->pv->p2t_results); ++ if (pv->p2t_results) ++ *result = g_variant_ref(pv->p2t_results); + else + *result = g_variant_new("a{sv}", NULL); + +- *code = task->pv->p2t_code; ++ *code = pv->p2t_code; + } + + static void abrt_p2_task_finish_gtask(GObject *source_object, +@@ -183,6 +227,7 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, + gpointer user_data) + { + AbrtP2Task *task = ABRT_P2_TASK(source_object); ++ AbrtP2TaskPrivate *pv; + + if (!g_task_is_valid(result, task)) + { +@@ -190,6 +235,8 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, + return; + } + ++ pv = abrt_p2_task_get_instance_private(task); ++ + GError *error = NULL; + const gint32 code = g_task_propagate_int(G_TASK(result), &error); + +@@ -203,7 +250,7 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, + { + log_debug("Task done"); + +- task->pv->p2t_code = code - ABRT_P2_TASK_CODE_DONE; ++ pv->p2t_code = code - ABRT_P2_TASK_CODE_DONE; + abrt_p2_task_change_status(task, ABRT_P2_TASK_STATUS_DONE); + } + else if (abrt_p2_task_is_cancelled(task)) +@@ -263,8 +310,8 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, + abrt_p2_task_change_status(task, ABRT_P2_TASK_STATUS_FAILED); + } + +- g_object_unref(task->pv->p2t_cancellable); +- task->pv->p2t_cancellable = NULL; ++ g_object_unref(pv->p2t_cancellable); ++ pv->p2t_cancellable = NULL; + } + + static void abrt_p2_task_thread(GTask *task, +@@ -289,8 +336,12 @@ void abrt_p2_task_start(AbrtP2Task *task, + GVariant *options, + GError **error) + { +- if ( task->pv->p2t_status != ABRT_P2_TASK_STATUS_NEW +- && task->pv->p2t_status != ABRT_P2_TASK_STATUS_STOPPED) ++ AbrtP2TaskPrivate *pv; ++ ++ pv = abrt_p2_task_get_instance_private(task); ++ ++ if ( pv->p2t_status != ABRT_P2_TASK_STATUS_NEW ++ && pv->p2t_status != ABRT_P2_TASK_STATUS_STOPPED) + { + g_set_error(error, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, + "Cannot start task that is not new or stopped"); +@@ -302,9 +353,9 @@ void abrt_p2_task_start(AbrtP2Task *task, + if (*error != NULL) + return; + +- task->pv->p2t_cancellable = g_cancellable_new(); ++ pv->p2t_cancellable = g_cancellable_new(); + GTask *gtask = g_task_new(task, +- task->pv->p2t_cancellable, ++ pv->p2t_cancellable, + abrt_p2_task_finish_gtask, + NULL); + +diff --git a/src/dbus/abrt_problems2_task.h b/src/dbus/abrt_problems2_task.h +index 71f765d9..717af47b 100644 +--- a/src/dbus/abrt_problems2_task.h ++++ b/src/dbus/abrt_problems2_task.h +@@ -45,21 +45,12 @@ G_BEGIN_DECLS + GType abrt_p2_task_get_type (void); + + #define ABRT_TYPE_P2_TASK (abrt_p2_task_get_type ()) +-#define ABRT_P2_TASK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ABRT_TYPE_P2_TASK, AbrtP2Task)) +-#define ABRT_P2_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ABRT_TYPE_P2_TASK, AbrtP2TaskClass)) +-#define ABRT_IS_P2_TASK(obj)(G_TYPE_CHECK_INSTANCE_TYPE ((obj), ABRT_TYPE_P2_TASK)) +-#define ABRT_IS_P2_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ABRT_TYPE_P2_TASK)) +-#define ABRT_P2_TASK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ABRT_TYPE_P2_TASK, AbrtP2TaskClass)) ++G_DECLARE_DERIVABLE_TYPE(AbrtP2Task, abrt_p2_task, ABRT, P2_TASK, GObject) + + typedef struct _AbrtP2Task AbrtP2Task; + typedef struct _AbrtP2TaskClass AbrtP2TaskClass; + typedef struct _AbrtP2TaskPrivate AbrtP2TaskPrivate; + +-static inline void glib_autoptr_cleanup_AbrtP2Task(AbrtP2Task **task) +-{ +- glib_autoptr_cleanup_GObject((GObject **)task); +-} +- + typedef enum { + ABRT_P2_TASK_STATUS_NEW, + ABRT_P2_TASK_STATUS_RUNNING, +@@ -96,21 +87,6 @@ struct _AbrtP2TaskClass + gpointer padding[12]; + }; + +-struct _AbrtP2TaskPrivate +-{ +- gint32 p2t_status; +- GVariant *p2t_details; +- GVariant *p2t_results; +- gint32 p2t_code; +- GCancellable *p2t_cancellable; +-}; +- +-struct _AbrtP2Task +-{ +- GObject parent_instance; +- AbrtP2TaskPrivate *pv; +-}; +- + AbrtP2TaskStatus abrt_p2_task_status(AbrtP2Task *task); + + /* Returns task details in form of key-value entries. +-- +2.20.1 + diff --git a/abrt.spec b/abrt.spec index 2d39a36..7fb2611 100644 --- a/abrt.spec +++ b/abrt.spec @@ -53,10 +53,13 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.11.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +# With new glib it is not possible to build in rawhide +# https://github.com/abrt/abrt/commit/21bdee7 +Patch0: 0001-dbus-task-Use-modern-GLib-type-macros.patch BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel @@ -1239,6 +1242,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jan 08 2019 Matej Marusak 2.11.1-2 +- dbus: task: Use modern GLib type macros + * Tue Jan 08 2019 Matej Marusak 2.11.1-1 - Translation updates - a-a-install-debuginfo: Clean cache if we need space From 509bd67e3d5f50cbd89a843ab409e916537e7cbb Mon Sep 17 00:00:00 2001 From: Matej Marusak Date: Tue, 8 Jan 2019 15:02:34 +0100 Subject: [PATCH 209/318] Include forgotten macro Signed-off-by: Matej Marusak --- abrt.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 7fb2611..a029a6f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -597,7 +597,9 @@ A small script which prints a count of detected problems when someone logs in to the shell %prep -%setup -q +%global __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex +%autosetup -S git -p 0 + %build autoconf From 8086e64036449dca5f150e9bdb6bfdfae2633cb6 Mon Sep 17 00:00:00 2001 From: Matej Marusak Date: Sat, 12 Jan 2019 12:39:07 +0100 Subject: [PATCH 210/318] Fix use after free in applet Fixes BZ#1665521 Signed-off-by: Matej Marusak --- ...pplet-application-Fix-use-after-free.patch | 38 +++++++++++++++++++ abrt.spec | 1 + 2 files changed, 39 insertions(+) create mode 100644 0002-applet-application-Fix-use-after-free.patch diff --git a/0002-applet-application-Fix-use-after-free.patch b/0002-applet-application-Fix-use-after-free.patch new file mode 100644 index 0000000..f68ec6f --- /dev/null +++ b/0002-applet-application-Fix-use-after-free.patch @@ -0,0 +1,38 @@ +From cf78b299371995cbd7607a536f4b1469c09b40cf Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Sat, 12 Jan 2019 10:50:24 +0100 +Subject: [PATCH] applet: application: Fix use after free +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +dirlist_name is erroneously freed before it’s used to create a +directory. + +Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1665521 + +Signed-off-by: Ernestas Kulik +--- + src/applet/abrt-applet-application.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c +index 6e7ac00a..4b1d9a3c 100644 +--- a/src/applet/abrt-applet-application.c ++++ b/src/applet/abrt-applet-application.c +@@ -296,10 +296,10 @@ new_dir_exists (GList **new_dirs) + cachedir = g_get_user_cache_dir (); + dirlist_name = concat_path_file (cachedir, "abrt"); + +- g_free (dirlist_name); +- + g_mkdir_with_parents (dirlist_name, 0777); + ++ g_free (dirlist_name); ++ + dirlist_name = concat_path_file (cachedir, "abrt/applet_dirlist"); + fp = fopen (dirlist_name, "r+"); + if (fp == NULL) +-- +2.20.1 + diff --git a/abrt.spec b/abrt.spec index a029a6f..357763f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -60,6 +60,7 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta # With new glib it is not possible to build in rawhide # https://github.com/abrt/abrt/commit/21bdee7 Patch0: 0001-dbus-task-Use-modern-GLib-type-macros.patch +Patch1: 0002-applet-application-Fix-use-after-free.patch BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel From 9d7d233bf99797210c6db102f4bf0f6d3dcdee20 Mon Sep 17 00:00:00 2001 From: Matej Marusak Date: Sat, 12 Jan 2019 12:41:33 +0100 Subject: [PATCH 211/318] Bump up release Signed-off-by: Matej Marusak --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 357763f..f95f33d 100644 --- a/abrt.spec +++ b/abrt.spec @@ -53,7 +53,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.11.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz From eadff202bca229eecaaceefecfb83cffa878074e Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 27 Jan 2019 12:37:15 +0100 Subject: [PATCH 212/318] Remove obsolete scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- abrt.spec | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/abrt.spec b/abrt.spec index f95f33d..9a87998 100644 --- a/abrt.spec +++ b/abrt.spec @@ -53,7 +53,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.11.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -802,9 +802,7 @@ fi %systemd_postun_with_restart abrt-coredump-helper.service %endif # with atomic -%if 0%{?fedora} > 27 || 0%{?rhel} > 7 -# ldconfigi and gtk-update-icon-cache is not needed -%else +%if 0%{?rhel} && 0%{?rhel} <= 7 %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -876,13 +874,6 @@ exit 0 %posttrans addon-pstoreoops service abrt-pstoreoops condrestart >/dev/null 2>&1 || : -%if 0%{?fedora} > 27 -# gtk-update-icon-cache is not needed -%else -%posttrans gui -gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : -%endif - %posttrans dbus # Force abrt-dbus to restart like we do with the other services killall abrt-dbus >/dev/null 2>&1 || : @@ -1245,6 +1236,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sun Jan 27 2019 Igor Gnatenko - 2.11.1-4 +- Remove obsolete scriptlets + * Tue Jan 08 2019 Matej Marusak 2.11.1-2 - dbus: task: Use modern GLib type macros From ebf644594c833db09edd66c908b83d4c2fa6ceb6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 12:53:03 +0000 Subject: [PATCH 213/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 9a87998..c5442b0 100644 --- a/abrt.spec +++ b/abrt.spec @@ -53,7 +53,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.11.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1236,6 +1236,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 2.11.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sun Jan 27 2019 Igor Gnatenko - 2.11.1-4 - Remove obsolete scriptlets From c7b20eb39938f773fa48e106decba2663984cc87 Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Mon, 4 Feb 2019 14:27:10 +0100 Subject: [PATCH 214/318] Update to 2.12.0 Signed-off-by: Ernestas Kulik --- .gitignore | 1 + ...bus-task-Use-modern-GLib-type-macros.patch | 299 ------------------ ...pplet-application-Fix-use-after-free.patch | 38 --- abrt.spec | 19 +- sources | 2 +- 5 files changed, 12 insertions(+), 347 deletions(-) delete mode 100644 0001-dbus-task-Use-modern-GLib-type-macros.patch delete mode 100644 0002-applet-application-Fix-use-after-free.patch diff --git a/.gitignore b/.gitignore index 7bd2baf..16e185b 100644 --- a/.gitignore +++ b/.gitignore @@ -64,3 +64,4 @@ abrt-1.1.13.tar.gz /abrt-2.10.10.tar.gz /abrt-2.11.0.tar.gz /abrt-2.11.1.tar.gz +/abrt-2.12.0.tar.gz diff --git a/0001-dbus-task-Use-modern-GLib-type-macros.patch b/0001-dbus-task-Use-modern-GLib-type-macros.patch deleted file mode 100644 index f188eeb..0000000 --- a/0001-dbus-task-Use-modern-GLib-type-macros.patch +++ /dev/null @@ -1,299 +0,0 @@ -From 21bdee77727417b6b16feed7b466953873319b58 Mon Sep 17 00:00:00 2001 -From: Ernestas Kulik -Date: Tue, 8 Jan 2019 14:26:15 +0100 -Subject: [PATCH] dbus: task: Use modern GLib type macros - -Signed-off-by: Ernestas Kulik ---- - src/dbus/abrt_problems2_task.c | 111 ++++++++++++++++++++++++--------- - src/dbus/abrt_problems2_task.h | 26 +------- - 2 files changed, 82 insertions(+), 55 deletions(-) - -diff --git a/src/dbus/abrt_problems2_task.c b/src/dbus/abrt_problems2_task.c -index f40381f6..cba6b469 100644 ---- a/src/dbus/abrt_problems2_task.c -+++ b/src/dbus/abrt_problems2_task.c -@@ -25,6 +25,15 @@ enum { - - static guint s_signals[SN_LAST_SIGNAL] = { 0 }; - -+struct _AbrtP2TaskPrivate -+{ -+ gint32 p2t_status; -+ GVariant *p2t_details; -+ GVariant *p2t_results; -+ gint32 p2t_code; -+ GCancellable *p2t_cancellable; -+}; -+ - G_DEFINE_TYPE_WITH_PRIVATE(AbrtP2Task, abrt_p2_task, G_TYPE_OBJECT) - - static void abrt_p2_task_finalize(GObject *gobject) -@@ -74,17 +83,24 @@ static void abrt_p2_task_class_init(AbrtP2TaskClass *klass) - - static void abrt_p2_task_init(AbrtP2Task *self) - { -- self->pv = abrt_p2_task_get_instance_private(self); -- self->pv->p2t_details = g_variant_new("a{sv}", NULL); -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(self); -+ -+ pv->p2t_details = g_variant_new("a{sv}", NULL); - } - - static void abrt_p2_task_change_status(AbrtP2Task *task, - AbrtP2TaskStatus status) - { -- if (task->pv->p2t_status == status) -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ if (pv->p2t_status == status) - return; - -- task->pv->p2t_status = status; -+ pv->p2t_status = status; - - g_signal_emit(task, - s_signals[SN_STATUS_CHANGED], -@@ -94,53 +110,77 @@ static void abrt_p2_task_change_status(AbrtP2Task *task, - - AbrtP2TaskStatus abrt_p2_task_status(AbrtP2Task *task) - { -- return task->pv->p2t_status; -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ return pv->p2t_status; - } - - GVariant *abrt_p2_task_details(AbrtP2Task *task) - { -- return g_variant_ref(task->pv->p2t_details); -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ return g_variant_ref(pv->p2t_details); - } - - void abrt_p2_task_add_detail(AbrtP2Task *task, - const char *key, - GVariant *value) - { -+ AbrtP2TaskPrivate *pv; - GVariantDict dict; -- g_variant_dict_init(&dict, task->pv->p2t_details); -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ g_variant_dict_init(&dict, pv->p2t_details); - g_variant_dict_insert(&dict, key, "v", value); - -- if (task->pv->p2t_details) -- g_variant_unref(task->pv->p2t_details); -+ if (pv->p2t_details) -+ g_variant_unref(pv->p2t_details); - -- task->pv->p2t_details = g_variant_dict_end(&dict); -+ pv->p2t_details = g_variant_dict_end(&dict); - } - - void abrt_p2_task_set_response(AbrtP2Task *task, - GVariant *response) - { -- if (task->pv->p2t_results != NULL) -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ if (pv->p2t_results != NULL) - log_warning("Task already has response assigned"); - -- task->pv->p2t_results = response; -+ pv->p2t_results = response; - } - - bool abrt_p2_task_is_cancelled(AbrtP2Task *task) - { -- return (task->pv->p2t_cancellable -- && g_cancellable_is_cancelled(task->pv->p2t_cancellable)) -- || task->pv->p2t_status == ABRT_P2_TASK_STATUS_CANCELED; -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ return (pv->p2t_cancellable -+ && g_cancellable_is_cancelled(pv->p2t_cancellable)) -+ || pv->p2t_status == ABRT_P2_TASK_STATUS_CANCELED; - } - - void abrt_p2_task_cancel(AbrtP2Task *task, - GError **error) - { -+ AbrtP2TaskPrivate *pv; -+ - if (abrt_p2_task_is_cancelled(task)) - return; - -- if (task->pv->p2t_status == ABRT_P2_TASK_STATUS_RUNNING) -- g_cancellable_cancel(task->pv->p2t_cancellable); -- else if (task->pv->p2t_status == ABRT_P2_TASK_STATUS_STOPPED) -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ if (pv->p2t_status == ABRT_P2_TASK_STATUS_RUNNING) -+ g_cancellable_cancel(pv->p2t_cancellable); -+ else if (pv->p2t_status == ABRT_P2_TASK_STATUS_STOPPED) - { - ABRT_P2_TASK_VIRTUAL_CANCEL(task, error); - -@@ -157,8 +197,12 @@ void abrt_p2_task_finish(AbrtP2Task *task, - gint32 *code, - GError **error) - { -- if ( task->pv->p2t_status != ABRT_P2_TASK_STATUS_DONE -- && task->pv->p2t_status != ABRT_P2_TASK_STATUS_FAILED) -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ if ( pv->p2t_status != ABRT_P2_TASK_STATUS_DONE -+ && pv->p2t_status != ABRT_P2_TASK_STATUS_FAILED) - { - g_set_error(error, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, - "Cannot finalize undone task"); -@@ -170,12 +214,12 @@ void abrt_p2_task_finish(AbrtP2Task *task, - if (*error != NULL) - return; - -- if (task->pv->p2t_results) -- *result = g_variant_ref(task->pv->p2t_results); -+ if (pv->p2t_results) -+ *result = g_variant_ref(pv->p2t_results); - else - *result = g_variant_new("a{sv}", NULL); - -- *code = task->pv->p2t_code; -+ *code = pv->p2t_code; - } - - static void abrt_p2_task_finish_gtask(GObject *source_object, -@@ -183,6 +227,7 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, - gpointer user_data) - { - AbrtP2Task *task = ABRT_P2_TASK(source_object); -+ AbrtP2TaskPrivate *pv; - - if (!g_task_is_valid(result, task)) - { -@@ -190,6 +235,8 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, - return; - } - -+ pv = abrt_p2_task_get_instance_private(task); -+ - GError *error = NULL; - const gint32 code = g_task_propagate_int(G_TASK(result), &error); - -@@ -203,7 +250,7 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, - { - log_debug("Task done"); - -- task->pv->p2t_code = code - ABRT_P2_TASK_CODE_DONE; -+ pv->p2t_code = code - ABRT_P2_TASK_CODE_DONE; - abrt_p2_task_change_status(task, ABRT_P2_TASK_STATUS_DONE); - } - else if (abrt_p2_task_is_cancelled(task)) -@@ -263,8 +310,8 @@ static void abrt_p2_task_finish_gtask(GObject *source_object, - abrt_p2_task_change_status(task, ABRT_P2_TASK_STATUS_FAILED); - } - -- g_object_unref(task->pv->p2t_cancellable); -- task->pv->p2t_cancellable = NULL; -+ g_object_unref(pv->p2t_cancellable); -+ pv->p2t_cancellable = NULL; - } - - static void abrt_p2_task_thread(GTask *task, -@@ -289,8 +336,12 @@ void abrt_p2_task_start(AbrtP2Task *task, - GVariant *options, - GError **error) - { -- if ( task->pv->p2t_status != ABRT_P2_TASK_STATUS_NEW -- && task->pv->p2t_status != ABRT_P2_TASK_STATUS_STOPPED) -+ AbrtP2TaskPrivate *pv; -+ -+ pv = abrt_p2_task_get_instance_private(task); -+ -+ if ( pv->p2t_status != ABRT_P2_TASK_STATUS_NEW -+ && pv->p2t_status != ABRT_P2_TASK_STATUS_STOPPED) - { - g_set_error(error, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, - "Cannot start task that is not new or stopped"); -@@ -302,9 +353,9 @@ void abrt_p2_task_start(AbrtP2Task *task, - if (*error != NULL) - return; - -- task->pv->p2t_cancellable = g_cancellable_new(); -+ pv->p2t_cancellable = g_cancellable_new(); - GTask *gtask = g_task_new(task, -- task->pv->p2t_cancellable, -+ pv->p2t_cancellable, - abrt_p2_task_finish_gtask, - NULL); - -diff --git a/src/dbus/abrt_problems2_task.h b/src/dbus/abrt_problems2_task.h -index 71f765d9..717af47b 100644 ---- a/src/dbus/abrt_problems2_task.h -+++ b/src/dbus/abrt_problems2_task.h -@@ -45,21 +45,12 @@ G_BEGIN_DECLS - GType abrt_p2_task_get_type (void); - - #define ABRT_TYPE_P2_TASK (abrt_p2_task_get_type ()) --#define ABRT_P2_TASK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ABRT_TYPE_P2_TASK, AbrtP2Task)) --#define ABRT_P2_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ABRT_TYPE_P2_TASK, AbrtP2TaskClass)) --#define ABRT_IS_P2_TASK(obj)(G_TYPE_CHECK_INSTANCE_TYPE ((obj), ABRT_TYPE_P2_TASK)) --#define ABRT_IS_P2_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ABRT_TYPE_P2_TASK)) --#define ABRT_P2_TASK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ABRT_TYPE_P2_TASK, AbrtP2TaskClass)) -+G_DECLARE_DERIVABLE_TYPE(AbrtP2Task, abrt_p2_task, ABRT, P2_TASK, GObject) - - typedef struct _AbrtP2Task AbrtP2Task; - typedef struct _AbrtP2TaskClass AbrtP2TaskClass; - typedef struct _AbrtP2TaskPrivate AbrtP2TaskPrivate; - --static inline void glib_autoptr_cleanup_AbrtP2Task(AbrtP2Task **task) --{ -- glib_autoptr_cleanup_GObject((GObject **)task); --} -- - typedef enum { - ABRT_P2_TASK_STATUS_NEW, - ABRT_P2_TASK_STATUS_RUNNING, -@@ -96,21 +87,6 @@ struct _AbrtP2TaskClass - gpointer padding[12]; - }; - --struct _AbrtP2TaskPrivate --{ -- gint32 p2t_status; -- GVariant *p2t_details; -- GVariant *p2t_results; -- gint32 p2t_code; -- GCancellable *p2t_cancellable; --}; -- --struct _AbrtP2Task --{ -- GObject parent_instance; -- AbrtP2TaskPrivate *pv; --}; -- - AbrtP2TaskStatus abrt_p2_task_status(AbrtP2Task *task); - - /* Returns task details in form of key-value entries. --- -2.20.1 - diff --git a/0002-applet-application-Fix-use-after-free.patch b/0002-applet-application-Fix-use-after-free.patch deleted file mode 100644 index f68ec6f..0000000 --- a/0002-applet-application-Fix-use-after-free.patch +++ /dev/null @@ -1,38 +0,0 @@ -From cf78b299371995cbd7607a536f4b1469c09b40cf Mon Sep 17 00:00:00 2001 -From: Ernestas Kulik -Date: Sat, 12 Jan 2019 10:50:24 +0100 -Subject: [PATCH] applet: application: Fix use after free -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -dirlist_name is erroneously freed before it’s used to create a -directory. - -Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1665521 - -Signed-off-by: Ernestas Kulik ---- - src/applet/abrt-applet-application.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c -index 6e7ac00a..4b1d9a3c 100644 ---- a/src/applet/abrt-applet-application.c -+++ b/src/applet/abrt-applet-application.c -@@ -296,10 +296,10 @@ new_dir_exists (GList **new_dirs) - cachedir = g_get_user_cache_dir (); - dirlist_name = concat_path_file (cachedir, "abrt"); - -- g_free (dirlist_name); -- - g_mkdir_with_parents (dirlist_name, 0777); - -+ g_free (dirlist_name); -+ - dirlist_name = concat_path_file (cachedir, "abrt/applet_dirlist"); - fp = fopen (dirlist_name, "r+"); - if (fp == NULL) --- -2.20.1 - diff --git a/abrt.spec b/abrt.spec index c5442b0..4b9fe50 100644 --- a/abrt.spec +++ b/abrt.spec @@ -52,15 +52,11 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.11.1 -Release: 5%{?dist} +Version: 2.12.0 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -# With new glib it is not possible to build in rawhide -# https://github.com/abrt/abrt/commit/21bdee7 -Patch0: 0001-dbus-task-Use-modern-GLib-type-macros.patch -Patch1: 0002-applet-application-Fix-use-after-free.patch BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel @@ -603,11 +599,13 @@ to the shell %build -autoconf - %define var_base_dir spool -CFLAGS="%{optflags} -Werror" %configure \ +./gen-version +autoreconf -if +intltoolize --automake -c -f + +%configure \ %if %{without python2} --without-python2 \ %endif # with python2 @@ -1236,6 +1234,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Feb 4 2019 Ernestas Kulik - 2.12.0-1 +- Update to 2.12.0 + * Thu Jan 31 2019 Fedora Release Engineering - 2.11.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/sources b/sources index e43da5f..9217d6b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.11.1.tar.gz) = d2388bb1123e50ef1c8875e2feeeb8ab6830035e13362fe4f30b39207454c866a0c80412deef05e109814f42efc0c2d51eed4ee3fdc468f4b8eb340acff96226 +SHA512 (abrt-2.12.0.tar.gz) = 3567332399cd9708505a6d05c9388c7da5c14c7432e6fd40e5e76b6bcea8859c17b3b6c52a96ce54740e3682d75d8bf77dbc5fede80bd4fc6f72c60014f9cded From 5dfc50845c8668778d2ca70eb9c9cf966b8c7d6a Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Tue, 5 Feb 2019 16:47:12 +0100 Subject: [PATCH 215/318] Bump dependencies Forgot to do that the first time. Signed-off-by: Ernestas Kulik --- abrt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index 4b9fe50..7a46620 100644 --- a/abrt.spec +++ b/abrt.spec @@ -47,7 +47,7 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.9.7 +%define libreport_ver 2.10.0 %define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool @@ -60,7 +60,7 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel -BuildRequires: glib2-devel >= 2.43 +BuildRequires: glib2-devel >= 2.43.4 BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel @@ -1234,6 +1234,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Feb 5 2019 Ernestas Kulik - 2.12.0-2 +- Bump glib and libreport dependencies + * Mon Feb 4 2019 Ernestas Kulik - 2.12.0-1 - Update to 2.12.0 From 67f63a5ca4201002f3ed709587ea32c14b78c2dd Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Tue, 5 Feb 2019 16:49:11 +0100 Subject: [PATCH 216/318] Bump release Forgot to do that, too. Signed-off-by: Ernestas Kulik --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 7a46620..d6eb422 100644 --- a/abrt.spec +++ b/abrt.spec @@ -53,7 +53,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.12.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz From 1ee4720bcaa74dca09b07a0bf7ea78ded154d562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 4 Apr 2019 15:45:29 +0200 Subject: [PATCH 217/318] BR git explicitly, it is used in %prep Previously, it was pulled in transitively, that is no longer true. Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.k6RazT ... + /usr/bin/git init -q /var/tmp/rpm-tmp.k6RazT: line 42: /usr/bin/git: No such file or directory error: Bad exit status from /var/tmp/rpm-tmp.k6RazT (%prep) --- abrt.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/abrt.spec b/abrt.spec index d6eb422..7b3e7f8 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,6 +57,7 @@ Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel From 17aa2db63d658d260fce7c719187b50f068ad975 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 10 Jun 2019 17:41:59 +0200 Subject: [PATCH 218/318] Rebuild for RPM 4.15 Signed-off-by: Igor Gnatenko --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 7b3e7f8..10fa8f1 100644 --- a/abrt.spec +++ b/abrt.spec @@ -53,7 +53,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.12.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1235,6 +1235,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jun 10 15:41:59 CET 2019 Igor Gnatenko - 2.12.0-3 +- Rebuild for RPM 4.15 + * Tue Feb 5 2019 Ernestas Kulik - 2.12.0-2 - Bump glib and libreport dependencies From f9e66658209c25a236a3d55cb60d933624b92605 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 11 Jun 2019 00:13:16 +0200 Subject: [PATCH 219/318] Rebuild for RPM 4.15 Signed-off-by: Igor Gnatenko --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 10fa8f1..3fe57ed 100644 --- a/abrt.spec +++ b/abrt.spec @@ -53,7 +53,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.12.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1235,6 +1235,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jun 10 22:13:16 CET 2019 Igor Gnatenko - 2.12.0-4 +- Rebuild for RPM 4.15 + * Mon Jun 10 15:41:59 CET 2019 Igor Gnatenko - 2.12.0-3 - Rebuild for RPM 4.15 From 6b11b1ff26d98412601e7bdda4b4f44c89b85ed2 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Wed, 3 Jul 2019 17:45:54 +0200 Subject: [PATCH 220/318] New upstream release version 2.12.1 * Remove gen-version from spec - This is upstream script to generate version. This is not needed in dist-git. [2.12.1] Added - Require dbus-tools for dbus-send command. Changed - ABRT won't process crashes coming from unpackaged applications by default. - Completely removed support for Python2. - Update new ABRT icon. - retrace-client defaults to https. - Updated man pages. - Removed configurations from /usr/share/abrt. - Removed provides for abrt-python packages. Fixed - Gracefully handle exceptions comming from abrt-action-generate-machine-id. - Gracefully handle exceptions comming from abrt-action-install-debuginfo. - Use correct name of environment variable for retrace-server. Signed-off-by: Martin Kutlak --- .gitignore | 1 + abrt.spec | 222 ++++++++++++----------------------------------------- sources | 2 +- 3 files changed, 49 insertions(+), 176 deletions(-) diff --git a/.gitignore b/.gitignore index 16e185b..740a5ff 100644 --- a/.gitignore +++ b/.gitignore @@ -65,3 +65,4 @@ abrt-1.1.13.tar.gz /abrt-2.11.0.tar.gz /abrt-2.11.1.tar.gz /abrt-2.12.0.tar.gz +/abrt-2.12.1.tar.gz diff --git a/abrt.spec b/abrt.spec index 3fe57ed..6b46536 100644 --- a/abrt.spec +++ b/abrt.spec @@ -9,13 +9,6 @@ %bcond_with python3 %endif -%if 0%{?rhel} > 7 || 0%{?fedora} > 28 -# Disable python2 build by default -%bcond_with python2 -%else -%bcond_without python2 -%endif - %if 0%{?rhel}%{?suse_version} %bcond_with bodhi %else @@ -52,8 +45,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.12.0 -Release: 4%{?dist} +Version: 2.12.1 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -78,13 +71,6 @@ BuildRequires: libreport-devel >= %{libreport_ver} BuildRequires: satyr-devel >= %{satyr_ver} BuildRequires: augeas BuildRequires: libselinux-devel -%if %{with python2} -BuildRequires: python2-devel -BuildRequires: python2-systemd -BuildRequires: python2-argcomplete -BuildRequires: python2-argh -BuildRequires: python2-humanize -%endif # with python2 %if %{with python3} BuildRequires: python3-devel BuildRequires: python3-systemd @@ -110,11 +96,6 @@ Requires(pre): %{shadow_utils} %if %{with python3} Requires: python3-augeas Requires: python3-dbus -%else -%if %{with python2} -Requires: python2-augeas -Requires: python2-dbus -%endif # with python2 %endif # with python3 %ifarch aarch64 i686 x86_64 Requires: dmidecode @@ -145,13 +126,6 @@ BuildRequires: libreport-web-devel >= %{libreport_ver} BuildRequires: gdb-headless #dbus BuildRequires: polkit-devel -%if %{with python2} -#python2-abrt -BuildRequires: python2-sphinx -BuildRequires: python2-libreport -#python2-abrt-doc -BuildRequires: python2-devel -%endif # with python2 %if %{with python3} #python3-abrt BuildRequires: python3-nose @@ -230,10 +204,6 @@ Requires: %{name}-addon-coredump-helper = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} %if %{with python3} Requires: python3-libreport -%else -%if %{with python2} -Requires: python2-libreport -%endif # with python2 %endif # with python3 @@ -291,11 +261,6 @@ Requires: kexec-tools %if %{with python3} Requires: python3-abrt Requires: python3-augeas -%else -%if %{with python2} -Requires: python2-abrt -Requires: python2-augeas -%endif # with python2 %endif # with python3 Requires: util-linux @@ -324,41 +289,12 @@ Provides: libreport-plugin-bodhi = %{version}-%{release} Search for a new updates in bodhi server. %endif -%if %{with python2} -%package -n python2-abrt-addon -Summary: %{name}'s addon for catching and analyzing Python exceptions -Requires: %{name} = %{version}-%{release} -Requires: python2-systemd -Requires: python2-abrt -# Remove before F30 -Provides: abrt-addon-python = %{version}-%{release} -Provides: abrt-addon-python%{?_isa} = %{version}-%{release} -Obsoletes: abrt-addon-python < 2.10.4 - -%description -n python2-abrt-addon -This package contains python hook and python analyzer plugin for handling -uncaught exception in python programs. - -%package -n python2-abrt-container-addon -Summary: %{name}'s container addon for catching Python 2 exceptions -Conflicts: python2-abrt-addon -Requires: container-exception-logger - -%description -n python2-abrt-container-addon -This package contains python 2 hook and handling uncaught exception in python 2 -programs in container. -%endif # with python2 - %if %{with python3} %package -n python3-abrt-addon Summary: %{name}'s addon for catching and analyzing Python 3 exceptions Requires: %{name} = %{version}-%{release} Requires: python3-systemd Requires: python3-abrt -# Remove before F30 -Provides: abrt-addon-python3 = %{version}-%{release} -Provides: abrt-addon-python3%{?_isa} = %{version}-%{release} -Obsoletes: abrt-addon-python3 < 2.10.4 %description -n python3-abrt-addon This package contains python 3 hook and python analyzer plugin for handling @@ -512,47 +448,12 @@ hosts. Summary: ABRT DBus service Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} +Requires: dbus-tools %description dbus ABRT DBus service which provides org.freedesktop.problems API on dbus and uses PolicyKit to authorize to access the problem data. -%if %{with python2} -%package -n python2-abrt -Summary: ABRT Python API -Requires: %{name} = %{version}-%{release} -Requires: %{name}-libs = %{version}-%{release} -Requires: %{name}-dbus = %{version}-%{release} -Requires: python2-dbus -Requires: python2-libreport -%if 0%{?rhel:%{rhel} == 7} -Requires: python-gobject-base -%else -Requires: python2-gobject-base -%endif -%{?python_provide:%python_provide python2-abrt} -# Remove before F30 -Provides: %{name}-python = %{version}-%{release} -Provides: %{name}-python%{?_isa} = %{version}-%{release} -Obsoletes: %{name}-python < 2.10.4 - -%description -n python2-abrt -High-level API for querying, creating and manipulating -problems handled by ABRT in Python. - -%package -n python2-abrt-doc -Summary: ABRT Python API Documentation -BuildArch: noarch -Requires: %{name} = %{version}-%{release} -Requires: python2-abrt = %{version}-%{release} -# Remove before F30 -Provides: %{name}-python-doc = %{version}-%{release} -Obsoletes: %{name}-python-doc < 2.10.4 - -%description -n python2-abrt-doc -Examples and documentation for ABRT Python API. -%endif # with python2 - %if %{with python3} %package -n python3-abrt Summary: ABRT Python 3 API @@ -561,11 +462,6 @@ Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-dbus = %{version}-%{release} Requires: python3-dbus Requires: python3-libreport -%{?python_provide:%python_provide python3-abrt} -# Remove before F30 -Provides: %{name}-python3 = %{version}-%{release} -Provides: %{name}-python3%{?_isa} = %{version}-%{release} -Obsoletes: %{name}-python3 < 2.10.4 Requires: python3-gobject-base %description -n python3-abrt @@ -577,9 +473,6 @@ Summary: ABRT Python API Documentation BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: python3-%{name} = %{version}-%{release} -# Remove before F30 -Provides: %{name}-python3-doc = %{version}-%{release} -Obsoletes: %{name}-python3-doc < 2.10.4 %description -n python3-abrt-doc Examples and documentation for ABRT Python 3 API. @@ -602,14 +495,10 @@ to the shell %build %define var_base_dir spool -./gen-version autoreconf -if intltoolize --automake -c -f %configure \ -%if %{without python2} - --without-python2 \ -%endif # with python2 %if %{without python3} --without-python3 \ %endif # with python3 @@ -703,11 +592,6 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_post abrt-xorg.service %journal_catalog_update -%if %{with python2} -%post -n python2-abrt-addon -%journal_catalog_update -%endif # with python2 - %if %{with python3} %post -n python3-abrt-addon %journal_catalog_update @@ -777,25 +661,15 @@ if [ -f /etc/abrt/plugins/CCpp.conf ]; then mv /etc/abrt/plugins/CCpp.conf /etc/abrt/plugins/CCpp.conf.rpmsave.atomic || exit 1; fi ln -sf /etc/abrt/plugins/CCpp_Atomic.conf /etc/abrt/plugins/CCpp.conf -if [ -f /usr/share/abrt/conf.d/plugins/CCpp.conf ]; then - mv /usr/share/abrt/conf.d/plugins/CCpp.conf /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic || exit 1; -fi -ln -sf /usr/share/abrt/conf.d/plugins/CCpp_Atomic.conf /usr/share/abrt/conf.d/plugins/CCpp.conf %systemd_post abrt-coredump-helper.service %preun atomic if [ -L /etc/abrt/plugins/CCpp.conf ]; then rm /etc/abrt/plugins/CCpp.conf fi -if [ -L /usr/share/abrt/conf.d/plugins/CCpp.conf ]; then - rm /usr/share/abrt/conf.d/plugins/CCpp.conf -fi if [ -f /etc/abrt/plugins/CCpp.conf.rpmsave.atomic ]; then mv /etc/abrt/plugins/CCpp.conf.rpmsave.atomic /etc/abrt/plugins/CCpp.conf || exit 1 fi -if [ -f /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic ]; then - mv /usr/share/abrt/conf.d/plugins/CCpp.conf.rpmsave.atomic /usr/share/abrt/conf.d/plugins/CCpp.conf || exit 1 -fi %postun atomic %systemd_postun_with_restart abrt-coredump-helper.service @@ -896,12 +770,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_bindir}/abrt-action-analyze-xorg %config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.freedesktop.problems.daemon.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf -%{_datadir}/%{name}/conf.d/abrt-action-save-package-data.conf %config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf -%{_datadir}/%{name}/conf.d/plugins/xorg.conf %{_mandir}/man5/abrt-xorg.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys.conf -%{_datadir}/%{name}/conf.d/gpg_keys.conf %{_mandir}/man5/gpg_keys.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf %{_mandir}/man5/abrt_event.conf.5* @@ -928,13 +799,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %files libs %{_libdir}/libabrt.so.* %config(noreplace) %{_sysconfdir}/%{name}/abrt.conf -%{_datadir}/%{name}/conf.d/abrt.conf %{_mandir}/man5/abrt.conf.5* %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins -%dir %{_datadir}/%{name} -%dir %{_datadir}/%{name}/conf.d -%dir %{_datadir}/%{name}/conf.d/plugins # filesystem package should own /usr/share/augeas/lenses directory %{_datadir}/augeas/lenses/abrt.aug @@ -962,8 +829,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %dir %{_datadir}/%{name} # all glade, gtkbuilder and py files for gui %{_datadir}/icons/hicolor/*/apps/* -%{_datadir}/icons/hicolor/*/status/* -%{_datadir}/%{name}/icons/hicolor/*/status/* %{_datadir}/%{name}/ui/* %{_bindir}/abrt-applet %{_bindir}/system-config-abrt @@ -981,7 +846,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %files addon-ccpp %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf -%{_datadir}/%{name}/conf.d/plugins/CCpp.conf %{_mandir}/man5/abrt-CCpp.conf.5* %{_libexecdir}/abrt-gdb-exploitable %{_journalcatalogdir}/abrt_ccpp.catalog @@ -1053,7 +917,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_koops_format.conf %{_mandir}/man5/koops_event.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/plugins/oops.conf -%{_datadir}/%{name}/conf.d/plugins/oops.conf %{_unitdir}/abrt-oops.service %dir %{_localstatedir}/lib/abrt @@ -1081,7 +944,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf %{_mandir}/man5/vmcore_event.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/plugins/vmcore.conf -%{_datadir}/%{name}/conf.d/plugins/vmcore.conf %{_datadir}/libreport/events/analyze_VMcore.xml %{_unitdir}/abrt-vmcore.service %{_sbindir}/abrt-harvest-vmcore @@ -1102,30 +964,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-harvest-pstoreoops.1* %{_mandir}/man1/abrt-merge-pstoreoops.1* -%if %{with python2} -%files -n python2-abrt-addon -%config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf -%{_datadir}/%{name}/conf.d/plugins/python.conf -%{_mandir}/man5/abrt-python.conf.5* -%config(noreplace) %{_sysconfdir}/libreport/events.d/python_event.conf -%{_journalcatalogdir}/abrt_python.catalog -%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python_format.conf -%{_mandir}/man5/python_event.conf.5* -%{python2_sitearch}/abrt.pth -%{python2_sitearch}/abrt_exception_handler.* - -%files -n python2-abrt-container-addon -%{python2_sitearch}/abrt_container.pth -%{python2_sitearch}/abrt_exception_handler_container.* -%endif # with python2 - %if %{with python3} %files -n python3-abrt-addon %config(noreplace) %{_sysconfdir}/%{name}/plugins/python3.conf -%{_datadir}/%{name}/conf.d/plugins/python3.conf -%{_mandir}/man5/abrt-python3.conf.5* +%{_mandir}/man5/python3-abrt.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/python3_event.conf -%{_journalcatalogdir}/abrt_python3.catalog +%{_journalcatalogdir}/python3_abrt.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf %{_mandir}/man5/python3_event.conf.5* %{python3_sitearch}/abrt3.pth @@ -1165,7 +1009,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %files atomic %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp_Atomic.conf %{_unitdir}/abrt-coredump-helper.service -%{_datadir}/%{name}/conf.d/plugins/CCpp_Atomic.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %{_bindir}/abrt-action-save-package-data %{_mandir}/man1/abrt-action-save-package-data.1* @@ -1196,9 +1039,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.oops.xml -%if %{with python2} -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python.xml -%endif # with python2 %if %{with python3} %{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python3.xml %endif # with python3 @@ -1213,19 +1053,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/*.css %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_dbus_event.conf -%if %{with python2} -%files -n python2-abrt -%{python2_sitearch}/problem/ -%{_mandir}/man5/abrt-python.5* - -%files -n python2-abrt-doc -%{python_sitelib}/problem_examples -%endif # with python2 - %if %{with python3} %files -n python3-abrt %{python3_sitearch}/problem/ -%{_mandir}/man5/abrt-python3.5* +%{_mandir}/man5/python3-abrt.5* %files -n python3-abrt-doc %{python3_sitelib}/problem_examples @@ -1235,6 +1066,47 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 03 2019 Martin Kutlak 2.12.1-1 +- Translation updates +- Rename all abrt-python to python3-abrt +- spec: Get rid of python provides +- hooks: abrt-hook-ccpp: Rename CreateCoreBacktrace setting +- Update icon +- non-fatal-mce: prepare oops1.test from template before using it +- meaningful-logs: check relative counts of lines instead of absolute +- oops-processing: fixed oops1.test handling. reworked so each oops has its own phase +- dumpoops: make sure hostname matches in oops_full_hostname.test +- Revert "applet: Add systemd service unit" +- a-a-analyze-c: Fix segfault when saving function name +- Fix grammar in implementation docs +- doc: Update man pages and mention locations of config files +- augeas,build,spec: Remove references to default configs +- daemon,lib: Update default config according to abrt.conf +- plugins: abrt-action-install-debuginfo: Replace uses of exit() +- plugins: abrt-action-install-debuginfo: Catch BrokenPipeError +- plugins: abrt-action-install-debuginfo: Remove unused imports +- daemon: Check return value after reading from channel +- spec: Require dbus-tools +- daemon: Don't process crashes from unpackaged apps by default +- plugins: abrt-action-install-debuginfo: Remove duplicate code +- plugins: abrt-action-install-debuginfo: Remove variable +- plugins: abrt-action-install-debuginfo: Remove comment +- plugins: abrt-action-install-debuginfo: Remove dead assignment +- doc: Fix spelling mistake in path to cache +- doc: Update man page for abrt-handle-upload +- doc: Update man page and help for a-a-install-debuginfo +- Nuke Python 2 support +- plugins: Catch unhandled exception in a-a-g-machine-id +- plugins: retrace-client: Bail out if we can’t get a config +- plugins: retrace-client: Default to HTTPS in RETRACE_SERVER_URI +- plugins: analyze_RetraceServer: Fix default RETRACE_SERVER_URI +- plugins: Fix name of env variable for retrace server +- configure.ac: Add dependency on libcap +- dbus: entry: Don’t claim truncation when there was none +- applet: Add systemd service unit +- spec: Remove obsolete scriptlets +- Makefile.am: Use correct locale when getting date + * Mon Jun 10 22:13:16 CET 2019 Igor Gnatenko - 2.12.0-4 - Rebuild for RPM 4.15 diff --git a/sources b/sources index 9217d6b..7f2ac7a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.12.0.tar.gz) = 3567332399cd9708505a6d05c9388c7da5c14c7432e6fd40e5e76b6bcea8859c17b3b6c52a96ce54740e3682d75d8bf77dbc5fede80bd4fc6f72c60014f9cded +SHA512 (abrt-2.12.1.tar.gz) = e5a8ceed76c152523932bfa626e20ce110ecd7d1c87b421ef99986c4782f537b1e4af6d93d73abca7187a7d67592a4b820bd3bcc93f02bc7ee025054eacb5738 From a2c5fdd9e893b0705a291d3281c1448ec3a2aa5b Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Fri, 12 Jul 2019 17:36:43 +0200 Subject: [PATCH 221/318] Add patch to fix failing a-a-list-dsos on rawhide Signed-off-by: Martin Kutlak --- ...-dsos-Add-check-for-decode-attribute.patch | 54 +++++++++++++++++++ abrt.spec | 8 ++- 2 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 0001-a-a-list-dsos-Add-check-for-decode-attribute.patch diff --git a/0001-a-a-list-dsos-Add-check-for-decode-attribute.patch b/0001-a-a-list-dsos-Add-check-for-decode-attribute.patch new file mode 100644 index 0000000..4fac1dd --- /dev/null +++ b/0001-a-a-list-dsos-Add-check-for-decode-attribute.patch @@ -0,0 +1,54 @@ +From b7ce0f017fd5d98b7c641a2784e9b1c4c9dec834 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Fri, 12 Jul 2019 16:44:19 +0200 +Subject: [PATCH] a-a-list-dsos: Add check for decode attribute + +rpm used to return bytes but that was changed to return strings in recent release. + +The check for decode attribute keeps compatibility with older fedora releases. + +This can be removed in the future with rpm 4.15(?) + +Related: rhbz#1693751 +Resolves: rhbz#1694970 + +Signed-off-by: Martin Kutlak +--- + src/plugins/abrt-action-list-dsos | 18 ++++++++++++------ + 1 file changed, 12 insertions(+), 6 deletions(-) + +diff --git a/src/plugins/abrt-action-list-dsos b/src/plugins/abrt-action-list-dsos +index adb228a41..5d1240cb4 100644 +--- a/src/plugins/abrt-action-list-dsos ++++ b/src/plugins/abrt-action-list-dsos +@@ -84,15 +84,21 @@ if __name__ == "__main__": + outname = None + + vendor = h[rpm.RPMTAG_VENDOR] +- if vendor != None: ++ if vendor is not None and hasattr(vendor, 'decode'): + vendor = vendor.decode('utf-8') + ++ rpmtag_nevra = h[rpm.RPMTAG_NEVRA] ++ # FIXME change from bugzilla #1693751 ++ # can be removed with rpm 4.15 ++ if hasattr(rpmtag_nevra, 'decode'): ++ rpmtag_nevra = rpmtag_nevra.decode('utf-8') ++ + outfile.write("%s %s (%s) %s\n" % +- (path, +- h[rpm.RPMTAG_NEVRA].decode('utf-8'), +- vendor, +- h[rpm.RPMTAG_INSTALLTIME]) +- ) ++ (path, ++ rpmtag_nevra, ++ vendor, ++ h[rpm.RPMTAG_INSTALLTIME]) ++ ) + + except Exception as ex: + error_msg_and_die("Can't get the DSO list: %s" % ex) +-- +2.21.0 + diff --git a/abrt.spec b/abrt.spec index 6b46536..ce34b09 100644 --- a/abrt.spec +++ b/abrt.spec @@ -46,10 +46,13 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.12.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz + +Patch0001: 0001-a-a-list-dsos-Add-check-for-decode-attribute.patch + BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname @@ -1066,6 +1069,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jul 12 2019 Martin Kutlak 2.12.1-2 +- Add patch to fix failing action abrt-action-list-dsos on rawhide + * Wed Jul 03 2019 Martin Kutlak 2.12.1-1 - Translation updates - Rename all abrt-python to python3-abrt From 3e5d6a98efb839819645c8a6b651e4191cccc96f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:28:02 +0000 Subject: [PATCH 222/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ce34b09..15153f1 100644 --- a/abrt.spec +++ b/abrt.spec @@ -46,7 +46,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.12.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1069,6 +1069,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 2.12.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Jul 12 2019 Martin Kutlak 2.12.1-2 - Add patch to fix failing action abrt-action-list-dsos on rawhide From df2a70c73bebb02f791dbc2735e7ef4ea41c3338 Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Thu, 1 Aug 2019 14:13:10 +0200 Subject: [PATCH 223/318] Update to 2.12.2 Signed-off-by: Ernestas Kulik --- .gitignore | 1 + ...-dsos-Add-check-for-decode-attribute.patch | 54 ------------------- abrt.spec | 39 ++++++-------- sources | 2 +- 4 files changed, 19 insertions(+), 77 deletions(-) delete mode 100644 0001-a-a-list-dsos-Add-check-for-decode-attribute.patch diff --git a/.gitignore b/.gitignore index 740a5ff..2b791ec 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,4 @@ abrt-1.1.13.tar.gz /abrt-2.11.1.tar.gz /abrt-2.12.0.tar.gz /abrt-2.12.1.tar.gz +/abrt-2.12.2.tar.gz diff --git a/0001-a-a-list-dsos-Add-check-for-decode-attribute.patch b/0001-a-a-list-dsos-Add-check-for-decode-attribute.patch deleted file mode 100644 index 4fac1dd..0000000 --- a/0001-a-a-list-dsos-Add-check-for-decode-attribute.patch +++ /dev/null @@ -1,54 +0,0 @@ -From b7ce0f017fd5d98b7c641a2784e9b1c4c9dec834 Mon Sep 17 00:00:00 2001 -From: Martin Kutlak -Date: Fri, 12 Jul 2019 16:44:19 +0200 -Subject: [PATCH] a-a-list-dsos: Add check for decode attribute - -rpm used to return bytes but that was changed to return strings in recent release. - -The check for decode attribute keeps compatibility with older fedora releases. - -This can be removed in the future with rpm 4.15(?) - -Related: rhbz#1693751 -Resolves: rhbz#1694970 - -Signed-off-by: Martin Kutlak ---- - src/plugins/abrt-action-list-dsos | 18 ++++++++++++------ - 1 file changed, 12 insertions(+), 6 deletions(-) - -diff --git a/src/plugins/abrt-action-list-dsos b/src/plugins/abrt-action-list-dsos -index adb228a41..5d1240cb4 100644 ---- a/src/plugins/abrt-action-list-dsos -+++ b/src/plugins/abrt-action-list-dsos -@@ -84,15 +84,21 @@ if __name__ == "__main__": - outname = None - - vendor = h[rpm.RPMTAG_VENDOR] -- if vendor != None: -+ if vendor is not None and hasattr(vendor, 'decode'): - vendor = vendor.decode('utf-8') - -+ rpmtag_nevra = h[rpm.RPMTAG_NEVRA] -+ # FIXME change from bugzilla #1693751 -+ # can be removed with rpm 4.15 -+ if hasattr(rpmtag_nevra, 'decode'): -+ rpmtag_nevra = rpmtag_nevra.decode('utf-8') -+ - outfile.write("%s %s (%s) %s\n" % -- (path, -- h[rpm.RPMTAG_NEVRA].decode('utf-8'), -- vendor, -- h[rpm.RPMTAG_INSTALLTIME]) -- ) -+ (path, -+ rpmtag_nevra, -+ vendor, -+ h[rpm.RPMTAG_INSTALLTIME]) -+ ) - - except Exception as ex: - error_msg_and_die("Can't get the DSO list: %s" % ex) --- -2.21.0 - diff --git a/abrt.spec b/abrt.spec index 15153f1..4c8ad94 100644 --- a/abrt.spec +++ b/abrt.spec @@ -45,14 +45,12 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.12.1 -Release: 3%{?dist} +Version: 2.12.2 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -Patch0001: 0001-a-a-list-dsos-Add-check-for-decode-attribute.patch - BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname @@ -336,28 +334,21 @@ Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} Requires: abrt-dbus - -%description tui -This package contains a simple command line client for processing abrt reports -in command line environment. - %if %{with python3} -%package cli-ng -Summary: %{name}'s improved command line interface -Requires: %{name} = %{version}-%{release} -Requires: libreport-cli >= %{libreport_ver} -Requires: abrt-libs = %{version}-%{release} -Requires: abrt-dbus Requires: python3-abrt Requires: abrt-addon-ccpp Requires: python3-argh Requires: python3-argcomplete Requires: python3-humanize -%description cli-ng -New generation command line interface for ABRT +Provides: %{name}-cli-ng = %{version}-%{release} +Obsoletes: %{name}-cli-ng < 2.12.2 %endif # with python3 +%description tui +This package contains a simple command line client for processing abrt reports +in command line environment. + %package cli Summary: Virtual package to make easy default installation on non-graphical environments Requires: %{name} = %{version}-%{release} @@ -512,7 +503,6 @@ intltoolize --automake -c -f --without-atomic \ %endif %if 0%{?rhel} - --enable-suggest-autoreporting \ --enable-authenticated-autoreporting \ %endif %ifnarch %{arm} @@ -555,6 +545,10 @@ desktop-file-install \ src/applet/org.freedesktop.problems.applet.desktop ln -sf %{_datadir}/applications/org.freedesktop.problems.applet.desktop ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart/ +%if %{with python3} +ln -sf %{_bindir}/abrt %{buildroot}%{_bindir}/abrt-cli +ln -sf %{_mandir}/man1/abrt.1 %{buildroot}%{_mandir}/man1/abrt-cli.1 +%endif # After everything is installed, remove info dir rm -f %{buildroot}%{_infodir}/dir @@ -995,15 +989,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %files cli %files tui -%{_bindir}/abrt-cli -%{_mandir}/man1/abrt-cli.1* - %if %{with python3} -%files cli-ng %config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion %{_bindir}/abrt +%{_bindir}/abrt-cli %{python3_sitearch}/abrtcli/ %{_mandir}/man1/abrt.1* +%{_mandir}/man1/abrt-cli.1* %endif # with python3 %files desktop @@ -1069,6 +1061,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Aug 01 2019 Ernestas Kulik 2.12.2-1 +- Remove old CLI and move cli-ng subpackage files into tui subpackage + * Wed Jul 24 2019 Fedora Release Engineering - 2.12.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 7f2ac7a..8be0927 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.12.1.tar.gz) = e5a8ceed76c152523932bfa626e20ce110ecd7d1c87b421ef99986c4782f537b1e4af6d93d73abca7187a7d67592a4b820bd3bcc93f02bc7ee025054eacb5738 +SHA512 (abrt-2.12.2.tar.gz) = 8a6c1d718cce43a94de1d397d8a6bc9c24bb100081c9e4d4e9fb0441356991e3e8d7da066212ebbee8774e3a416c0e41e17713ced5ffb0c1f63588527e7dc983 From 9e6bef580fbe273c903be21b2b518213ef676381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sat, 17 Aug 2019 18:45:15 +0200 Subject: [PATCH 224/318] Rebuilt for Python 3.8 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 4c8ad94..ad1d318 100644 --- a/abrt.spec +++ b/abrt.spec @@ -46,7 +46,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.12.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1061,6 +1061,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sat Aug 17 2019 Miro Hrončok - 2.12.2-2 +- Rebuilt for Python 3.8 + * Thu Aug 01 2019 Ernestas Kulik 2.12.2-1 - Remove old CLI and move cli-ng subpackage files into tui subpackage From f182793f3355d323faa56443194c997e3dde01ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 3 Oct 2019 13:50:11 +0200 Subject: [PATCH 225/318] Rebuilt for Python 3.8.0rc1 (#1748018) --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ad1d318..c098184 100644 --- a/abrt.spec +++ b/abrt.spec @@ -46,7 +46,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.12.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1061,6 +1061,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Oct 03 2019 Miro Hrončok - 2.12.2-3 +- Rebuilt for Python 3.8.0rc1 (#1748018) + * Sat Aug 17 2019 Miro Hrončok - 2.12.2-2 - Rebuilt for Python 3.8 From ac861159cab4f29355901516c41ac19d7ba4fd79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Fri, 11 Oct 2019 16:32:47 +0200 Subject: [PATCH 226/318] New upstream release 2.13.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matěj Grabovský --- .gitignore | 1 + abrt.spec | 174 +++++++++++++++++++++++++---------------------------- sources | 2 +- 3 files changed, 83 insertions(+), 94 deletions(-) diff --git a/.gitignore b/.gitignore index 2b791ec..6268042 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,4 @@ abrt-1.1.13.tar.gz /abrt-2.12.0.tar.gz /abrt-2.12.1.tar.gz /abrt-2.12.2.tar.gz +/abrt-2.13.0.tar.gz diff --git a/abrt.spec b/abrt.spec index c098184..84963b2 100644 --- a/abrt.spec +++ b/abrt.spec @@ -18,6 +18,9 @@ # build abrt-atomic subpackage %bcond_without atomic +# build abrt-retrace-client by default +%bcond_without retrace + # rpmbuild --define 'desktopvendor mystring' %if "x%{desktopvendor}" == "x" %define desktopvendor %(source /etc/os-release; echo ${ID}) @@ -45,8 +48,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.12.2 -Release: 3%{?dist} +Version: 2.13.0 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -76,9 +79,6 @@ BuildRequires: libselinux-devel BuildRequires: python3-devel BuildRequires: python3-systemd BuildRequires: python3-argcomplete -BuildRequires: python3-argh -BuildRequires: python3-humanize -BuildRequires: python3-devel %endif # with python3 Requires: libreport >= %{libreport_ver} @@ -184,28 +184,23 @@ Requires: abrt-gui-libs = %{version}-%{release} %description gui GTK+ wizard for convenient bug reporting. -%package addon-coredump-helper -Summary: %{name}'s /proc/sys/kernel/core_pattern helper -Requires: abrt-libs = %{version}-%{release} - -%description addon-coredump-helper -This package contains hook for C/C++ crashed programs. - %package addon-ccpp Summary: %{name}'s C/C++ addon Requires: cpio Requires: gdb-headless Requires: elfutils %if 0%{!?rhel:1} +%if %{with retrace} # abrt-action-perform-ccpp-analysis wants to run analyze_RetraceServer: Requires: %{name}-retrace-client %endif +%endif Requires: %{name} = %{version}-%{release} -Requires: %{name}-addon-coredump-helper = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} %if %{with python3} Requires: python3-libreport %endif # with python3 +Obsoletes: abrt-addon-coredump-helper <= 2.12.2 %description addon-ccpp @@ -219,6 +214,7 @@ Requires: abrt-libs = %{version}-%{release} %description addon-upload-watch This package contains hook for uploaded problems. +%if %{with retrace} %package retrace-client Summary: %{name}'s retrace client Requires: %{name} = %{version}-%{release} @@ -230,6 +226,7 @@ Requires: libsoup %description retrace-client This package contains the client application for Retrace server which is able to analyze C/C++ crashes remotely. +%endif %package addon-kerneloops Summary: %{name}'s kerneloops addon @@ -293,6 +290,7 @@ Search for a new updates in bodhi server. %if %{with python3} %package -n python3-abrt-addon Summary: %{name}'s addon for catching and analyzing Python 3 exceptions +BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: python3-systemd Requires: python3-abrt @@ -337,9 +335,7 @@ Requires: abrt-dbus %if %{with python3} Requires: python3-abrt Requires: abrt-addon-ccpp -Requires: python3-argh Requires: python3-argcomplete -Requires: python3-humanize Provides: %{name}-cli-ng = %{version}-%{release} Obsoletes: %{name}-cli-ng < 2.12.2 @@ -365,7 +361,9 @@ Requires: abrt-addon-xorg Requires: libreport-rhel >= %{libreport_ver} Requires: libreport-plugin-rhtsupport >= %{libreport_ver} %else +%if %{with retrace} Requires: abrt-retrace-client +%endif %if %{with bodhi} Requires: abrt-plugin-bodhi %endif @@ -406,7 +404,9 @@ Requires: gnome-abrt Requires: libreport-rhel >= %{libreport_ver} Requires: libreport-plugin-rhtsupport >= %{libreport_ver} %else +%if %{with retrace} Requires: abrt-retrace-client +%endif %if %{with bodhi} Requires: abrt-plugin-bodhi %endif @@ -429,7 +429,6 @@ environment. %if %{with atomic} %package atomic Summary: Package to make easy default installation on Atomic hosts. -Requires: %{name}-addon-coredump-helper = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} Conflicts: %{name}-addon-ccpp @@ -487,12 +486,11 @@ to the shell %build -%define var_base_dir spool +autoconf -autoreconf -if -intltoolize --automake -c -f +%define default_dump_dir %{_localstatedir}/spool/abrt -%configure \ +CFLAGS="%{optflags} -Werror" %configure \ %if %{without python3} --without-python3 \ %endif # with python3 @@ -502,25 +500,27 @@ intltoolize --automake -c -f %if %{without atomic} --without-atomic \ %endif +%if %{without retrace} + --without-retrace \ +%endif %if 0%{?rhel} --enable-authenticated-autoreporting \ %endif %ifnarch %{arm} --enable-native-unwinder \ %endif - --with-defaultdumplocation=/var/%{var_base_dir}/abrt \ + --with-defaultdumplocation=%{default_dump_dir} \ --enable-doxygen-docs \ --enable-dump-time-unwind \ --disable-silent-rules -make %{?_smp_mflags} +%make_build %install -make install DESTDIR=$RPM_BUILD_ROOT \ +%make_install \ %if %{with python3} PYTHON=%{__python3} \ %endif # with python3 - mandir=%{_mandir} \ dbusabrtdocdir=%{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ %find_lang %{name} @@ -530,21 +530,21 @@ make install DESTDIR=$RPM_BUILD_ROOT \ # for those which needs to be byte-compiled with different # version (python2/python3). # rpm can do this work and use the appropriate python version. -find $RPM_BUILD_ROOT -name "*.py[co]" -delete +find %{buildroot} -name "*.py[co]" -delete # remove all .la and .a files -find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f -mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di -mkdir -p $RPM_BUILD_ROOT/var/run/abrt -mkdir -p $RPM_BUILD_ROOT/var/%{var_base_dir}/abrt -mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload -mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/abrt +find %{buildroot} -name '*.la' -or -name '*.a' | xargs rm -f +mkdir -p %{buildroot}%{_localstatedir}/cache/abrt-di +mkdir -p %{buildroot}%{_localstatedir}/lib/abrt +mkdir -p %{buildroot}%{_localstatedir}/run/abrt +mkdir -p %{buildroot}%{_localstatedir}/spool/abrt-upload +mkdir -p %{buildroot}%{default_dump_dir} desktop-file-install \ - --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ + --dir %{buildroot}%{_datadir}/applications \ src/applet/org.freedesktop.problems.applet.desktop -ln -sf %{_datadir}/applications/org.freedesktop.problems.applet.desktop ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart/ +ln -sf %{_datadir}/applications/org.freedesktop.problems.applet.desktop %{buildroot}%{_sysconfdir}/xdg/autostart/ %if %{with python3} ln -sf %{_bindir}/abrt %{buildroot}%{_bindir}/abrt-cli ln -sf %{_mandir}/man1/abrt.1 %{buildroot}%{_mandir}/man1/abrt-cli.1 @@ -577,7 +577,6 @@ exit 0 # because /cache/abrt-di/* was created under root with root:root # so 2.x fails when it tries to extract debuginfo there.. chown -R abrt:abrt %{_localstatedir}/cache/abrt-di -%systemd_post abrt-ccpp.service %systemd_post abrt-journal-core.service %journal_catalog_update @@ -657,8 +656,6 @@ touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : if [ -f /etc/abrt/plugins/CCpp.conf ]; then mv /etc/abrt/plugins/CCpp.conf /etc/abrt/plugins/CCpp.conf.rpmsave.atomic || exit 1; fi -ln -sf /etc/abrt/plugins/CCpp_Atomic.conf /etc/abrt/plugins/CCpp.conf -%systemd_post abrt-coredump-helper.service %preun atomic if [ -L /etc/abrt/plugins/CCpp.conf ]; then @@ -667,9 +664,6 @@ fi if [ -f /etc/abrt/plugins/CCpp.conf.rpmsave.atomic ]; then mv /etc/abrt/plugins/CCpp.conf.rpmsave.atomic /etc/abrt/plugins/CCpp.conf || exit 1 fi - -%postun atomic -%systemd_postun_with_restart abrt-coredump-helper.service %endif # with atomic %if 0%{?rhel} && 0%{?rhel} <= 7 @@ -693,29 +687,11 @@ fi service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp -# Migrate from abrt-ccpp.service to abrt-journal-core.service -# 'systemctl preset abrt-ccpp.service abrt-journal-core.service' -# is done only for installation by %systemd_post macro but not for package -# upgrade. Following lines affect changes in Fedora preset files in case of -# package upgrade and also starts abrt-journal-core.service and stops -# abrt-ccpp.service if abrt-ccpp.service is running. -# All this has to be done only once because some users want to use -# abrt-ccpp.service instead of the default abrt-journal-core.service. -# Hence we introduced a %{_localstatedir}/lib/abrt/abrt-migrated file to -# mark the migration was done. -if test ! -f %{_localstatedir}/lib/abrt/abrt-migrated ; then - systemctl --no-reload preset abrt-ccpp.service >/dev/null 2>&1 || : - systemctl --no-reload preset abrt-journal-core.service >/dev/null 2>&1 || : - if service abrt-ccpp status >/dev/null 2>&1 ; then - systemctl stop abrt-ccpp >/dev/null 2>&1 || : - systemctl start abrt-journal-core >/dev/null 2>&1 || : - fi - touch %{_localstatedir}/lib/abrt/abrt-migrated +# Regenerate core_backtraces because of missing crash threads +abrtdir=$(grep "^\s*DumpLocation\b" /etc/abrt/abrt.conf | tail -1 | cut -d'=' -f2 | tr -d ' ') +if test -z "$abrtdir"; then + abrtdir=%{default_dump_dir} fi -systemctl try-restart abrt-journal-core >/dev/null 2>&1 || : -systemctl try-restart abrt-ccpp >/dev/null 2>&1 || : -# Regenerate core_bactraces because of missing crash threads -abrtdir=$(grep "DumpLocation" /etc/abrt/abrt.conf | cut -d'=' -f2 | tr -d ' ') if test -d "$abrtdir"; then for DD in `find "$abrtdir" -mindepth 1 -maxdepth 1 -type d` do @@ -766,16 +742,14 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_bindir}/abrt-action-analyze-python %{_bindir}/abrt-action-analyze-xorg %config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.freedesktop.problems.daemon.conf +%config(noreplace) %{_sysconfdir}/%{name}/abrt.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf -%config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf -%{_mandir}/man5/abrt-xorg.conf.5* %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys.conf -%{_mandir}/man5/gpg_keys.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf %{_mandir}/man5/abrt_event.conf.5* %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf %{_mandir}/man5/smart_event.conf.5* -%dir %attr(0751, root, abrt) %{_localstatedir}/%{var_base_dir}/%{name} +%dir %attr(0751, root, abrt) %{default_dump_dir} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} @@ -789,16 +763,16 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-action-analyze-python.1* %{_mandir}/man1/abrt-action-analyze-xorg.1* %{_mandir}/man1/abrt-auto-reporting.1* -%{_mandir}/man8/abrtd.8* +%{_mandir}/man5/abrt.conf.5* %{_mandir}/man5/abrt-action-save-package-data.conf.5* -# {_mandir}/man5/pyhook.conf.5* +%{_mandir}/man5/gpg_keys.conf.5* +%{_mandir}/man8/abrtd.8* %files libs %{_libdir}/libabrt.so.* -%config(noreplace) %{_sysconfdir}/%{name}/abrt.conf -%{_mandir}/man5/abrt.conf.5* %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/plugins +%dir %{_datadir}/%{name} # filesystem package should own /usr/share/augeas/lenses directory %{_datadir}/augeas/lenses/abrt.aug @@ -836,19 +810,12 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man1/abrt-applet.1* %{_mandir}/man1/system-config-abrt.1* -%files addon-coredump-helper -%{_libexecdir}/abrt-hook-ccpp -%{_sbindir}/abrt-install-ccpp-hook - %files addon-ccpp %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf %{_mandir}/man5/abrt-CCpp.conf.5* %{_libexecdir}/abrt-gdb-exploitable -%{_journalcatalogdir}/abrt_ccpp.catalog -%config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_ccpp_format.conf %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_journal_ccpp_format.conf -%{_unitdir}/abrt-ccpp.service %{_unitdir}/abrt-journal-core.service %dir %{_localstatedir}/lib/abrt @@ -876,6 +843,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/vimrc_event.conf.5* %{_datadir}/libreport/events/analyze_CCpp.xml %{_datadir}/libreport/events/analyze_LocalGDB.xml +%{_datadir}/libreport/events/analyze_RetraceServer.xml %{_datadir}/libreport/events/collect_xsession_errors.xml %{_datadir}/libreport/events/collect_GConf.xml %{_datadir}/libreport/events/collect_vimrc_user.xml @@ -887,7 +855,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-action-generate-core-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* -%{_mandir}/man*/abrt-install-ccpp-hook.* %{_mandir}/man*/abrt-action-install-debuginfo.* %{_mandir}/man*/abrt-action-analyze-ccpp-local.* %{_mandir}/man*/abrt-action-analyze-core.* @@ -901,12 +868,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-upload-watch.* +%if %{with retrace} %files retrace-client %{_bindir}/abrt-retrace-client %{_mandir}/man1/abrt-retrace-client.1* %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_retrace_event.conf %{_mandir}/man5/ccpp_retrace_event.conf.5* -%{_datadir}/libreport/events/analyze_RetraceServer.xml +%endif %files addon-kerneloops %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf @@ -930,12 +898,14 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/libreport/events.d/xorg_event.conf %{_journalcatalogdir}/abrt_xorg.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_xorg_format.conf -%{_mandir}/man5/xorg_event.conf.5* +%config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf %{_unitdir}/abrt-xorg.service %{_bindir}/abrt-dump-xorg %{_bindir}/abrt-dump-journal-xorg %{_mandir}/man1/abrt-dump-xorg.1* %{_mandir}/man1/abrt-dump-journal-xorg.1* +%{_mandir}/man5/abrt-xorg.conf.5* +%{_mandir}/man5/xorg_event.conf.5* %files addon-vmcore %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf @@ -1002,8 +972,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %if %{with atomic} %files atomic -%config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp_Atomic.conf -%{_unitdir}/abrt-coredump-helper.service %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %{_bindir}/abrt-action-save-package-data %{_mandir}/man1/abrt-action-save-package-data.1* @@ -1022,25 +990,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %files dbus %{_sbindir}/abrt-dbus -%{_sbindir}/abrt-configuration %{_mandir}/man8/abrt-dbus.8* -%{_mandir}/man8/abrt-configuration.8* %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf %{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.xml %{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Entry.xml %{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Session.xml %{_datadir}/dbus-1/interfaces/org.freedesktop.Problems2.Task.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.oops.xml -%if %{with python3} -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python3.xml -%endif # with python3 -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.vmcore.xml -%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xorg.xml %{_datadir}/dbus-1/system-services/org.freedesktop.problems.service -%{_datadir}/dbus-1/system-services/com.redhat.problems.configuration.service %{_datadir}/polkit-1/actions/abrt_polkit.policy %dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/ %dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ @@ -1061,6 +1017,38 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Oct 11 2019 Matěj Grabovský 2.13.0-1 +- cli: Use format argument in info command +- cli: Make pretty and format mutually exclusive +- cli: Set PYTHONPATH for tests +- cli: Rework commands +- Remove abrt-hook-ccpp +- spec: Use macros where appropriate +- tests: Use Augeas consistently +- spec: Move config files to corresponding subpackages +- build,spec: Empty config files in /etc/abrt/ +- doc: Update man pages and comments in config files +- plugins: Update in-code defaults +- doc: Correct alignment of heading underlines +- a-dump-journal-core: Purge commented code +- dbus: Remove D-Bus configuration service +- Partly revert removal of default configs +- cli: Tweak problem matching +- plugins: Add satyr flags when building +- cli: Fix warning +- cli: Fix file name +- cli: Use decorator for MATCH positional argument +- cli: match: Iterate dict instead of calling keys() +- cli: Make pylint happier about imports +- cli: Drop unused variables +- cli: utils: Use consistent return +- cli: Improve i18n +- cli: Drop humanize import +- Drop uses of bind_textdomain_codeset() +- gitignore: Update path to generated file after cli-ng move +- tests: runner: Use systemctl instead of service +- autogen.sh: Use autoreconf + * Thu Oct 03 2019 Miro Hrončok - 2.12.2-3 - Rebuilt for Python 3.8.0rc1 (#1748018) diff --git a/sources b/sources index 8be0927..76c1515 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.12.2.tar.gz) = 8a6c1d718cce43a94de1d397d8a6bc9c24bb100081c9e4d4e9fb0441356991e3e8d7da066212ebbee8774e3a416c0e41e17713ced5ffb0c1f63588527e7dc983 +SHA512 (abrt-2.13.0.tar.gz) = 936c83293dcb71051b8dd89e84718cf0f76c7d7998b414a2c41d43b8e2a4dc6718f42d8fd47186bd15bac3ea06081f411ab3a7ed3729343da9e6e91edb046568 From cbad6eeeab7b5aef09cc4cf142ad3e8e21b0e6d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Wed, 16 Oct 2019 14:02:50 +0200 Subject: [PATCH 227/318] Use correct paths for installed Python modules This patch is pulled from upstream. --- ...-correct-paths-for-installed-modules.patch | 96 +++++++++++++++++++ abrt.spec | 16 ++-- 2 files changed, 105 insertions(+), 7 deletions(-) create mode 100644 0001-python-Use-correct-paths-for-installed-modules.patch diff --git a/0001-python-Use-correct-paths-for-installed-modules.patch b/0001-python-Use-correct-paths-for-installed-modules.patch new file mode 100644 index 0000000..d12bb22 --- /dev/null +++ b/0001-python-Use-correct-paths-for-installed-modules.patch @@ -0,0 +1,96 @@ +From 57c0042ead87249bed5964eeec45b97543674060 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= +Date: Wed, 16 Oct 2019 11:27:54 +0200 +Subject: [PATCH] python: Use correct paths for installed modules + +Non-compiled (without C bits) Python modules should be installed into +architecture-independent directory (/usr/lib/python3.x/site-packages +in the case of Fedora). + +This commit fixes both +* the spec file, where %{python3_sitelib} should be used rather than + %{python3_sitearch} which is to be used for compiled extensions; and +* the automake scripts, where $(pythondir) should be used in place of + $(pyexecdir) for the same reason. + +This is a follow-up to 20dcf7fb4. +--- + abrt.spec.in | 14 +++++++------- + src/cli/abrtcli/Makefile.am | 2 +- + src/cli/abrtcli/cli/Makefile.am | 2 +- + src/hooks/Makefile.am | 2 +- + 4 files changed, 10 insertions(+), 10 deletions(-) + +diff --git a/abrt.spec.in b/abrt.spec.in +index 1c6c48ad..fe0b2278 100644 +--- a/abrt.spec.in ++++ b/abrt.spec.in +@@ -935,14 +935,14 @@ killall abrt-dbus >/dev/null 2>&1 || : + %{_journalcatalogdir}/python3_abrt.catalog + %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf + %{_mandir}/man5/python3_event.conf.5* +-%{python3_sitearch}/abrt3.pth +-%{python3_sitearch}/abrt_exception_handler3.py +-%{python3_sitearch}/__pycache__/abrt_exception_handler3.* ++%{python3_sitelib}/abrt3.pth ++%{python3_sitelib}/abrt_exception_handler3.py ++%{python3_sitelib}/__pycache__/abrt_exception_handler3.* + + %files -n python3-abrt-container-addon +-%{python3_sitearch}/abrt3_container.pth +-%{python3_sitearch}/abrt_exception_handler3_container.py +-%{python3_sitearch}/__pycache__/abrt_exception_handler3_container.* ++%{python3_sitelib}/abrt3_container.pth ++%{python3_sitelib}/abrt_exception_handler3_container.py ++%{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* + %endif # with python3 + + %files plugin-sosreport +@@ -959,7 +959,7 @@ killall abrt-dbus >/dev/null 2>&1 || : + %config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion + %{_bindir}/abrt + %{_bindir}/abrt-cli +-%{python3_sitearch}/abrtcli/ ++%{python3_sitelib}/abrtcli/ + %{_mandir}/man1/abrt.1* + %{_mandir}/man1/abrt-cli.1* + %endif # with python3 +diff --git a/src/cli/abrtcli/Makefile.am b/src/cli/abrtcli/Makefile.am +index d11355a2..a599d0b5 100644 +--- a/src/cli/abrtcli/Makefile.am ++++ b/src/cli/abrtcli/Makefile.am +@@ -9,7 +9,7 @@ PYFILES= \ + utils.py + + abrtcli_PYTHON = $(PYFILES) +-abrtclidir = $(pyexecdir)/abrtcli ++abrtclidir = $(pythondir)/abrtcli + + config.py: config.py.in + sed -e s,\@LOCALE_DIR\@,$(localedir),g \ +diff --git a/src/cli/abrtcli/cli/Makefile.am b/src/cli/abrtcli/cli/Makefile.am +index 17ff216b..c796074d 100644 +--- a/src/cli/abrtcli/cli/Makefile.am ++++ b/src/cli/abrtcli/cli/Makefile.am +@@ -10,4 +10,4 @@ abrtclicommands_PYTHON = \ + retrace.py \ + status.py + +-abrtclicommandsdir = $(pyexecdir)/abrtcli/cli ++abrtclicommandsdir = $(pythondir)/abrtcli/cli +diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am +index 6e35887f..bdef0329 100644 +--- a/src/hooks/Makefile.am ++++ b/src/hooks/Makefile.am +@@ -35,7 +35,7 @@ EXTRA_DIST = \ + ALL_DEPENDENCES = + + if BUILD_PYTHON3 +-py3hookdir = $(pyexecdir) ++py3hookdir = $(pythondir) + dist_pluginsconf_DATA += python3.conf + ALL_DEPENDENCES += abrt_exception_handler3.py + +-- +2.21.0 + diff --git a/abrt.spec b/abrt.spec index 84963b2..79d8b61 100644 --- a/abrt.spec +++ b/abrt.spec @@ -54,6 +54,8 @@ License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +Patch0: 0001-python-Use-correct-paths-for-installed-modules.patch + BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname @@ -939,14 +941,14 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_journalcatalogdir}/python3_abrt.catalog %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf %{_mandir}/man5/python3_event.conf.5* -%{python3_sitearch}/abrt3.pth -%{python3_sitearch}/abrt_exception_handler3.py -%{python3_sitearch}/__pycache__/abrt_exception_handler3.* +%{python3_sitelib}/abrt3.pth +%{python3_sitelib}/abrt_exception_handler3.py +%{python3_sitelib}/__pycache__/abrt_exception_handler3.* %files -n python3-abrt-container-addon -%{python3_sitearch}/abrt3_container.pth -%{python3_sitearch}/abrt_exception_handler3_container.py -%{python3_sitearch}/__pycache__/abrt_exception_handler3_container.* +%{python3_sitelib}/abrt3_container.pth +%{python3_sitelib}/abrt_exception_handler3_container.py +%{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* %endif # with python3 %files plugin-sosreport @@ -963,7 +965,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion %{_bindir}/abrt %{_bindir}/abrt-cli -%{python3_sitearch}/abrtcli/ +%{python3_sitelib}/abrtcli/ %{_mandir}/man1/abrt.1* %{_mandir}/man1/abrt-cli.1* %endif # with python3 From 507c1e9e8631ae85c8c90feb536477c36eef0659 Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Tue, 14 Jan 2020 13:58:06 +0100 Subject: [PATCH 228/318] Drop scriptlets for abrt-ccpp.service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s been dropped, no use in triggering disabling or restarting. The preset has had abrt-ccpp replaced with abrt-journal-core forever now as well, so let’s just do it. --- abrt.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index 79d8b61..ed5502b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -609,7 +609,6 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_preun abrtd.service %preun addon-ccpp -%systemd_preun abrt-ccpp.service %systemd_preun abrt-journal-core.service %preun addon-kerneloops @@ -631,7 +630,6 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %systemd_postun_with_restart abrtd.service %postun addon-ccpp -%systemd_postun_with_restart abrt-ccpp.service %systemd_postun_with_restart abrt-journal-core.service %postun addon-kerneloops @@ -1019,6 +1017,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jan 14 2020 - Ernestas Kulik - 2.13.0-2 +- Drop systemd scriptlets for abrt-ccpp.service + * Fri Oct 11 2019 Matěj Grabovský 2.13.0-1 - cli: Use format argument in info command - cli: Make pretty and format mutually exclusive From 0c014bfd3af254a6498170814b2f008f667d4d24 Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Tue, 14 Jan 2020 14:01:49 +0100 Subject: [PATCH 229/318] Bump release Oops. --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ed5502b..fc45d69 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.13.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz From 4d76ca5e3ac0d33577f46ebc3962844188937df5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 11:08:18 +0000 Subject: [PATCH 230/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index fc45d69..a3dc524 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.13.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1017,6 +1017,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 2.13.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Jan 14 2020 - Ernestas Kulik - 2.13.0-2 - Drop systemd scriptlets for abrt-ccpp.service From c7d2242d985e727d35ef18c1d5a94d767d9ee9f1 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Thu, 30 Jan 2020 17:10:50 +0100 Subject: [PATCH 231/318] patch: Fix build failure with gcc -fno-common Resolves: rhbz#1795820 Signed-off-by: Martin Kutlak --- ...ix-build-failure-with-gcc-fno-common.patch | 165 ++++++++++++++++++ ...Initialize-karma-values-with-default.patch | 32 ++++ abrt.spec | 9 +- 3 files changed, 205 insertions(+), 1 deletion(-) create mode 100644 0002-Fix-build-failure-with-gcc-fno-common.patch create mode 100644 0003-bodhi-Initialize-karma-values-with-default.patch diff --git a/0002-Fix-build-failure-with-gcc-fno-common.patch b/0002-Fix-build-failure-with-gcc-fno-common.patch new file mode 100644 index 0000000..f85b10f --- /dev/null +++ b/0002-Fix-build-failure-with-gcc-fno-common.patch @@ -0,0 +1,165 @@ +From f58c435e4e4f5030af44d2cde8042bcf10d24615 Mon Sep 17 00:00:00 2001 +From: Michal Fabik +Date: Tue, 28 Jan 2020 13:45:14 +0100 +Subject: [PATCH] Fix build failure with gcc -fno-common + +Signed-off-by: Michal Fabik +--- + src/configuration-gui/abrt-config-widget.c | 2 +- + src/dbus/abrt_problems2_service.c | 4 ++-- + src/dbus/abrt_problems2_service.h | 8 ++++---- + src/dbus/abrt_problems2_session.c | 2 +- + src/dbus/abrt_problems2_task.c | 2 +- + src/plugins/oops-utils.c | 2 ++ + src/plugins/oops-utils.h | 2 +- + src/plugins/xorg-utils.c | 2 ++ + src/plugins/xorg-utils.h | 2 +- + 9 files changed, 15 insertions(+), 11 deletions(-) + +diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c +index aa3b5c01b..518ecd1d0 100644 +--- a/src/configuration-gui/abrt-config-widget.c ++++ b/src/configuration-gui/abrt-config-widget.c +@@ -109,7 +109,7 @@ G_DEFINE_TYPE_WITH_PRIVATE(AbrtConfigWidget, abrt_config_widget, GTK_TYPE_BOX) + enum { + SN_CHANGED, + SN_LAST_SIGNAL +-} SignalNumber; ++}; + + static guint s_signals[SN_LAST_SIGNAL] = { 0 }; + +diff --git a/src/dbus/abrt_problems2_service.c b/src/dbus/abrt_problems2_service.c +index a0d2a3ce6..a1e7ae322 100644 +--- a/src/dbus/abrt_problems2_service.c ++++ b/src/dbus/abrt_problems2_service.c +@@ -1589,7 +1589,7 @@ AbrtP2Object *abrt_p2_service_get_entry_object(AbrtP2Service *service, + + AbrtP2Object *abrt_p2_service_get_entry_for_problem(AbrtP2Service *service, + const char *problem_id, +- int flags, ++ AbrtP2ServiceEntryLookupFlags flags, + GError **error) + { + char *entry_path = entry_object_dir_name_to_path(problem_id); +@@ -2062,7 +2062,7 @@ GVariant *abrt_p2_service_callers_session(AbrtP2Service *service, + + GVariant *abrt_p2_service_get_problems(AbrtP2Service *service, + uid_t caller_uid, +- gint32 flags, ++ AbrtP2ServiceGetProblemsFlags flags, + GVariant *options, + GError **error) + { +diff --git a/src/dbus/abrt_problems2_service.h b/src/dbus/abrt_problems2_service.h +index f82cf503a..22b97a6e8 100644 +--- a/src/dbus/abrt_problems2_service.h ++++ b/src/dbus/abrt_problems2_service.h +@@ -86,14 +86,14 @@ GVariant *abrt_p2_service_entry_problem_data(AbrtP2Service *service, + GError **error); + + +-enum { ++typedef enum { + ABRT_P2_SERVICE_ENTRY_LOOKUP_NOFLAGS = 0x0, ///< return with error if not found + ABRT_P2_SERVICE_ENTRY_LOOKUP_OPTIONAL = 0x1, ///< return NULL if not found +-} AbrtP2ServiceEntryLookupFlag; ++} AbrtP2ServiceEntryLookupFlags; + + AbrtP2Object *abrt_p2_service_get_entry_for_problem(AbrtP2Service *service, + const char *problem_id, +- int flags, ++ AbrtP2ServiceEntryLookupFlags flags, + GError **error); + + struct _AbrtP2Entry; +@@ -145,7 +145,7 @@ typedef enum + + GVariant *abrt_p2_service_get_problems(AbrtP2Service *service, + uid_t caller_uid, +- gint32 flags, ++ AbrtP2ServiceGetProblemsFlags flags, + GVariant *options, + GError **error); + +diff --git a/src/dbus/abrt_problems2_session.c b/src/dbus/abrt_problems2_session.c +index 96db4ccc5..85ee78887 100644 +--- a/src/dbus/abrt_problems2_session.c ++++ b/src/dbus/abrt_problems2_session.c +@@ -97,7 +97,7 @@ struct check_auth_cb_params + enum { + SN_AUTHORIZATION_CHANGED, + SN_LAST_SIGNAL +-} SignalNumber; ++}; + + static guint s_signals[SN_LAST_SIGNAL] = { 0 }; + +diff --git a/src/dbus/abrt_problems2_task.c b/src/dbus/abrt_problems2_task.c +index cba6b469a..e6ae171c7 100644 +--- a/src/dbus/abrt_problems2_task.c ++++ b/src/dbus/abrt_problems2_task.c +@@ -21,7 +21,7 @@ + enum { + SN_STATUS_CHANGED, + SN_LAST_SIGNAL +-} SignalNumber; ++}; + + static guint s_signals[SN_LAST_SIGNAL] = { 0 }; + +diff --git a/src/plugins/oops-utils.c b/src/plugins/oops-utils.c +index caa1d8d5d..a77b4424f 100644 +--- a/src/plugins/oops-utils.c ++++ b/src/plugins/oops-utils.c +@@ -22,6 +22,8 @@ + #include "oops-utils.h" + #include "libabrt.h" + ++int g_abrt_oops_sleep_woke_up_on_signal; ++ + int abrt_oops_process_list(GList *oops_list, const char *dump_location, const char *analyzer, int flags) + { + unsigned errors = 0; +diff --git a/src/plugins/oops-utils.h b/src/plugins/oops-utils.h +index 5181f91c7..bdd61cac2 100644 +--- a/src/plugins/oops-utils.h ++++ b/src/plugins/oops-utils.h +@@ -33,7 +33,7 @@ enum { + ABRT_OOPS_PRINT_STDOUT = 1 << 2, + }; + +-int g_abrt_oops_sleep_woke_up_on_signal; ++extern int g_abrt_oops_sleep_woke_up_on_signal; + + int abrt_oops_process_list(GList *oops_list, const char *dump_location, const char *analyzer, int flags); + unsigned abrt_oops_create_dump_dirs(GList *oops_list, const char *dump_location, const char *analyzer, int flags); +diff --git a/src/plugins/xorg-utils.c b/src/plugins/xorg-utils.c +index a8dfc512a..4ecf8cb63 100644 +--- a/src/plugins/xorg-utils.c ++++ b/src/plugins/xorg-utils.c +@@ -23,6 +23,8 @@ + + #define DEFAULT_XORG_CRASH_REASON "Display server crashed" + ++int g_abrt_xorg_sleep_woke_up_on_signal; ++ + int abrt_xorg_signaled_sleep(int seconds) + { + sigset_t set; +diff --git a/src/plugins/xorg-utils.h b/src/plugins/xorg-utils.h +index c53bc460d..d9f44681a 100644 +--- a/src/plugins/xorg-utils.h ++++ b/src/plugins/xorg-utils.h +@@ -35,7 +35,7 @@ enum { + ABRT_XORG_PRINT_STDOUT = 1 << 2, + }; + +-int g_abrt_xorg_sleep_woke_up_on_signal; ++extern int g_abrt_xorg_sleep_woke_up_on_signal; + int abrt_xorg_signaled_sleep(int seconds); + + /* +-- +2.24.1 + diff --git a/0003-bodhi-Initialize-karma-values-with-default.patch b/0003-bodhi-Initialize-karma-values-with-default.patch new file mode 100644 index 0000000..f3df79b --- /dev/null +++ b/0003-bodhi-Initialize-karma-values-with-default.patch @@ -0,0 +1,32 @@ +From c6562f15f2b72348aa447e3acbb91de5cf221695 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Thu, 30 Jan 2020 16:19:51 +0100 +Subject: [PATCH] bodhi: Initialize karma values with default + +During a rebuilt on s390x this error came up: +bodhi.c:340:12: + error: + 'unstable_karma' may be used uninitialized in this function + +Signed-off-by: Martin Kutlak +--- + src/plugins/bodhi.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c +index 14d65ad37..9b5177be9 100644 +--- a/src/plugins/bodhi.c ++++ b/src/plugins/bodhi.c +@@ -334,7 +334,8 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) + if (!builds_item) /* broken json */ + continue; + +- int karma, unstable_karma; ++ int karma = 0; ++ int unstable_karma = 0; + bodhi_read_value(updates_item, "karma", &karma, BODHI_READ_INT); + bodhi_read_value(updates_item, "unstable_karma", &unstable_karma, BODHI_READ_INT); + if (karma <= unstable_karma) +-- +2.24.1 + diff --git a/abrt.spec b/abrt.spec index a3dc524..16cad2b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,12 +49,14 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.13.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz Patch0: 0001-python-Use-correct-paths-for-installed-modules.patch +Patch1: 0002-Fix-build-failure-with-gcc-fno-common.patch +Patch2: 0003-bodhi-Initialize-karma-values-with-default.patch BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -1017,6 +1019,11 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jan 30 2020 Martin Kutlak - 2.13.0-4 +- Add patch to fix build failure with gcc -fno-common +- Initialize bodhi karma values with defaults +- Resolves: #1795820 + * Tue Jan 28 2020 Fedora Release Engineering - 2.13.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 8f4c491a4bd52ff86180e7bf72b614004eaa9b50 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Fri, 31 Jan 2020 10:42:41 +0100 Subject: [PATCH 232/318] Add patch for possibly unitialized variable Removed comments after endifs. Signed-off-by: Martin Kutlak --- ...-Fix-possibly-uninitialized-variable.patch | 29 ++++++++++++ abrt.spec | 44 ++++++++++--------- 2 files changed, 52 insertions(+), 21 deletions(-) create mode 100644 0004-dbus-Fix-possibly-uninitialized-variable.patch diff --git a/0004-dbus-Fix-possibly-uninitialized-variable.patch b/0004-dbus-Fix-possibly-uninitialized-variable.patch new file mode 100644 index 0000000..5ad921b --- /dev/null +++ b/0004-dbus-Fix-possibly-uninitialized-variable.patch @@ -0,0 +1,29 @@ +From f81bbaa60ad6c5c99dba499044255fdde5d5ed4a Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Fri, 31 Jan 2020 10:12:37 +0100 +Subject: [PATCH] dbus: Fix possibly uninitialized variable + +abrt_problems2_task.c:419:21: error: +'response' may be used uninitialized in this function [-Werror=maybe-uninitialized] + +Signed-off-by: Martin Kutlak +--- + src/dbus/abrt_problems2_task.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/dbus/abrt_problems2_task.c b/src/dbus/abrt_problems2_task.c +index e6ae171c7..af47660aa 100644 +--- a/src/dbus/abrt_problems2_task.c ++++ b/src/dbus/abrt_problems2_task.c +@@ -403,7 +403,7 @@ static void abrt_p2_task_autonomous_cb(AbrtP2Task *task, + + case ABRT_P2_TASK_STATUS_FAILED: + { +- GVariant *response; ++ GVariant *response = NULL; + gint32 code; + GError *error = NULL; + abrt_p2_task_finish(task, &response, &code, &error); +-- +2.24.1 + diff --git a/abrt.spec b/abrt.spec index 16cad2b..d97225a 100644 --- a/abrt.spec +++ b/abrt.spec @@ -54,9 +54,10 @@ License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -Patch0: 0001-python-Use-correct-paths-for-installed-modules.patch -Patch1: 0002-Fix-build-failure-with-gcc-fno-common.patch -Patch2: 0003-bodhi-Initialize-karma-values-with-default.patch +Patch0001: 0001-python-Use-correct-paths-for-installed-modules.patch +Patch0002: 0002-Fix-build-failure-with-gcc-fno-common.patch +Patch0003: 0003-bodhi-Initialize-karma-values-with-default.patch +Patch0004- 0004-dbus-Fix-possibly-uninitialized-variable.patch BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -83,7 +84,7 @@ BuildRequires: libselinux-devel BuildRequires: python3-devel BuildRequires: python3-systemd BuildRequires: python3-argcomplete -%endif # with python3 +%endif Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} @@ -101,7 +102,7 @@ Requires(pre): %{shadow_utils} %if %{with python3} Requires: python3-augeas Requires: python3-dbus -%endif # with python3 +%endif %ifarch aarch64 i686 x86_64 Requires: dmidecode %endif @@ -138,7 +139,7 @@ BuildRequires: python3-sphinx BuildRequires: python3-libreport #python3-abrt-doc BuildRequires: python3-devel -%endif # with python3 +%endif %description %{name} is a tool to help users to detect defects in applications and @@ -203,7 +204,7 @@ Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} %if %{with python3} Requires: python3-libreport -%endif # with python3 +%endif Obsoletes: abrt-addon-coredump-helper <= 2.12.2 @@ -263,7 +264,7 @@ Requires: kexec-tools %if %{with python3} Requires: python3-abrt Requires: python3-augeas -%endif # with python3 +%endif Requires: util-linux %description addon-vmcore @@ -311,7 +312,7 @@ Requires: container-exception-logger %description -n python3-abrt-container-addon This package contains python 3 hook and handling uncaught exception in python 3 programs in container. -%endif # with python3 +%endif %package plugin-sosreport Summary: %{name}'s plugin for building automatic sosreports @@ -343,7 +344,7 @@ Requires: python3-argcomplete Provides: %{name}-cli-ng = %{version}-%{release} Obsoletes: %{name}-cli-ng < 2.12.2 -%endif # with python3 +%endif %description tui This package contains a simple command line client for processing abrt reports @@ -359,7 +360,7 @@ Requires: abrt-addon-vmcore Requires: abrt-addon-ccpp %if %{with python3} Requires: python3-abrt-addon -%endif # with python3 +%endif Requires: abrt-addon-xorg %if 0%{?rhel} Requires: libreport-rhel >= %{libreport_ver} @@ -399,7 +400,7 @@ Requires: abrt-addon-vmcore Requires: abrt-addon-ccpp %if %{with python3} Requires: python3-abrt-addon -%endif # with python3 +%endif Requires: abrt-addon-xorg Requires: gdb-headless Requires: abrt-gui @@ -473,7 +474,7 @@ Requires: python3-%{name} = %{version}-%{release} %description -n python3-abrt-doc Examples and documentation for ABRT Python 3 API. -%endif # with python3 +%endif %package console-notification Summary: ABRT console notification script @@ -497,7 +498,7 @@ autoconf CFLAGS="%{optflags} -Werror" %configure \ %if %{without python3} --without-python3 \ -%endif # with python3 +%endif %if %{without bodhi} --without-bodhi \ %endif @@ -524,7 +525,7 @@ CFLAGS="%{optflags} -Werror" %configure \ %make_install \ %if %{with python3} PYTHON=%{__python3} \ -%endif # with python3 +%endif dbusabrtdocdir=%{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/ %find_lang %{name} @@ -595,7 +596,7 @@ chown -R abrt:abrt %{_localstatedir}/cache/abrt-di %if %{with python3} %post -n python3-abrt-addon %journal_catalog_update -%endif # with python3 +%endif %post addon-vmcore %systemd_post abrt-vmcore.service @@ -666,7 +667,7 @@ fi if [ -f /etc/abrt/plugins/CCpp.conf.rpmsave.atomic ]; then mv /etc/abrt/plugins/CCpp.conf.rpmsave.atomic /etc/abrt/plugins/CCpp.conf || exit 1 fi -%endif # with atomic +%endif %if 0%{?rhel} && 0%{?rhel} <= 7 %post libs -p /sbin/ldconfig @@ -949,7 +950,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{python3_sitelib}/abrt3_container.pth %{python3_sitelib}/abrt_exception_handler3_container.py %{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* -%endif # with python3 +%endif %files plugin-sosreport %config(noreplace) %{_sysconfdir}/libreport/events.d/sosreport_event.conf @@ -968,7 +969,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{python3_sitelib}/abrtcli/ %{_mandir}/man1/abrt.1* %{_mandir}/man1/abrt-cli.1* -%endif # with python3 +%endif %files desktop @@ -1013,15 +1014,16 @@ killall abrt-dbus >/dev/null 2>&1 || : %files -n python3-abrt-doc %{python3_sitelib}/problem_examples -%endif # with python3 +%endif %files console-notification %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog -* Thu Jan 30 2020 Martin Kutlak - 2.13.0-4 +* Fri Jan 31 2020 Martin Kutlak - 2.13.0-4 - Add patch to fix build failure with gcc -fno-common - Initialize bodhi karma values with defaults +- Fix possibly uninitialized variable - Resolves: #1795820 * Tue Jan 28 2020 Fedora Release Engineering - 2.13.0-3 From 68a77d6ad64818e9aeb7c737cdbb041cab55ff81 Mon Sep 17 00:00:00 2001 From: Martin Kutlak Date: Fri, 31 Jan 2020 10:44:31 +0100 Subject: [PATCH 233/318] Fix typo in spec file Signed-off-by: Martin Kutlak --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index d97225a..f6d2fd2 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta Patch0001: 0001-python-Use-correct-paths-for-installed-modules.patch Patch0002: 0002-Fix-build-failure-with-gcc-fno-common.patch Patch0003: 0003-bodhi-Initialize-karma-values-with-default.patch -Patch0004- 0004-dbus-Fix-possibly-uninitialized-variable.patch +Patch0004: 0004-dbus-Fix-possibly-uninitialized-variable.patch BuildRequires: git-core BuildRequires: %{dbus_devel} From 2bb52e3881eaebbccf9669cc9b8eaa737f9d3517 Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Fri, 7 Feb 2020 07:25:47 +0100 Subject: [PATCH 234/318] Rebuild for satyr 0.30 Signed-off-by: Igor Raits --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index f6d2fd2..d971650 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.13.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1020,6 +1020,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Feb 07 2020 Igor Raits - 2.13.0-5 +- Rebuild for satyr 0.30 + * Fri Jan 31 2020 Martin Kutlak - 2.13.0-4 - Add patch to fix build failure with gcc -fno-common - Initialize bodhi karma values with defaults From 10288b9c6dfc3a092c51c52835b76a95a66e5c7e Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Fri, 7 Feb 2020 07:41:21 +0100 Subject: [PATCH 235/318] Add patch to fix build with new libreport Signed-off-by: Igor Raits --- ...oid-explicit-dependency-on-hash-size.patch | 187 ++++++++++++++++++ abrt.spec | 2 + 2 files changed, 189 insertions(+) create mode 100644 0001-koops-Avoid-explicit-dependency-on-hash-size.patch diff --git a/0001-koops-Avoid-explicit-dependency-on-hash-size.patch b/0001-koops-Avoid-explicit-dependency-on-hash-size.patch new file mode 100644 index 0000000..205655d --- /dev/null +++ b/0001-koops-Avoid-explicit-dependency-on-hash-size.patch @@ -0,0 +1,187 @@ +From 5284fd63f1d2d9da09fd1793e49ab734557ea046 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= +Date: Thu, 23 Jan 2020 13:47:50 +0100 +Subject: [PATCH] koops: Avoid explicit dependency on hash size + +Change the API so that koops_hash_str and koops_hash_str_ext return the +heap-allocated encoded digest instead of taking a pointer and returning +a status code. + +This eliminates the need to know the size of the resulting hash in +advance, which should solve the build problems following recent +libreport changes. +--- + src/include/libabrt.h | 4 +-- + src/lib/kernel.c | 39 +++++++++----------------- + src/plugins/abrt-action-analyze-oops.c | 11 ++++---- + tests/koops-parser.at | 14 ++++----- + 4 files changed, 27 insertions(+), 41 deletions(-) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 33a1c5af..ab0bf6aa 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -138,9 +138,9 @@ char *kernel_tainted_short(const char *kernel_bt); + #define kernel_tainted_long abrt_kernel_tainted_long + char *kernel_tainted_long(const char *tainted_short); + #define koops_hash_str_ext abrt_koops_hash_str_ext +-int koops_hash_str_ext(char hash_str[SHA1_RESULT_LEN*2 + 1], const char *oops_buf, int frame_count, int duphas_flags); ++char *koops_hash_str_ext(const char *oops_buf, int frame_count, int duphas_flags); + #define koops_hash_str abrt_koops_hash_str +-int koops_hash_str(char hash_str[SHA1_RESULT_LEN*2 + 1], const char *oops_buf); ++char *koops_hash_str(const char *oops_buf); + + + #define koops_line_skip_level abrt_koops_line_skip_level +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 7b831dac..c95bf7f9 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -586,18 +586,16 @@ void koops_extract_oopses_from_lines(GList **oops_list, const struct abrt_koops_ + } + } + +-int koops_hash_str_ext(char result[SHA1_RESULT_LEN*2 + 1], const char *oops_buf, int frame_count, int duphash_flags) ++char *koops_hash_str_ext(const char *oops_buf, int frame_count, int duphash_flags) + { +- char *hash_str = NULL, *error = NULL; +- int bad = 0; ++ g_autofree char *error = NULL; ++ char *digest = NULL; + + struct sr_stacktrace *stacktrace = sr_stacktrace_parse(SR_REPORT_KERNELOOPS, + oops_buf, &error); + if (!stacktrace) + { + log_debug("Failed to parse koops: %s", error); +- free(error); +- bad = 1; + goto end; + } + +@@ -605,43 +603,34 @@ int koops_hash_str_ext(char result[SHA1_RESULT_LEN*2 + 1], const char *oops_buf, + if (!thread) + { + log_debug("Failed to find crash thread"); +- bad = 1; + goto end; + } + + if (g_verbose >= 3) + { +- hash_str = sr_thread_get_duphash(thread, frame_count, NULL, +- duphash_flags|SR_DUPHASH_NOHASH); +- if (hash_str) +- log_warning("Generating duphash: '%s'", hash_str); ++ digest = sr_thread_get_duphash(thread, frame_count, NULL, ++ duphash_flags|SR_DUPHASH_NOHASH); ++ if (digest) ++ { ++ log_warning("Generating duphash: '%s'", digest); ++ free(digest); ++ } + else + log_warning("Nothing useful for duphash"); +- +- +- free(hash_str); + } + +- hash_str = sr_thread_get_duphash(thread, frame_count, NULL, duphash_flags); +- if (hash_str) +- { +- strncpy(result, hash_str, SHA1_RESULT_LEN*2); +- result[SHA1_RESULT_LEN*2] = '\0'; +- free(hash_str); +- } +- else +- bad = 1; ++ digest = sr_thread_get_duphash(thread, frame_count, NULL, duphash_flags); + + end: + sr_stacktrace_free(stacktrace); +- return bad; ++ return digest; + } + +-int koops_hash_str(char result[SHA1_RESULT_LEN*2 + 1], const char *oops_buf) ++char *koops_hash_str(const char *oops_buf) + { + const int frame_count = 6; + const int duphash_flags = SR_DUPHASH_NONORMALIZE|SR_DUPHASH_KOOPS_COMPAT; +- return koops_hash_str_ext(result, oops_buf, frame_count, duphash_flags); ++ return koops_hash_str_ext(oops_buf, frame_count, duphash_flags); + } + + char *koops_extract_version(const char *linepointer) +diff --git a/src/plugins/abrt-action-analyze-oops.c b/src/plugins/abrt-action-analyze-oops.c +index d7fe6886..ddd1c46d 100644 +--- a/src/plugins/abrt-action-analyze-oops.c ++++ b/src/plugins/abrt-action-analyze-oops.c +@@ -60,9 +60,8 @@ int main(int argc, char **argv) + load_abrt_plugin_conf_file("oops.conf", settings); + + char *oops = dd_load_text(dd, FILENAME_BACKTRACE); +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- int bad = koops_hash_str(hash_str, oops); +- if (bad) ++ g_autofree char *hash_str = koops_hash_str(oops); ++ if (!hash_str) + { + error_msg("Can't find a meaningful backtrace for hashing in '%s'", dump_dir_name); + +@@ -87,7 +86,7 @@ int main(int argc, char **argv) + /* We need UUID file for the local duplicates look-up and DUPHASH */ + /* file is also useful because user can force ABRT to report */ + /* the oops into a bug tracking system (Bugzilla). */ +- bad = koops_hash_str_ext(hash_str, oops, ++ hash_str = koops_hash_str_ext(oops, + /* use no frame count limit */-1, + /* use every frame in stacktrace */0); + +@@ -97,7 +96,7 @@ int main(int argc, char **argv) + + free(oops); + +- if (!bad) ++ if (hash_str) + { + dd_save_text(dd, FILENAME_UUID, hash_str); + dd_save_text(dd, FILENAME_DUPHASH, hash_str); +@@ -107,5 +106,5 @@ int main(int argc, char **argv) + + free_map_string(settings); + +- return bad; ++ return NULL != hash_str; + } +diff --git a/tests/koops-parser.at b/tests/koops-parser.at +index 4f9087ab..51a45e62 100644 +--- a/tests/koops-parser.at ++++ b/tests/koops-parser.at +@@ -125,16 +125,14 @@ AT_TESTFUN([koops_hash_improve], + + int run_test(const struct test_struct *test) + { +- char *oops1 = fread_full(test->filename); +- char *oops2 = fread_full(test->expected_results); ++ g_autofree char *oops1 = fread_full(test->filename); ++ g_autofree char *oops2 = fread_full(test->expected_results); + +- char hash_oops1[SHA1_RESULT_LEN*2 + 1]; +- koops_hash_str(hash_oops1, oops1); +- free(oops1); ++ g_autofree char *hash_oops1 = koops_hash_str(oops1); ++ g_autofree char *hash_oops2 = koops_hash_str(oops2); + +- char hash_oops2[SHA1_RESULT_LEN*2 + 1]; +- koops_hash_str(hash_oops2, oops2); +- free(oops2); ++ if (NULL == hash_oops1 || NULL == hash_oops2) ++ return 1; + + if (!strcmp(hash_oops1, hash_oops2)) + return 0; +-- +2.25.0 + diff --git a/abrt.spec b/abrt.spec index d971650..5c4f2f0 100644 --- a/abrt.spec +++ b/abrt.spec @@ -58,6 +58,8 @@ Patch0001: 0001-python-Use-correct-paths-for-installed-modules.patch Patch0002: 0002-Fix-build-failure-with-gcc-fno-common.patch Patch0003: 0003-bodhi-Initialize-karma-values-with-default.patch Patch0004: 0004-dbus-Fix-possibly-uninitialized-variable.patch +# https://github.com/abrt/abrt/commit/439fe1daddd62d53bf2ee72c45b631f5248daf5d +Patch0005: 0001-koops-Avoid-explicit-dependency-on-hash-size.patch BuildRequires: git-core BuildRequires: %{dbus_devel} From 5f74b5e40709fd5924c4dc57f71d00f052786e89 Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Fri, 7 Feb 2020 07:51:01 +0100 Subject: [PATCH 236/318] Backport few more patches to fix compatibility with new libreport Signed-off-by: Igor Raits --- 0001-Stop-using-parse_list.patch | 70 ++++++++ 0001-Use-GChecksum-to-compute-checksums.patch | 168 ++++++++++++++++++ abrt.spec | 6 +- 3 files changed, 243 insertions(+), 1 deletion(-) create mode 100644 0001-Stop-using-parse_list.patch create mode 100644 0001-Use-GChecksum-to-compute-checksums.patch diff --git a/0001-Stop-using-parse_list.patch b/0001-Stop-using-parse_list.patch new file mode 100644 index 0000000..8f2459c --- /dev/null +++ b/0001-Stop-using-parse_list.patch @@ -0,0 +1,70 @@ +From 3f5003af92d2b2b0e4f5565ccd90b29e32e6b30b Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Thu, 16 Jan 2020 10:53:47 +0100 +Subject: [PATCH] Stop using parse_list + +It will be gone from libreport before you know it. +--- + src/daemon/abrt-action-save-package-data.c | 12 ++++++------ + src/plugins/abrt-dump-journal-xorg.c | 2 +- + 2 files changed, 7 insertions(+), 7 deletions(-) + +diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c +index e52b3d55..30e8fd73 100644 +--- a/src/daemon/abrt-action-save-package-data.c ++++ b/src/daemon/abrt-action-save-package-data.c +@@ -49,20 +49,20 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) + value = get_map_string_item_or_NULL(settings, "BlackList"); + if (value) + { +- settings_setBlackListedPkgs = parse_list(value); ++ settings_setBlackListedPkgs = parse_delimited_list(value, ","); + remove_map_string_item(settings, "BlackList"); + } + else +- settings_setBlackListedPkgs = parse_list(DEFAULT_BLACKLISTED_PKGS); ++ settings_setBlackListedPkgs = parse_delimited_list(DEFAULT_BLACKLISTED_PKGS, ","); + + value = get_map_string_item_or_NULL(settings, "BlackListedPaths"); + if (value) + { +- settings_setBlackListedPaths = parse_list(value); ++ settings_setBlackListedPaths = parse_delimited_list(value, ","); + remove_map_string_item(settings, "BlackListedPaths"); + } + else +- settings_setBlackListedPaths = parse_list(DEFAULT_BLACKLISTED_PATHS); ++ settings_setBlackListedPaths = parse_delimited_list(DEFAULT_BLACKLISTED_PATHS, ","); + + value = get_map_string_item_or_NULL(settings, "ProcessUnpackaged"); + if (value) +@@ -74,11 +74,11 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) + value = get_map_string_item_or_NULL(settings, "Interpreters"); + if (value) + { +- settings_Interpreters = parse_list(value); ++ settings_Interpreters = parse_delimited_list(value, ","); + remove_map_string_item(settings, "Interpreters"); + } + else +- settings_Interpreters = parse_list(DEFAULT_INTERPRETERS); ++ settings_Interpreters = parse_delimited_list(DEFAULT_INTERPRETERS, ","); + + map_string_iter_t iter; + const char *name; +diff --git a/src/plugins/abrt-dump-journal-xorg.c b/src/plugins/abrt-dump-journal-xorg.c +index 92d19661..351bbae4 100644 +--- a/src/plugins/abrt-dump-journal-xorg.c ++++ b/src/plugins/abrt-dump-journal-xorg.c +@@ -261,7 +261,7 @@ int main(int argc, char *argv[]) + conf_journal_filters = XORG_DEFAULT_JOURNAL_FILTERS; + } + +- xorg_journal_filter = parse_list(conf_journal_filters); ++ xorg_journal_filter = parse_delimited_list(conf_journal_filters, ","); + /* list data will be free by g_list_free_full */ + free_filter_list_data = true; + free_map_string(settings); +-- +2.25.0 + diff --git a/0001-Use-GChecksum-to-compute-checksums.patch b/0001-Use-GChecksum-to-compute-checksums.patch new file mode 100644 index 0000000..f0e32ae --- /dev/null +++ b/0001-Use-GChecksum-to-compute-checksums.patch @@ -0,0 +1,168 @@ +From 16468b57579997971c056687ecc8438a406d57c2 Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Tue, 14 Jan 2020 16:36:21 +0100 +Subject: [PATCH] Use GChecksum to compute checksums +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +d605ffeaa6ae411ef396160ffd67b7a6fd27c6ba in libreport removed some +convenience API for hashing data, so let’s just go with what GLib has in +store. +--- + src/dbus/abrt_problems2_service.c | 33 +++++++++++---------- + src/plugins/abrt-action-analyze-backtrace.c | 8 +++-- + src/plugins/abrt-action-analyze-c.c | 7 +++-- + src/plugins/abrt-action-analyze-python.c | 9 +++--- + 4 files changed, 32 insertions(+), 25 deletions(-) + +diff --git a/src/dbus/abrt_problems2_service.c b/src/dbus/abrt_problems2_service.c +index 2511136f..a0d2a3ce 100644 +--- a/src/dbus/abrt_problems2_service.c ++++ b/src/dbus/abrt_problems2_service.c +@@ -572,9 +572,11 @@ static AbrtP2Object *session_object_register(AbrtP2Service *service, + + static char *session_object_caller_to_path(const char *caller) + { +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- str_to_sha1str(hash_str, caller); +- return xasprintf(ABRT_P2_PATH"/Session/%s", hash_str); ++ g_autofree char *checksum = NULL; ++ ++ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, caller, -1); ++ ++ return xasprintf(ABRT_P2_PATH"/Session/%s", checksum); + } + + static AbrtP2Object *abrt_p2_service_get_session_for_caller( +@@ -1323,9 +1325,11 @@ static void entry_object_destructor(AbrtP2Object *obj) + + static char *entry_object_dir_name_to_path(const char *dd_dirname) + { +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- str_to_sha1str(hash_str, dd_dirname); +- return xasprintf(ABRT_P2_PATH"/Entry/%s", hash_str); ++ g_autofree char *checksum = NULL; ++ ++ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, dd_dirname, -1); ++ ++ return xasprintf(ABRT_P2_PATH"/Entry/%s", checksum); + } + + static AbrtP2Object *entry_object_register_dump_dir(AbrtP2Service *service, +@@ -1480,8 +1484,10 @@ char *abrt_p2_service_save_problem( AbrtP2Service *service, + else + { + /* start hash */ +- sha1_ctx_t sha1ctx; +- sha1_begin(&sha1ctx); ++ g_autoptr(GChecksum) checksum = NULL; ++ const char *digest; ++ ++ checksum = g_checksum_new(G_CHECKSUM_SHA1); + + /* + * To avoid spurious hash differences, sort keys so that elements are +@@ -1500,19 +1506,16 @@ char *abrt_p2_service_save_problem( AbrtP2Service *service, + + gsize size = 0; + const char *content = g_variant_get_string(element, &size); +- sha1_hash(&sha1ctx, content, size); ++ ++ g_checksum_update(checksum, (const unsigned char *)content, size); + + g_variant_unref(element); + } + g_list_free_full(list, free); + +- /* end hash */ +- char hash_bytes[SHA1_RESULT_LEN]; +- sha1_end(&sha1ctx, hash_bytes); +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- bin2hex(hash_str, hash_bytes, SHA1_RESULT_LEN)[0] = '\0'; ++ digest = g_checksum_get_string(checksum); + +- g_variant_dict_insert(&pd, FILENAME_UUID, "s", hash_str); ++ g_variant_dict_insert(&pd, FILENAME_UUID, "s", digest); + } + } + +diff --git a/src/plugins/abrt-action-analyze-backtrace.c b/src/plugins/abrt-action-analyze-backtrace.c +index 622d7953..20e71945 100644 +--- a/src/plugins/abrt-action-analyze-backtrace.c ++++ b/src/plugins/abrt-action-analyze-backtrace.c +@@ -82,6 +82,8 @@ int main(int argc, char **argv) + /* Store backtrace hash */ + if (!backtrace) + { ++ g_autofree char *checksum = NULL; ++ + /* + * The parser failed. Compute the duphash from the executable + * instead of a backtrace. +@@ -98,10 +100,10 @@ int main(int argc, char **argv) + strbuf_prepend_str(emptybt, component); + + log_debug("Generating duphash: %s", emptybt->buf); +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- str_to_sha1str(hash_str, emptybt->buf); + +- dd_save_text(dd, FILENAME_DUPHASH, hash_str); ++ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, emptybt->buf, -1); ++ ++ dd_save_text(dd, FILENAME_DUPHASH, checksum); + /* + * Other parts of ABRT assume that if no rating is available, + * it is ok to allow reporting of the bug. To be sure no bad +diff --git a/src/plugins/abrt-action-analyze-c.c b/src/plugins/abrt-action-analyze-c.c +index 08e48779..4a6d34d4 100644 +--- a/src/plugins/abrt-action-analyze-c.c ++++ b/src/plugins/abrt-action-analyze-c.c +@@ -235,10 +235,11 @@ int main(int argc, char **argv) + + log_debug("String to hash: %s", string_to_hash); + +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- str_to_sha1str(hash_str, string_to_hash); ++ g_autofree char *checksum = NULL; + +- dd_save_text(dd, FILENAME_UUID, hash_str); ++ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, string_to_hash, -1); ++ ++ dd_save_text(dd, FILENAME_UUID, checksum); + + /* Create crash_function element from core_backtrace */ + char *core_backtrace_json = dd_load_text_ext(dd, FILENAME_CORE_BACKTRACE, +diff --git a/src/plugins/abrt-action-analyze-python.c b/src/plugins/abrt-action-analyze-python.c +index 0dd55750..10589cbb 100644 +--- a/src/plugins/abrt-action-analyze-python.c ++++ b/src/plugins/abrt-action-analyze-python.c +@@ -26,6 +26,8 @@ + + int main(int argc, char **argv) + { ++ g_autofree char *checksum = NULL; ++ + /* I18n */ + setlocale(LC_ALL, ""); + #if ENABLE_NLS +@@ -91,13 +93,12 @@ int main(int argc, char **argv) + + char *bt_end = strchrnul(bt, '\n'); + *bt_end = '\0'; +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- str_to_sha1str(hash_str, bt); ++ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, bt, -1); + + free(bt); + +- dd_save_text(dd, FILENAME_UUID, hash_str); +- dd_save_text(dd, FILENAME_DUPHASH, hash_str); ++ dd_save_text(dd, FILENAME_UUID, checksum); ++ dd_save_text(dd, FILENAME_DUPHASH, checksum); + dd_close(dd); + + return 0; +-- +2.25.0 + diff --git a/abrt.spec b/abrt.spec index 5c4f2f0..8ab97a0 100644 --- a/abrt.spec +++ b/abrt.spec @@ -58,8 +58,12 @@ Patch0001: 0001-python-Use-correct-paths-for-installed-modules.patch Patch0002: 0002-Fix-build-failure-with-gcc-fno-common.patch Patch0003: 0003-bodhi-Initialize-karma-values-with-default.patch Patch0004: 0004-dbus-Fix-possibly-uninitialized-variable.patch +# https://github.com/abrt/abrt/commit/16468b57579997971c056687ecc8438a406d57c2 +Patch0005: 0001-Use-GChecksum-to-compute-checksums.patch # https://github.com/abrt/abrt/commit/439fe1daddd62d53bf2ee72c45b631f5248daf5d -Patch0005: 0001-koops-Avoid-explicit-dependency-on-hash-size.patch +Patch0006: 0001-koops-Avoid-explicit-dependency-on-hash-size.patch +# https://github.com/abrt/abrt/commit/3f5003af92d2b2b0e4f5565ccd90b29e32e6b30b +Patch0007: 0001-Stop-using-parse_list.patch BuildRequires: git-core BuildRequires: %{dbus_devel} From c84c5d2738eebdb48a1fe1c2aade1e37b3935f94 Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Fri, 7 Feb 2020 08:45:18 +0100 Subject: [PATCH 237/318] Update to 2.14.0 --- .gitignore | 1 + 0001-Stop-using-parse_list.patch | 70 ------- 0001-Use-GChecksum-to-compute-checksums.patch | 168 ---------------- ...oid-explicit-dependency-on-hash-size.patch | 187 ------------------ ...-correct-paths-for-installed-modules.patch | 96 --------- ...ix-build-failure-with-gcc-fno-common.patch | 165 ---------------- ...Initialize-karma-values-with-default.patch | 32 --- ...-Fix-possibly-uninitialized-variable.patch | 29 --- abrt.spec | 18 +- sources | 2 +- 10 files changed, 7 insertions(+), 761 deletions(-) delete mode 100644 0001-Stop-using-parse_list.patch delete mode 100644 0001-Use-GChecksum-to-compute-checksums.patch delete mode 100644 0001-koops-Avoid-explicit-dependency-on-hash-size.patch delete mode 100644 0001-python-Use-correct-paths-for-installed-modules.patch delete mode 100644 0002-Fix-build-failure-with-gcc-fno-common.patch delete mode 100644 0003-bodhi-Initialize-karma-values-with-default.patch delete mode 100644 0004-dbus-Fix-possibly-uninitialized-variable.patch diff --git a/.gitignore b/.gitignore index 6268042..41d1ef0 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,4 @@ abrt-1.1.13.tar.gz /abrt-2.12.1.tar.gz /abrt-2.12.2.tar.gz /abrt-2.13.0.tar.gz +/abrt-2.14.0.tar.gz diff --git a/0001-Stop-using-parse_list.patch b/0001-Stop-using-parse_list.patch deleted file mode 100644 index 8f2459c..0000000 --- a/0001-Stop-using-parse_list.patch +++ /dev/null @@ -1,70 +0,0 @@ -From 3f5003af92d2b2b0e4f5565ccd90b29e32e6b30b Mon Sep 17 00:00:00 2001 -From: Ernestas Kulik -Date: Thu, 16 Jan 2020 10:53:47 +0100 -Subject: [PATCH] Stop using parse_list - -It will be gone from libreport before you know it. ---- - src/daemon/abrt-action-save-package-data.c | 12 ++++++------ - src/plugins/abrt-dump-journal-xorg.c | 2 +- - 2 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c -index e52b3d55..30e8fd73 100644 ---- a/src/daemon/abrt-action-save-package-data.c -+++ b/src/daemon/abrt-action-save-package-data.c -@@ -49,20 +49,20 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) - value = get_map_string_item_or_NULL(settings, "BlackList"); - if (value) - { -- settings_setBlackListedPkgs = parse_list(value); -+ settings_setBlackListedPkgs = parse_delimited_list(value, ","); - remove_map_string_item(settings, "BlackList"); - } - else -- settings_setBlackListedPkgs = parse_list(DEFAULT_BLACKLISTED_PKGS); -+ settings_setBlackListedPkgs = parse_delimited_list(DEFAULT_BLACKLISTED_PKGS, ","); - - value = get_map_string_item_or_NULL(settings, "BlackListedPaths"); - if (value) - { -- settings_setBlackListedPaths = parse_list(value); -+ settings_setBlackListedPaths = parse_delimited_list(value, ","); - remove_map_string_item(settings, "BlackListedPaths"); - } - else -- settings_setBlackListedPaths = parse_list(DEFAULT_BLACKLISTED_PATHS); -+ settings_setBlackListedPaths = parse_delimited_list(DEFAULT_BLACKLISTED_PATHS, ","); - - value = get_map_string_item_or_NULL(settings, "ProcessUnpackaged"); - if (value) -@@ -74,11 +74,11 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) - value = get_map_string_item_or_NULL(settings, "Interpreters"); - if (value) - { -- settings_Interpreters = parse_list(value); -+ settings_Interpreters = parse_delimited_list(value, ","); - remove_map_string_item(settings, "Interpreters"); - } - else -- settings_Interpreters = parse_list(DEFAULT_INTERPRETERS); -+ settings_Interpreters = parse_delimited_list(DEFAULT_INTERPRETERS, ","); - - map_string_iter_t iter; - const char *name; -diff --git a/src/plugins/abrt-dump-journal-xorg.c b/src/plugins/abrt-dump-journal-xorg.c -index 92d19661..351bbae4 100644 ---- a/src/plugins/abrt-dump-journal-xorg.c -+++ b/src/plugins/abrt-dump-journal-xorg.c -@@ -261,7 +261,7 @@ int main(int argc, char *argv[]) - conf_journal_filters = XORG_DEFAULT_JOURNAL_FILTERS; - } - -- xorg_journal_filter = parse_list(conf_journal_filters); -+ xorg_journal_filter = parse_delimited_list(conf_journal_filters, ","); - /* list data will be free by g_list_free_full */ - free_filter_list_data = true; - free_map_string(settings); --- -2.25.0 - diff --git a/0001-Use-GChecksum-to-compute-checksums.patch b/0001-Use-GChecksum-to-compute-checksums.patch deleted file mode 100644 index f0e32ae..0000000 --- a/0001-Use-GChecksum-to-compute-checksums.patch +++ /dev/null @@ -1,168 +0,0 @@ -From 16468b57579997971c056687ecc8438a406d57c2 Mon Sep 17 00:00:00 2001 -From: Ernestas Kulik -Date: Tue, 14 Jan 2020 16:36:21 +0100 -Subject: [PATCH] Use GChecksum to compute checksums -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -d605ffeaa6ae411ef396160ffd67b7a6fd27c6ba in libreport removed some -convenience API for hashing data, so let’s just go with what GLib has in -store. ---- - src/dbus/abrt_problems2_service.c | 33 +++++++++++---------- - src/plugins/abrt-action-analyze-backtrace.c | 8 +++-- - src/plugins/abrt-action-analyze-c.c | 7 +++-- - src/plugins/abrt-action-analyze-python.c | 9 +++--- - 4 files changed, 32 insertions(+), 25 deletions(-) - -diff --git a/src/dbus/abrt_problems2_service.c b/src/dbus/abrt_problems2_service.c -index 2511136f..a0d2a3ce 100644 ---- a/src/dbus/abrt_problems2_service.c -+++ b/src/dbus/abrt_problems2_service.c -@@ -572,9 +572,11 @@ static AbrtP2Object *session_object_register(AbrtP2Service *service, - - static char *session_object_caller_to_path(const char *caller) - { -- char hash_str[SHA1_RESULT_LEN*2 + 1]; -- str_to_sha1str(hash_str, caller); -- return xasprintf(ABRT_P2_PATH"/Session/%s", hash_str); -+ g_autofree char *checksum = NULL; -+ -+ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, caller, -1); -+ -+ return xasprintf(ABRT_P2_PATH"/Session/%s", checksum); - } - - static AbrtP2Object *abrt_p2_service_get_session_for_caller( -@@ -1323,9 +1325,11 @@ static void entry_object_destructor(AbrtP2Object *obj) - - static char *entry_object_dir_name_to_path(const char *dd_dirname) - { -- char hash_str[SHA1_RESULT_LEN*2 + 1]; -- str_to_sha1str(hash_str, dd_dirname); -- return xasprintf(ABRT_P2_PATH"/Entry/%s", hash_str); -+ g_autofree char *checksum = NULL; -+ -+ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, dd_dirname, -1); -+ -+ return xasprintf(ABRT_P2_PATH"/Entry/%s", checksum); - } - - static AbrtP2Object *entry_object_register_dump_dir(AbrtP2Service *service, -@@ -1480,8 +1484,10 @@ char *abrt_p2_service_save_problem( AbrtP2Service *service, - else - { - /* start hash */ -- sha1_ctx_t sha1ctx; -- sha1_begin(&sha1ctx); -+ g_autoptr(GChecksum) checksum = NULL; -+ const char *digest; -+ -+ checksum = g_checksum_new(G_CHECKSUM_SHA1); - - /* - * To avoid spurious hash differences, sort keys so that elements are -@@ -1500,19 +1506,16 @@ char *abrt_p2_service_save_problem( AbrtP2Service *service, - - gsize size = 0; - const char *content = g_variant_get_string(element, &size); -- sha1_hash(&sha1ctx, content, size); -+ -+ g_checksum_update(checksum, (const unsigned char *)content, size); - - g_variant_unref(element); - } - g_list_free_full(list, free); - -- /* end hash */ -- char hash_bytes[SHA1_RESULT_LEN]; -- sha1_end(&sha1ctx, hash_bytes); -- char hash_str[SHA1_RESULT_LEN*2 + 1]; -- bin2hex(hash_str, hash_bytes, SHA1_RESULT_LEN)[0] = '\0'; -+ digest = g_checksum_get_string(checksum); - -- g_variant_dict_insert(&pd, FILENAME_UUID, "s", hash_str); -+ g_variant_dict_insert(&pd, FILENAME_UUID, "s", digest); - } - } - -diff --git a/src/plugins/abrt-action-analyze-backtrace.c b/src/plugins/abrt-action-analyze-backtrace.c -index 622d7953..20e71945 100644 ---- a/src/plugins/abrt-action-analyze-backtrace.c -+++ b/src/plugins/abrt-action-analyze-backtrace.c -@@ -82,6 +82,8 @@ int main(int argc, char **argv) - /* Store backtrace hash */ - if (!backtrace) - { -+ g_autofree char *checksum = NULL; -+ - /* - * The parser failed. Compute the duphash from the executable - * instead of a backtrace. -@@ -98,10 +100,10 @@ int main(int argc, char **argv) - strbuf_prepend_str(emptybt, component); - - log_debug("Generating duphash: %s", emptybt->buf); -- char hash_str[SHA1_RESULT_LEN*2 + 1]; -- str_to_sha1str(hash_str, emptybt->buf); - -- dd_save_text(dd, FILENAME_DUPHASH, hash_str); -+ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, emptybt->buf, -1); -+ -+ dd_save_text(dd, FILENAME_DUPHASH, checksum); - /* - * Other parts of ABRT assume that if no rating is available, - * it is ok to allow reporting of the bug. To be sure no bad -diff --git a/src/plugins/abrt-action-analyze-c.c b/src/plugins/abrt-action-analyze-c.c -index 08e48779..4a6d34d4 100644 ---- a/src/plugins/abrt-action-analyze-c.c -+++ b/src/plugins/abrt-action-analyze-c.c -@@ -235,10 +235,11 @@ int main(int argc, char **argv) - - log_debug("String to hash: %s", string_to_hash); - -- char hash_str[SHA1_RESULT_LEN*2 + 1]; -- str_to_sha1str(hash_str, string_to_hash); -+ g_autofree char *checksum = NULL; - -- dd_save_text(dd, FILENAME_UUID, hash_str); -+ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, string_to_hash, -1); -+ -+ dd_save_text(dd, FILENAME_UUID, checksum); - - /* Create crash_function element from core_backtrace */ - char *core_backtrace_json = dd_load_text_ext(dd, FILENAME_CORE_BACKTRACE, -diff --git a/src/plugins/abrt-action-analyze-python.c b/src/plugins/abrt-action-analyze-python.c -index 0dd55750..10589cbb 100644 ---- a/src/plugins/abrt-action-analyze-python.c -+++ b/src/plugins/abrt-action-analyze-python.c -@@ -26,6 +26,8 @@ - - int main(int argc, char **argv) - { -+ g_autofree char *checksum = NULL; -+ - /* I18n */ - setlocale(LC_ALL, ""); - #if ENABLE_NLS -@@ -91,13 +93,12 @@ int main(int argc, char **argv) - - char *bt_end = strchrnul(bt, '\n'); - *bt_end = '\0'; -- char hash_str[SHA1_RESULT_LEN*2 + 1]; -- str_to_sha1str(hash_str, bt); -+ checksum = g_compute_checksum_for_string(G_CHECKSUM_SHA1, bt, -1); - - free(bt); - -- dd_save_text(dd, FILENAME_UUID, hash_str); -- dd_save_text(dd, FILENAME_DUPHASH, hash_str); -+ dd_save_text(dd, FILENAME_UUID, checksum); -+ dd_save_text(dd, FILENAME_DUPHASH, checksum); - dd_close(dd); - - return 0; --- -2.25.0 - diff --git a/0001-koops-Avoid-explicit-dependency-on-hash-size.patch b/0001-koops-Avoid-explicit-dependency-on-hash-size.patch deleted file mode 100644 index 205655d..0000000 --- a/0001-koops-Avoid-explicit-dependency-on-hash-size.patch +++ /dev/null @@ -1,187 +0,0 @@ -From 5284fd63f1d2d9da09fd1793e49ab734557ea046 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= -Date: Thu, 23 Jan 2020 13:47:50 +0100 -Subject: [PATCH] koops: Avoid explicit dependency on hash size - -Change the API so that koops_hash_str and koops_hash_str_ext return the -heap-allocated encoded digest instead of taking a pointer and returning -a status code. - -This eliminates the need to know the size of the resulting hash in -advance, which should solve the build problems following recent -libreport changes. ---- - src/include/libabrt.h | 4 +-- - src/lib/kernel.c | 39 +++++++++----------------- - src/plugins/abrt-action-analyze-oops.c | 11 ++++---- - tests/koops-parser.at | 14 ++++----- - 4 files changed, 27 insertions(+), 41 deletions(-) - -diff --git a/src/include/libabrt.h b/src/include/libabrt.h -index 33a1c5af..ab0bf6aa 100644 ---- a/src/include/libabrt.h -+++ b/src/include/libabrt.h -@@ -138,9 +138,9 @@ char *kernel_tainted_short(const char *kernel_bt); - #define kernel_tainted_long abrt_kernel_tainted_long - char *kernel_tainted_long(const char *tainted_short); - #define koops_hash_str_ext abrt_koops_hash_str_ext --int koops_hash_str_ext(char hash_str[SHA1_RESULT_LEN*2 + 1], const char *oops_buf, int frame_count, int duphas_flags); -+char *koops_hash_str_ext(const char *oops_buf, int frame_count, int duphas_flags); - #define koops_hash_str abrt_koops_hash_str --int koops_hash_str(char hash_str[SHA1_RESULT_LEN*2 + 1], const char *oops_buf); -+char *koops_hash_str(const char *oops_buf); - - - #define koops_line_skip_level abrt_koops_line_skip_level -diff --git a/src/lib/kernel.c b/src/lib/kernel.c -index 7b831dac..c95bf7f9 100644 ---- a/src/lib/kernel.c -+++ b/src/lib/kernel.c -@@ -586,18 +586,16 @@ void koops_extract_oopses_from_lines(GList **oops_list, const struct abrt_koops_ - } - } - --int koops_hash_str_ext(char result[SHA1_RESULT_LEN*2 + 1], const char *oops_buf, int frame_count, int duphash_flags) -+char *koops_hash_str_ext(const char *oops_buf, int frame_count, int duphash_flags) - { -- char *hash_str = NULL, *error = NULL; -- int bad = 0; -+ g_autofree char *error = NULL; -+ char *digest = NULL; - - struct sr_stacktrace *stacktrace = sr_stacktrace_parse(SR_REPORT_KERNELOOPS, - oops_buf, &error); - if (!stacktrace) - { - log_debug("Failed to parse koops: %s", error); -- free(error); -- bad = 1; - goto end; - } - -@@ -605,43 +603,34 @@ int koops_hash_str_ext(char result[SHA1_RESULT_LEN*2 + 1], const char *oops_buf, - if (!thread) - { - log_debug("Failed to find crash thread"); -- bad = 1; - goto end; - } - - if (g_verbose >= 3) - { -- hash_str = sr_thread_get_duphash(thread, frame_count, NULL, -- duphash_flags|SR_DUPHASH_NOHASH); -- if (hash_str) -- log_warning("Generating duphash: '%s'", hash_str); -+ digest = sr_thread_get_duphash(thread, frame_count, NULL, -+ duphash_flags|SR_DUPHASH_NOHASH); -+ if (digest) -+ { -+ log_warning("Generating duphash: '%s'", digest); -+ free(digest); -+ } - else - log_warning("Nothing useful for duphash"); -- -- -- free(hash_str); - } - -- hash_str = sr_thread_get_duphash(thread, frame_count, NULL, duphash_flags); -- if (hash_str) -- { -- strncpy(result, hash_str, SHA1_RESULT_LEN*2); -- result[SHA1_RESULT_LEN*2] = '\0'; -- free(hash_str); -- } -- else -- bad = 1; -+ digest = sr_thread_get_duphash(thread, frame_count, NULL, duphash_flags); - - end: - sr_stacktrace_free(stacktrace); -- return bad; -+ return digest; - } - --int koops_hash_str(char result[SHA1_RESULT_LEN*2 + 1], const char *oops_buf) -+char *koops_hash_str(const char *oops_buf) - { - const int frame_count = 6; - const int duphash_flags = SR_DUPHASH_NONORMALIZE|SR_DUPHASH_KOOPS_COMPAT; -- return koops_hash_str_ext(result, oops_buf, frame_count, duphash_flags); -+ return koops_hash_str_ext(oops_buf, frame_count, duphash_flags); - } - - char *koops_extract_version(const char *linepointer) -diff --git a/src/plugins/abrt-action-analyze-oops.c b/src/plugins/abrt-action-analyze-oops.c -index d7fe6886..ddd1c46d 100644 ---- a/src/plugins/abrt-action-analyze-oops.c -+++ b/src/plugins/abrt-action-analyze-oops.c -@@ -60,9 +60,8 @@ int main(int argc, char **argv) - load_abrt_plugin_conf_file("oops.conf", settings); - - char *oops = dd_load_text(dd, FILENAME_BACKTRACE); -- char hash_str[SHA1_RESULT_LEN*2 + 1]; -- int bad = koops_hash_str(hash_str, oops); -- if (bad) -+ g_autofree char *hash_str = koops_hash_str(oops); -+ if (!hash_str) - { - error_msg("Can't find a meaningful backtrace for hashing in '%s'", dump_dir_name); - -@@ -87,7 +86,7 @@ int main(int argc, char **argv) - /* We need UUID file for the local duplicates look-up and DUPHASH */ - /* file is also useful because user can force ABRT to report */ - /* the oops into a bug tracking system (Bugzilla). */ -- bad = koops_hash_str_ext(hash_str, oops, -+ hash_str = koops_hash_str_ext(oops, - /* use no frame count limit */-1, - /* use every frame in stacktrace */0); - -@@ -97,7 +96,7 @@ int main(int argc, char **argv) - - free(oops); - -- if (!bad) -+ if (hash_str) - { - dd_save_text(dd, FILENAME_UUID, hash_str); - dd_save_text(dd, FILENAME_DUPHASH, hash_str); -@@ -107,5 +106,5 @@ int main(int argc, char **argv) - - free_map_string(settings); - -- return bad; -+ return NULL != hash_str; - } -diff --git a/tests/koops-parser.at b/tests/koops-parser.at -index 4f9087ab..51a45e62 100644 ---- a/tests/koops-parser.at -+++ b/tests/koops-parser.at -@@ -125,16 +125,14 @@ AT_TESTFUN([koops_hash_improve], - - int run_test(const struct test_struct *test) - { -- char *oops1 = fread_full(test->filename); -- char *oops2 = fread_full(test->expected_results); -+ g_autofree char *oops1 = fread_full(test->filename); -+ g_autofree char *oops2 = fread_full(test->expected_results); - -- char hash_oops1[SHA1_RESULT_LEN*2 + 1]; -- koops_hash_str(hash_oops1, oops1); -- free(oops1); -+ g_autofree char *hash_oops1 = koops_hash_str(oops1); -+ g_autofree char *hash_oops2 = koops_hash_str(oops2); - -- char hash_oops2[SHA1_RESULT_LEN*2 + 1]; -- koops_hash_str(hash_oops2, oops2); -- free(oops2); -+ if (NULL == hash_oops1 || NULL == hash_oops2) -+ return 1; - - if (!strcmp(hash_oops1, hash_oops2)) - return 0; --- -2.25.0 - diff --git a/0001-python-Use-correct-paths-for-installed-modules.patch b/0001-python-Use-correct-paths-for-installed-modules.patch deleted file mode 100644 index d12bb22..0000000 --- a/0001-python-Use-correct-paths-for-installed-modules.patch +++ /dev/null @@ -1,96 +0,0 @@ -From 57c0042ead87249bed5964eeec45b97543674060 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= -Date: Wed, 16 Oct 2019 11:27:54 +0200 -Subject: [PATCH] python: Use correct paths for installed modules - -Non-compiled (without C bits) Python modules should be installed into -architecture-independent directory (/usr/lib/python3.x/site-packages -in the case of Fedora). - -This commit fixes both -* the spec file, where %{python3_sitelib} should be used rather than - %{python3_sitearch} which is to be used for compiled extensions; and -* the automake scripts, where $(pythondir) should be used in place of - $(pyexecdir) for the same reason. - -This is a follow-up to 20dcf7fb4. ---- - abrt.spec.in | 14 +++++++------- - src/cli/abrtcli/Makefile.am | 2 +- - src/cli/abrtcli/cli/Makefile.am | 2 +- - src/hooks/Makefile.am | 2 +- - 4 files changed, 10 insertions(+), 10 deletions(-) - -diff --git a/abrt.spec.in b/abrt.spec.in -index 1c6c48ad..fe0b2278 100644 ---- a/abrt.spec.in -+++ b/abrt.spec.in -@@ -935,14 +935,14 @@ killall abrt-dbus >/dev/null 2>&1 || : - %{_journalcatalogdir}/python3_abrt.catalog - %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_python3_format.conf - %{_mandir}/man5/python3_event.conf.5* --%{python3_sitearch}/abrt3.pth --%{python3_sitearch}/abrt_exception_handler3.py --%{python3_sitearch}/__pycache__/abrt_exception_handler3.* -+%{python3_sitelib}/abrt3.pth -+%{python3_sitelib}/abrt_exception_handler3.py -+%{python3_sitelib}/__pycache__/abrt_exception_handler3.* - - %files -n python3-abrt-container-addon --%{python3_sitearch}/abrt3_container.pth --%{python3_sitearch}/abrt_exception_handler3_container.py --%{python3_sitearch}/__pycache__/abrt_exception_handler3_container.* -+%{python3_sitelib}/abrt3_container.pth -+%{python3_sitelib}/abrt_exception_handler3_container.py -+%{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* - %endif # with python3 - - %files plugin-sosreport -@@ -959,7 +959,7 @@ killall abrt-dbus >/dev/null 2>&1 || : - %config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion - %{_bindir}/abrt - %{_bindir}/abrt-cli --%{python3_sitearch}/abrtcli/ -+%{python3_sitelib}/abrtcli/ - %{_mandir}/man1/abrt.1* - %{_mandir}/man1/abrt-cli.1* - %endif # with python3 -diff --git a/src/cli/abrtcli/Makefile.am b/src/cli/abrtcli/Makefile.am -index d11355a2..a599d0b5 100644 ---- a/src/cli/abrtcli/Makefile.am -+++ b/src/cli/abrtcli/Makefile.am -@@ -9,7 +9,7 @@ PYFILES= \ - utils.py - - abrtcli_PYTHON = $(PYFILES) --abrtclidir = $(pyexecdir)/abrtcli -+abrtclidir = $(pythondir)/abrtcli - - config.py: config.py.in - sed -e s,\@LOCALE_DIR\@,$(localedir),g \ -diff --git a/src/cli/abrtcli/cli/Makefile.am b/src/cli/abrtcli/cli/Makefile.am -index 17ff216b..c796074d 100644 ---- a/src/cli/abrtcli/cli/Makefile.am -+++ b/src/cli/abrtcli/cli/Makefile.am -@@ -10,4 +10,4 @@ abrtclicommands_PYTHON = \ - retrace.py \ - status.py - --abrtclicommandsdir = $(pyexecdir)/abrtcli/cli -+abrtclicommandsdir = $(pythondir)/abrtcli/cli -diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am -index 6e35887f..bdef0329 100644 ---- a/src/hooks/Makefile.am -+++ b/src/hooks/Makefile.am -@@ -35,7 +35,7 @@ EXTRA_DIST = \ - ALL_DEPENDENCES = - - if BUILD_PYTHON3 --py3hookdir = $(pyexecdir) -+py3hookdir = $(pythondir) - dist_pluginsconf_DATA += python3.conf - ALL_DEPENDENCES += abrt_exception_handler3.py - --- -2.21.0 - diff --git a/0002-Fix-build-failure-with-gcc-fno-common.patch b/0002-Fix-build-failure-with-gcc-fno-common.patch deleted file mode 100644 index f85b10f..0000000 --- a/0002-Fix-build-failure-with-gcc-fno-common.patch +++ /dev/null @@ -1,165 +0,0 @@ -From f58c435e4e4f5030af44d2cde8042bcf10d24615 Mon Sep 17 00:00:00 2001 -From: Michal Fabik -Date: Tue, 28 Jan 2020 13:45:14 +0100 -Subject: [PATCH] Fix build failure with gcc -fno-common - -Signed-off-by: Michal Fabik ---- - src/configuration-gui/abrt-config-widget.c | 2 +- - src/dbus/abrt_problems2_service.c | 4 ++-- - src/dbus/abrt_problems2_service.h | 8 ++++---- - src/dbus/abrt_problems2_session.c | 2 +- - src/dbus/abrt_problems2_task.c | 2 +- - src/plugins/oops-utils.c | 2 ++ - src/plugins/oops-utils.h | 2 +- - src/plugins/xorg-utils.c | 2 ++ - src/plugins/xorg-utils.h | 2 +- - 9 files changed, 15 insertions(+), 11 deletions(-) - -diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c -index aa3b5c01b..518ecd1d0 100644 ---- a/src/configuration-gui/abrt-config-widget.c -+++ b/src/configuration-gui/abrt-config-widget.c -@@ -109,7 +109,7 @@ G_DEFINE_TYPE_WITH_PRIVATE(AbrtConfigWidget, abrt_config_widget, GTK_TYPE_BOX) - enum { - SN_CHANGED, - SN_LAST_SIGNAL --} SignalNumber; -+}; - - static guint s_signals[SN_LAST_SIGNAL] = { 0 }; - -diff --git a/src/dbus/abrt_problems2_service.c b/src/dbus/abrt_problems2_service.c -index a0d2a3ce6..a1e7ae322 100644 ---- a/src/dbus/abrt_problems2_service.c -+++ b/src/dbus/abrt_problems2_service.c -@@ -1589,7 +1589,7 @@ AbrtP2Object *abrt_p2_service_get_entry_object(AbrtP2Service *service, - - AbrtP2Object *abrt_p2_service_get_entry_for_problem(AbrtP2Service *service, - const char *problem_id, -- int flags, -+ AbrtP2ServiceEntryLookupFlags flags, - GError **error) - { - char *entry_path = entry_object_dir_name_to_path(problem_id); -@@ -2062,7 +2062,7 @@ GVariant *abrt_p2_service_callers_session(AbrtP2Service *service, - - GVariant *abrt_p2_service_get_problems(AbrtP2Service *service, - uid_t caller_uid, -- gint32 flags, -+ AbrtP2ServiceGetProblemsFlags flags, - GVariant *options, - GError **error) - { -diff --git a/src/dbus/abrt_problems2_service.h b/src/dbus/abrt_problems2_service.h -index f82cf503a..22b97a6e8 100644 ---- a/src/dbus/abrt_problems2_service.h -+++ b/src/dbus/abrt_problems2_service.h -@@ -86,14 +86,14 @@ GVariant *abrt_p2_service_entry_problem_data(AbrtP2Service *service, - GError **error); - - --enum { -+typedef enum { - ABRT_P2_SERVICE_ENTRY_LOOKUP_NOFLAGS = 0x0, ///< return with error if not found - ABRT_P2_SERVICE_ENTRY_LOOKUP_OPTIONAL = 0x1, ///< return NULL if not found --} AbrtP2ServiceEntryLookupFlag; -+} AbrtP2ServiceEntryLookupFlags; - - AbrtP2Object *abrt_p2_service_get_entry_for_problem(AbrtP2Service *service, - const char *problem_id, -- int flags, -+ AbrtP2ServiceEntryLookupFlags flags, - GError **error); - - struct _AbrtP2Entry; -@@ -145,7 +145,7 @@ typedef enum - - GVariant *abrt_p2_service_get_problems(AbrtP2Service *service, - uid_t caller_uid, -- gint32 flags, -+ AbrtP2ServiceGetProblemsFlags flags, - GVariant *options, - GError **error); - -diff --git a/src/dbus/abrt_problems2_session.c b/src/dbus/abrt_problems2_session.c -index 96db4ccc5..85ee78887 100644 ---- a/src/dbus/abrt_problems2_session.c -+++ b/src/dbus/abrt_problems2_session.c -@@ -97,7 +97,7 @@ struct check_auth_cb_params - enum { - SN_AUTHORIZATION_CHANGED, - SN_LAST_SIGNAL --} SignalNumber; -+}; - - static guint s_signals[SN_LAST_SIGNAL] = { 0 }; - -diff --git a/src/dbus/abrt_problems2_task.c b/src/dbus/abrt_problems2_task.c -index cba6b469a..e6ae171c7 100644 ---- a/src/dbus/abrt_problems2_task.c -+++ b/src/dbus/abrt_problems2_task.c -@@ -21,7 +21,7 @@ - enum { - SN_STATUS_CHANGED, - SN_LAST_SIGNAL --} SignalNumber; -+}; - - static guint s_signals[SN_LAST_SIGNAL] = { 0 }; - -diff --git a/src/plugins/oops-utils.c b/src/plugins/oops-utils.c -index caa1d8d5d..a77b4424f 100644 ---- a/src/plugins/oops-utils.c -+++ b/src/plugins/oops-utils.c -@@ -22,6 +22,8 @@ - #include "oops-utils.h" - #include "libabrt.h" - -+int g_abrt_oops_sleep_woke_up_on_signal; -+ - int abrt_oops_process_list(GList *oops_list, const char *dump_location, const char *analyzer, int flags) - { - unsigned errors = 0; -diff --git a/src/plugins/oops-utils.h b/src/plugins/oops-utils.h -index 5181f91c7..bdd61cac2 100644 ---- a/src/plugins/oops-utils.h -+++ b/src/plugins/oops-utils.h -@@ -33,7 +33,7 @@ enum { - ABRT_OOPS_PRINT_STDOUT = 1 << 2, - }; - --int g_abrt_oops_sleep_woke_up_on_signal; -+extern int g_abrt_oops_sleep_woke_up_on_signal; - - int abrt_oops_process_list(GList *oops_list, const char *dump_location, const char *analyzer, int flags); - unsigned abrt_oops_create_dump_dirs(GList *oops_list, const char *dump_location, const char *analyzer, int flags); -diff --git a/src/plugins/xorg-utils.c b/src/plugins/xorg-utils.c -index a8dfc512a..4ecf8cb63 100644 ---- a/src/plugins/xorg-utils.c -+++ b/src/plugins/xorg-utils.c -@@ -23,6 +23,8 @@ - - #define DEFAULT_XORG_CRASH_REASON "Display server crashed" - -+int g_abrt_xorg_sleep_woke_up_on_signal; -+ - int abrt_xorg_signaled_sleep(int seconds) - { - sigset_t set; -diff --git a/src/plugins/xorg-utils.h b/src/plugins/xorg-utils.h -index c53bc460d..d9f44681a 100644 ---- a/src/plugins/xorg-utils.h -+++ b/src/plugins/xorg-utils.h -@@ -35,7 +35,7 @@ enum { - ABRT_XORG_PRINT_STDOUT = 1 << 2, - }; - --int g_abrt_xorg_sleep_woke_up_on_signal; -+extern int g_abrt_xorg_sleep_woke_up_on_signal; - int abrt_xorg_signaled_sleep(int seconds); - - /* --- -2.24.1 - diff --git a/0003-bodhi-Initialize-karma-values-with-default.patch b/0003-bodhi-Initialize-karma-values-with-default.patch deleted file mode 100644 index f3df79b..0000000 --- a/0003-bodhi-Initialize-karma-values-with-default.patch +++ /dev/null @@ -1,32 +0,0 @@ -From c6562f15f2b72348aa447e3acbb91de5cf221695 Mon Sep 17 00:00:00 2001 -From: Martin Kutlak -Date: Thu, 30 Jan 2020 16:19:51 +0100 -Subject: [PATCH] bodhi: Initialize karma values with default - -During a rebuilt on s390x this error came up: -bodhi.c:340:12: - error: - 'unstable_karma' may be used uninitialized in this function - -Signed-off-by: Martin Kutlak ---- - src/plugins/bodhi.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/src/plugins/bodhi.c b/src/plugins/bodhi.c -index 14d65ad37..9b5177be9 100644 ---- a/src/plugins/bodhi.c -+++ b/src/plugins/bodhi.c -@@ -334,7 +334,8 @@ static GHashTable *bodhi_parse_json(json_object *json, const char *release) - if (!builds_item) /* broken json */ - continue; - -- int karma, unstable_karma; -+ int karma = 0; -+ int unstable_karma = 0; - bodhi_read_value(updates_item, "karma", &karma, BODHI_READ_INT); - bodhi_read_value(updates_item, "unstable_karma", &unstable_karma, BODHI_READ_INT); - if (karma <= unstable_karma) --- -2.24.1 - diff --git a/0004-dbus-Fix-possibly-uninitialized-variable.patch b/0004-dbus-Fix-possibly-uninitialized-variable.patch deleted file mode 100644 index 5ad921b..0000000 --- a/0004-dbus-Fix-possibly-uninitialized-variable.patch +++ /dev/null @@ -1,29 +0,0 @@ -From f81bbaa60ad6c5c99dba499044255fdde5d5ed4a Mon Sep 17 00:00:00 2001 -From: Martin Kutlak -Date: Fri, 31 Jan 2020 10:12:37 +0100 -Subject: [PATCH] dbus: Fix possibly uninitialized variable - -abrt_problems2_task.c:419:21: error: -'response' may be used uninitialized in this function [-Werror=maybe-uninitialized] - -Signed-off-by: Martin Kutlak ---- - src/dbus/abrt_problems2_task.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/dbus/abrt_problems2_task.c b/src/dbus/abrt_problems2_task.c -index e6ae171c7..af47660aa 100644 ---- a/src/dbus/abrt_problems2_task.c -+++ b/src/dbus/abrt_problems2_task.c -@@ -403,7 +403,7 @@ static void abrt_p2_task_autonomous_cb(AbrtP2Task *task, - - case ABRT_P2_TASK_STATUS_FAILED: - { -- GVariant *response; -+ GVariant *response = NULL; - gint32 code; - GError *error = NULL; - abrt_p2_task_finish(task, &response, &code, &error); --- -2.24.1 - diff --git a/abrt.spec b/abrt.spec index 8ab97a0..b2cc875 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,23 +48,12 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.13.0 -Release: 5%{?dist} +Version: 2.14.0 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -Patch0001: 0001-python-Use-correct-paths-for-installed-modules.patch -Patch0002: 0002-Fix-build-failure-with-gcc-fno-common.patch -Patch0003: 0003-bodhi-Initialize-karma-values-with-default.patch -Patch0004: 0004-dbus-Fix-possibly-uninitialized-variable.patch -# https://github.com/abrt/abrt/commit/16468b57579997971c056687ecc8438a406d57c2 -Patch0005: 0001-Use-GChecksum-to-compute-checksums.patch -# https://github.com/abrt/abrt/commit/439fe1daddd62d53bf2ee72c45b631f5248daf5d -Patch0006: 0001-koops-Avoid-explicit-dependency-on-hash-size.patch -# https://github.com/abrt/abrt/commit/3f5003af92d2b2b0e4f5565ccd90b29e32e6b30b -Patch0007: 0001-Stop-using-parse_list.patch - BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname @@ -1026,6 +1015,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Feb 07 2020 Ernestas Kulik - 2.14.0-1 +- Update to 2.14.0 + * Fri Feb 07 2020 Igor Raits - 2.13.0-5 - Rebuild for satyr 0.30 diff --git a/sources b/sources index 76c1515..fe58d9f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.13.0.tar.gz) = 936c83293dcb71051b8dd89e84718cf0f76c7d7998b414a2c41d43b8e2a4dc6718f42d8fd47186bd15bac3ea06081f411ab3a7ed3729343da9e6e91edb046568 +SHA512 (abrt-2.14.0.tar.gz) = 2d817b7761d5afdca00a825281b759bc084a17d7393fcdf87df1a901b5c1a75595e3a733e481b30b02d068a123f8eac26163e2e55366e7cc20266a95e863967e From 400b28eb78110f8060f98aee29d12d057f95f713 Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Fri, 7 Feb 2020 09:32:24 +0100 Subject: [PATCH 238/318] Sync spec changes from upstream --- abrt.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index b2cc875..a05fc68 100644 --- a/abrt.spec +++ b/abrt.spec @@ -129,7 +129,7 @@ BuildRequires: gdb-headless BuildRequires: polkit-devel %if %{with python3} #python3-abrt -BuildRequires: python3-nose +BuildRequires: python3-pytest BuildRequires: python3-sphinx BuildRequires: python3-libreport #python3-abrt-doc @@ -815,6 +815,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_libexecdir}/abrt-gdb-exploitable %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_journal_ccpp_format.conf %{_unitdir}/abrt-journal-core.service +%{_journalcatalogdir}/abrt_ccpp.catalog %dir %{_localstatedir}/lib/abrt From e161563d645846a3a9d792ffea4f09096b09560d Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Fri, 7 Feb 2020 10:52:02 +0100 Subject: [PATCH 239/318] Bump libreport dependency --- abrt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/abrt.spec b/abrt.spec index a05fc68..c210274 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,13 +43,13 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.10.0 +%define libreport_ver 2.12.0 %define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1016,6 +1016,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Feb 07 2020 Ernestas Kulik - 2.14.0-2 +- Bump libreport dependency + * Fri Feb 07 2020 Ernestas Kulik - 2.14.0-1 - Update to 2.14.0 From 61c6c411a8cae41f1494a0d30214114c3336ac40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Wed, 22 Apr 2020 00:01:43 +0200 Subject: [PATCH 240/318] Rebuild (json-c) --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index c210274..322cf59 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1016,6 +1016,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Apr 21 2020 Björn Esser - 2.14.0-3 +- Rebuild (json-c) + * Fri Feb 07 2020 Ernestas Kulik - 2.14.0-2 - Bump libreport dependency From bf7b8afe4ac802bc48874414e591c1631c139249 Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Fri, 24 Apr 2020 18:15:58 +0200 Subject: [PATCH 241/318] New upstream release 2.14.1 Signed-off-by: Michal Fabik --- .gitignore | 1 + abrt.spec | 27 +++++++++++++++++++++++---- sources | 2 +- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 41d1ef0..3af754d 100644 --- a/.gitignore +++ b/.gitignore @@ -69,3 +69,4 @@ abrt-1.1.13.tar.gz /abrt-2.12.2.tar.gz /abrt-2.13.0.tar.gz /abrt-2.14.0.tar.gz +/abrt-2.14.1.tar.gz diff --git a/abrt.spec b/abrt.spec index 322cf59..50eaa33 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,8 +48,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.14.0 -Release: 3%{?dist} +Version: 2.14.1 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -114,7 +114,6 @@ BuildRequires: libreport-gtk-devel >= %{libreport_ver} BuildRequires: gsettings-desktop-schemas-devel >= 3.15 #addon-ccpp BuildRequires: gdb-headless -BuildRequires: libcap-devel #addon-kerneloops BuildRequires: systemd-devel BuildRequires: %{libjson_devel} @@ -750,7 +749,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %dir %attr(0751, root, abrt) %{default_dump_dir} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root -%dir %attr(0755, root, root) %{_localstatedir}/run/%{name} +%ghost %dir %attr(0755, root, root) %{_localstatedir}/run/%{name} %ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket %ghost %attr(0644, -, -) %{_localstatedir}/run/%{name}/abrtd.pid @@ -1016,6 +1015,26 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Apr 24 2020 Michal Fabik - 2.14.1-1 +- tests: Add perl, php R and tcl to dont-blame-interpret +- a-a-save-package-data: Add R and tcl to interpreted langs +- a-a-save-package-data: Use regexps to match interpreters +- .travis.yml: Update secret +- plugins: xorg-utils: Loopify parsing +- Add namespace to libreport function and global names +- cli: Correct debug directories in config +- cli: Show defaults in help output +- cli: Fix verbosity option +- cli: Fix descriptions for --since and --until +- autogen.sh: Handle NOCONFIGURE per the Build API +- plugins: journal: Fix ci_mapping being overwritten +- plugins: abrt-journal-core: Don’t assume anything about uid_t +- lib,plugins: Accomodate for multiple debug directories +- dbus: Drop bogus dependency +- dbus: Drop abrt_problems2 +- Drop libcap dependency +- Drop Travis config + * Tue Apr 21 2020 Björn Esser - 2.14.0-3 - Rebuild (json-c) diff --git a/sources b/sources index fe58d9f..08f6991 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.14.0.tar.gz) = 2d817b7761d5afdca00a825281b759bc084a17d7393fcdf87df1a901b5c1a75595e3a733e481b30b02d068a123f8eac26163e2e55366e7cc20266a95e863967e +SHA512 (abrt-2.14.1.tar.gz) = 5486a4174e7db902f5a30c44159b3c0745341b1b4cb89df903cf42f9bf64ee2309708a20d8312760276db0171655972e9f2847e3463af0e34c66c4ea28cf2c6c From 9f7a213711c78e231f3cf7db188d375e0664f6e3 Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Sat, 25 Apr 2020 11:12:34 +0200 Subject: [PATCH 242/318] Bump libreport dependency --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 50eaa33..5352c9b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,7 +43,7 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.12.0 +%define libreport_ver 2.13.0 %define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool From 438b4b73c73029c56364e645569af4b969d3c2f8 Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Tue, 12 May 2020 10:11:37 +0200 Subject: [PATCH 243/318] New upstream release 2.14.2 Signed-off-by: Michal Fabik --- .gitignore | 1 + abrt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3af754d..16cc618 100644 --- a/.gitignore +++ b/.gitignore @@ -70,3 +70,4 @@ abrt-1.1.13.tar.gz /abrt-2.13.0.tar.gz /abrt-2.14.0.tar.gz /abrt-2.14.1.tar.gz +/abrt-2.14.2.tar.gz diff --git a/abrt.spec b/abrt.spec index 5352c9b..8e2a7db 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,7 +48,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.14.1 +Version: 2.14.2 Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ @@ -1015,6 +1015,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue May 12 2020 Michal Fabik - 2.14.2-1 +- Fix broken builds with --enable-authenticated-autoreporting + * Fri Apr 24 2020 Michal Fabik - 2.14.1-1 - tests: Add perl, php R and tcl to dont-blame-interpret - a-a-save-package-data: Add R and tcl to interpreted langs diff --git a/sources b/sources index 08f6991..ad6df13 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.14.1.tar.gz) = 5486a4174e7db902f5a30c44159b3c0745341b1b4cb89df903cf42f9bf64ee2309708a20d8312760276db0171655972e9f2847e3463af0e34c66c4ea28cf2c6c +SHA512 (abrt-2.14.2.tar.gz) = 020bd0550c41b2358a718a4f0f0c3a839d86fd46fc0c4f4cfc4b7d7f851baf2d5179e008ac1912b350f9f0fbfbfee94e422de3aadce5eb0f7f84a04f233349ff From 18305b2c5069a8dac7653bc51479c87c929f15ab Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Thu, 21 May 2020 15:58:39 +0200 Subject: [PATCH 244/318] Add fix for #1836190 --- ...s-instance-pointer-to-signal-handler.patch | 28 +++++++++++++++++++ 0002-applet-Chain-up-in-dispose.patch | 26 +++++++++++++++++ abrt.spec | 8 +++++- 3 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 0001-applet-Pass-instance-pointer-to-signal-handler.patch create mode 100644 0002-applet-Chain-up-in-dispose.patch diff --git a/0001-applet-Pass-instance-pointer-to-signal-handler.patch b/0001-applet-Pass-instance-pointer-to-signal-handler.patch new file mode 100644 index 0000000..9010657 --- /dev/null +++ b/0001-applet-Pass-instance-pointer-to-signal-handler.patch @@ -0,0 +1,28 @@ +From 5618985d3d7f830ebba0ef78e2ee6d3d6f9f6c55 Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Fri, 15 May 2020 15:49:59 +0200 +Subject: [PATCH] applet: Pass instance pointer to signal handler + +Some fallout from 802a40a2f7c971b6533162e70b860e01ae3b5a27. + +https://bugzilla.redhat.com/show_bug.cgi?id=1836190 +--- + src/applet/abrt-applet-application.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c +index d982c9f9..8ea653bb 100644 +--- a/src/applet/abrt-applet-application.c ++++ b/src/applet/abrt-applet-application.c +@@ -177,7 +177,7 @@ abrt_applet_application_init (AbrtAppletApplication *self) + g_signal_connect (network_monitor, "notify::connectivity", + G_CALLBACK (on_connectivity_changed), self); + g_signal_connect (network_monitor, "notify::network-available", +- G_CALLBACK (on_connectivity_changed), NULL); ++ G_CALLBACK (on_connectivity_changed), self); + + self->deferred_problems = g_ptr_array_new_with_free_func (g_object_unref); + } +-- +2.26.2 + diff --git a/0002-applet-Chain-up-in-dispose.patch b/0002-applet-Chain-up-in-dispose.patch new file mode 100644 index 0000000..7d749e1 --- /dev/null +++ b/0002-applet-Chain-up-in-dispose.patch @@ -0,0 +1,26 @@ +From b08e7cbd26704b0a5400fdfab1f3f2e3922b102f Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Fri, 15 May 2020 15:50:50 +0200 +Subject: [PATCH] applet: Chain up in dispose() + +Also something missed in 802a40a2f7c971b6533162e70b860e01ae3b5a27. +--- + src/applet/abrt-applet-application.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c +index 8ea653bb..52ed5529 100644 +--- a/src/applet/abrt-applet-application.c ++++ b/src/applet/abrt-applet-application.c +@@ -985,6 +985,8 @@ abrt_applet_application_dispose (GObject *object) + self = ABRT_APPLET_APPLICATION (object); + + g_clear_pointer (&self->deferred_problems, g_ptr_array_unref); ++ ++ G_OBJECT_CLASS (abrt_applet_application_parent_class)->dispose (object); + } + + static void +-- +2.26.2 + diff --git a/abrt.spec b/abrt.spec index 8e2a7db..52a89fb 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,11 +49,14 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +Patch0: 0001-applet-Pass-instance-pointer-to-signal-handler.patch +Patch1: 0002-applet-Chain-up-in-dispose.patch + BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname @@ -1015,6 +1018,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu May 21 2020 Ernestas Kulik - 2.14.2-2 +- Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1836190 + * Tue May 12 2020 Michal Fabik - 2.14.2-1 - Fix broken builds with --enable-authenticated-autoreporting From a2bcded0dc78c0f676737459ec0241286f06af8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sun, 24 May 2020 09:41:56 +0200 Subject: [PATCH 245/318] Rebuilt for Python 3.9 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 52a89fb..74b9237 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1018,6 +1018,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sun May 24 2020 Miro Hrončok - 2.14.2-3 +- Rebuilt for Python 3.9 + * Thu May 21 2020 Ernestas Kulik - 2.14.2-2 - Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1836190 From d8a4ccc6c2a4dd70dab98fb4894f14c95f7e912f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 11:40:43 +0000 Subject: [PATCH 246/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 74b9237..a3236fa 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1018,6 +1018,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 2.14.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sun May 24 2020 Miro Hrončok - 2.14.2-3 - Rebuilt for Python 3.9 From 935456c7d9fb67ed6f63a65dc6661ec4c896ee7d Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Tue, 28 Jul 2020 16:21:15 +0200 Subject: [PATCH 247/318] Add patch for #1860903 --- ...on-Fix-crash-when-processing-deferre.patch | 59 +++++++++++++++++++ abrt.spec | 6 +- 2 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 0003-applet-application-Fix-crash-when-processing-deferre.patch diff --git a/0003-applet-application-Fix-crash-when-processing-deferre.patch b/0003-applet-application-Fix-crash-when-processing-deferre.patch new file mode 100644 index 0000000..1cb1394 --- /dev/null +++ b/0003-applet-application-Fix-crash-when-processing-deferre.patch @@ -0,0 +1,59 @@ +From b28fcc053db224c11f1f88d2885eba88d60a7322 Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Tue, 28 Jul 2020 15:39:43 +0200 +Subject: [PATCH] applet: application: Fix crash when processing deferred + +Currently, when processing the deferred problems, if reporting fails, +the problem is re-added to the queue, but the object is not +re-referenced, leading to invalid reads later on. +--- + src/applet/abrt-applet-application.c | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c +index 28e55135..4716524b 100644 +--- a/src/applet/abrt-applet-application.c ++++ b/src/applet/abrt-applet-application.c +@@ -771,11 +771,9 @@ handle_event_output_cb (GIOChannel *gio, + gpointer data) + { + EventProcessingState *state; +- AbrtAppletProblemInfo *problem_info; + int status; + + state = data; +- problem_info = state->problem_info; + + /* Read streamed data and split lines */ + for (;;) +@@ -836,21 +834,23 @@ handle_event_output_cb (GIOChannel *gio, + + if (WIFEXITED (status) && WEXITSTATUS (status) == EXIT_STOP_EVENT_RUN) + { +- abrt_applet_problem_info_set_known (problem_info, true); ++ abrt_applet_problem_info_set_known (state->problem_info, true); + status = 0; + } + + if (status == 0) + { +- abrt_applet_problem_info_set_reported (problem_info, true); ++ abrt_applet_problem_info_set_reported (state->problem_info, true); + + log_debug ("fast report finished successfully"); +- abrt_applet_application_send_problem_notification (state->application, problem_info); ++ abrt_applet_application_send_problem_notification (state->application, ++ state->problem_info); + } + else + { + log_debug ("fast report failed, deferring"); +- g_ptr_array_add (state->application->deferred_problems, problem_info); ++ g_ptr_array_add (state->application->deferred_problems, ++ g_steal_pointer (&state->problem_info)); + } + + event_processing_state_free (state); +-- +2.26.2 + diff --git a/abrt.spec b/abrt.spec index a3236fa..14c4988 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,13 +49,14 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz Patch0: 0001-applet-Pass-instance-pointer-to-signal-handler.patch Patch1: 0002-applet-Chain-up-in-dispose.patch +Patch2: 0003-applet-application-Fix-crash-when-processing-deferre.patch BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -1018,6 +1019,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jul 28 2020 - Ernestas Kulik - 2.14.2-5 +- Add patch for https://bugzilla.redhat.com/show_bug.cgi?id=1860903 + * Mon Jul 27 2020 Fedora Release Engineering - 2.14.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 92ab2eb5b35b1276565cbd93044dc661ea87474e Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 13 Aug 2020 16:42:48 -0700 Subject: [PATCH 248/318] Rebuild for libreport soname bump --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 14c4988..5eb632b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1019,6 +1019,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Aug 13 2020 Adam Williamson - 2.14.2-6 +- Rebuild for libreport soname bump + * Tue Jul 28 2020 - Ernestas Kulik - 2.14.2-5 - Add patch for https://bugzilla.redhat.com/show_bug.cgi?id=1860903 From 5e37f501924d9d1589b02a4ac36cff66c590f511 Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Thu, 13 Aug 2020 12:59:36 +0200 Subject: [PATCH 249/318] New upstream release 2.14.3 Signed-off-by: Michal Fabik --- .gitignore | 1 + abrt.spec | 53 +++++++++++++++++++++++++++-------------------------- sources | 2 +- 3 files changed, 29 insertions(+), 27 deletions(-) diff --git a/.gitignore b/.gitignore index 16cc618..7d8f72d 100644 --- a/.gitignore +++ b/.gitignore @@ -71,3 +71,4 @@ abrt-1.1.13.tar.gz /abrt-2.14.0.tar.gz /abrt-2.14.1.tar.gz /abrt-2.14.2.tar.gz +/abrt-2.14.3.tar.gz diff --git a/abrt.spec b/abrt.spec index 5eb632b..396a9f7 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,16 +48,12 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.14.2 -Release: 6%{?dist} +Version: 2.14.3 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -Patch0: 0001-applet-Pass-instance-pointer-to-signal-handler.patch -Patch1: 0002-applet-Chain-up-in-dispose.patch -Patch2: 0003-applet-application-Fix-crash-when-processing-deferre.patch - BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname @@ -106,9 +102,6 @@ Requires: python3-dbus Requires: dmidecode %endif Requires: libreport-plugin-ureport -%if 0%{?rhel} -Requires: libreport-plugin-rhtsupport -%endif %if 0%{?fedora} Requires: libreport-plugin-systemd-journal %endif @@ -360,10 +353,7 @@ Requires: abrt-addon-ccpp Requires: python3-abrt-addon %endif Requires: abrt-addon-xorg -%if 0%{?rhel} -Requires: libreport-rhel >= %{libreport_ver} -Requires: libreport-plugin-rhtsupport >= %{libreport_ver} -%else +%if ! 0%{?rhel} %if %{with retrace} Requires: abrt-retrace-client %endif @@ -403,10 +393,7 @@ Requires: abrt-addon-xorg Requires: gdb-headless Requires: abrt-gui Requires: gnome-abrt -%if 0%{?rhel} -Requires: libreport-rhel >= %{libreport_ver} -Requires: libreport-plugin-rhtsupport >= %{libreport_ver} -%else +%if ! 0%{?rhel} %if %{with retrace} Requires: abrt-retrace-client %endif @@ -506,9 +493,6 @@ CFLAGS="%{optflags} -Werror" %configure \ %if %{without retrace} --without-retrace \ %endif -%if 0%{?rhel} - --enable-authenticated-autoreporting \ -%endif %ifnarch %{arm} --enable-native-unwinder \ %endif @@ -576,10 +560,12 @@ exit 0 %systemd_post abrtd.service %post addon-ccpp -# this is required for transition from 1.1.x to 2.x -# because /cache/abrt-di/* was created under root with root:root -# so 2.x fails when it tries to extract debuginfo there.. -chown -R abrt:abrt %{_localstatedir}/cache/abrt-di +# migration from 2.14.1.18 +if [ ! -e "%{_localstatedir}/cache/abrt-di/.migration-group-add" ]; then + chmod -R g+w %{_localstatedir}/cache/abrt-di + touch "%{_localstatedir}/cache/abrt-di/.migration-group-add" +fi + %systemd_post abrt-journal-core.service %journal_catalog_update @@ -822,8 +808,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %dir %{_localstatedir}/lib/abrt -# attr(6755) ~= SETUID|SETGID -%attr(6755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache +# attr(6755) ~= SETGID +%attr(2755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files @@ -1019,6 +1005,21 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Aug 13 2020 Michal Fabik - 2.14.3-1 +- plugins: abrt-dump-journal-core: Handle zstd compression +- applet: application: Use GLib for logging +- Replace various utility functions with stock GLib ones +- Various coding style improvements +- Update documentation +- applet: application: Fix crash when processing deferred problems +- dbus: Remove session objects when owner disconnects +- python-problem: Use org.freedesktop.Problems2 API +- abrt-console-notification: Work around noclobber +- daemon: rpm: Use NEVRA instead of ENVRA +- abrtd: Don't delete new problem dirs +- Make sure that former caches are group writable +- Various memory management fixes + * Thu Aug 13 2020 Adam Williamson - 2.14.2-6 - Rebuild for libreport soname bump diff --git a/sources b/sources index ad6df13..51e3cda 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.14.2.tar.gz) = 020bd0550c41b2358a718a4f0f0c3a839d86fd46fc0c4f4cfc4b7d7f851baf2d5179e008ac1912b350f9f0fbfbfee94e422de3aadce5eb0f7f84a04f233349ff +SHA512 (abrt-2.14.3.tar.gz) = 34aeffa9fac4d97adee9511dee525a0208112fdeb2f75180f02795d40ff094c1a60a50dabcb15fc4729c549c407ef97ae23f18ad5ea1df2fd5114c41185a3606 From 3de7b9d0b781037c51fcc375eef6dc84ff7e38bc Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Mon, 17 Aug 2020 16:51:17 +0200 Subject: [PATCH 250/318] New upstream release 2.14.4 Signed-off-by: Michal Fabik --- .gitignore | 1 + abrt.spec | 17 ++++++++++++----- sources | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 7d8f72d..39856b1 100644 --- a/.gitignore +++ b/.gitignore @@ -72,3 +72,4 @@ abrt-1.1.13.tar.gz /abrt-2.14.1.tar.gz /abrt-2.14.2.tar.gz /abrt-2.14.3.tar.gz +/abrt-2.14.4.tar.gz diff --git a/abrt.spec b/abrt.spec index 396a9f7..b2d9ebe 100644 --- a/abrt.spec +++ b/abrt.spec @@ -43,12 +43,12 @@ %define docdirversion -%{version} %endif -%define libreport_ver 2.13.0 +%define libreport_ver 2.14.0 %define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.14.3 +Version: 2.14.4 Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ @@ -79,6 +79,7 @@ BuildRequires: libselinux-devel BuildRequires: python3-devel BuildRequires: python3-systemd BuildRequires: python3-argcomplete +BuildRequires: python3-dbus %endif Requires: libreport >= %{libreport_ver} @@ -267,7 +268,7 @@ Summary: %{name}'s pstore oops addon Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} Requires: abrt-addon-kerneloops -Obsoletes: abrt-addon-uefioops +Obsoletes: abrt-addon-uefioops <= 2.1.6 %description addon-pstoreoops This package contains plugin for collecting kernel oopses from pstore storage. @@ -276,7 +277,7 @@ This package contains plugin for collecting kernel oopses from pstore storage. %package plugin-bodhi Summary: %{name}'s bodhi plugin Requires: %{name} = %{version}-%{release} -Obsoletes: libreport-plugin-bodhi > 0.0.1 +Obsoletes: libreport-plugin-bodhi <= 2.0.10 Provides: libreport-plugin-bodhi = %{version}-%{release} %description plugin-bodhi @@ -545,6 +546,7 @@ make check|| { # find and print the logs of failed test # do not cat tests/testsuite.log because it contains a lot of bloat find tests/testsuite.dir -name "testsuite.log" -print -exec cat '{}' \; + cat src/cli/test-suite.log exit 1 } @@ -808,7 +810,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %dir %{_localstatedir}/lib/abrt -# attr(6755) ~= SETGID +# attr(2755) ~= SETGID %attr(2755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache %{_bindir}/abrt-action-analyze-c @@ -1005,6 +1007,11 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Aug 17 2020 Michal Fabik - 2.14.4-1 +- Fix broken release 2.14.3 +- oops-utils: Respect the 'world-readable' flag +- Decommission libreport_list_free_with_free + * Thu Aug 13 2020 Michal Fabik - 2.14.3-1 - plugins: abrt-dump-journal-core: Handle zstd compression - applet: application: Use GLib for logging diff --git a/sources b/sources index 51e3cda..c3a1c22 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.14.3.tar.gz) = 34aeffa9fac4d97adee9511dee525a0208112fdeb2f75180f02795d40ff094c1a60a50dabcb15fc4729c549c407ef97ae23f18ad5ea1df2fd5114c41185a3606 +SHA512 (abrt-2.14.4.tar.gz) = b45808453187743c165914f7e72fcbca57684cb93a043fecd36414094ae8423fa661e6e07176773a15aaf468013386be300283e0d1b9d102d2e381ee9154e111 From 00422605f435f8d7f6d4084e94ddc462a50df656 Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Mon, 24 Aug 2020 09:38:50 +0200 Subject: [PATCH 251/318] spec: Add Provides to Obsoletes Signed-off-by: Michal Fabik --- abrt.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/abrt.spec b/abrt.spec index b2d9ebe..1e930f1 100644 --- a/abrt.spec +++ b/abrt.spec @@ -269,6 +269,7 @@ Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} Requires: abrt-addon-kerneloops Obsoletes: abrt-addon-uefioops <= 2.1.6 +Provides: abrt-addon-uefioops = %{version}-%{release} %description addon-pstoreoops This package contains plugin for collecting kernel oopses from pstore storage. From 1ab9d3859ffa8bbfd002a95e79f9808f864b23a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Thu, 24 Sep 2020 10:07:28 +0200 Subject: [PATCH 252/318] Add patch for #1881745 --- ...s-instance-pointer-to-signal-handler.patch | 28 --------- 0001-hooklib-Don-t-g_autofree-backtrace.patch | 40 +++++++++++++ 0002-applet-Chain-up-in-dispose.patch | 26 -------- ...on-Fix-crash-when-processing-deferre.patch | 59 ------------------- abrt.spec | 7 ++- 5 files changed, 46 insertions(+), 114 deletions(-) delete mode 100644 0001-applet-Pass-instance-pointer-to-signal-handler.patch create mode 100644 0001-hooklib-Don-t-g_autofree-backtrace.patch delete mode 100644 0002-applet-Chain-up-in-dispose.patch delete mode 100644 0003-applet-application-Fix-crash-when-processing-deferre.patch diff --git a/0001-applet-Pass-instance-pointer-to-signal-handler.patch b/0001-applet-Pass-instance-pointer-to-signal-handler.patch deleted file mode 100644 index 9010657..0000000 --- a/0001-applet-Pass-instance-pointer-to-signal-handler.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 5618985d3d7f830ebba0ef78e2ee6d3d6f9f6c55 Mon Sep 17 00:00:00 2001 -From: Ernestas Kulik -Date: Fri, 15 May 2020 15:49:59 +0200 -Subject: [PATCH] applet: Pass instance pointer to signal handler - -Some fallout from 802a40a2f7c971b6533162e70b860e01ae3b5a27. - -https://bugzilla.redhat.com/show_bug.cgi?id=1836190 ---- - src/applet/abrt-applet-application.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c -index d982c9f9..8ea653bb 100644 ---- a/src/applet/abrt-applet-application.c -+++ b/src/applet/abrt-applet-application.c -@@ -177,7 +177,7 @@ abrt_applet_application_init (AbrtAppletApplication *self) - g_signal_connect (network_monitor, "notify::connectivity", - G_CALLBACK (on_connectivity_changed), self); - g_signal_connect (network_monitor, "notify::network-available", -- G_CALLBACK (on_connectivity_changed), NULL); -+ G_CALLBACK (on_connectivity_changed), self); - - self->deferred_problems = g_ptr_array_new_with_free_func (g_object_unref); - } --- -2.26.2 - diff --git a/0001-hooklib-Don-t-g_autofree-backtrace.patch b/0001-hooklib-Don-t-g_autofree-backtrace.patch new file mode 100644 index 0000000..1225177 --- /dev/null +++ b/0001-hooklib-Don-t-g_autofree-backtrace.patch @@ -0,0 +1,40 @@ +From 1f2963b0611d4023957abe3c7391eab86256ba82 Mon Sep 17 00:00:00 2001 +From: Michal Fabik +Date: Wed, 23 Sep 2020 16:55:25 +0200 +Subject: [PATCH] hooklib: Don't g_autofree backtrace + +The result of abrt_get_backtrace was being freed every time, even when +no error occured. + +Resolves: +https://github.com/abrt/abrt/issues/1528 +https://bugzilla.redhat.com/show_bug.cgi?id=1881745 +Signed-off-by: Michal Fabik +--- + src/lib/hooklib.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index dceaeb16..56b77bc3 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -348,7 +348,7 @@ char *abrt_get_backtrace(struct dump_dir *dd, unsigned timeout_sec, const char * + unsigned bt_depth = 1024; + const char *thread_apply_all = "thread apply all -ascending"; + const char *full = "full "; +- g_autofree char *bt = NULL; ++ char *bt = NULL; + while (1) + { + args[bt_cmd_index] = g_strdup_printf("%s backtrace %s%u", thread_apply_all, full, bt_depth); +@@ -367,6 +367,7 @@ char *abrt_get_backtrace(struct dump_dir *dd, unsigned timeout_sec, const char * + /* (NB: in fact, current impl. of exec_vp() never returns NULL) */ + log_warning("Failed to generate backtrace, reducing depth to %u", + bt_depth); ++ free(bt); + + /* Replace -ex disassemble (which disasms entire function $pc points to) + * to a version which analyzes limited, small patch of code around $pc. +-- +2.26.2 + diff --git a/0002-applet-Chain-up-in-dispose.patch b/0002-applet-Chain-up-in-dispose.patch deleted file mode 100644 index 7d749e1..0000000 --- a/0002-applet-Chain-up-in-dispose.patch +++ /dev/null @@ -1,26 +0,0 @@ -From b08e7cbd26704b0a5400fdfab1f3f2e3922b102f Mon Sep 17 00:00:00 2001 -From: Ernestas Kulik -Date: Fri, 15 May 2020 15:50:50 +0200 -Subject: [PATCH] applet: Chain up in dispose() - -Also something missed in 802a40a2f7c971b6533162e70b860e01ae3b5a27. ---- - src/applet/abrt-applet-application.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c -index 8ea653bb..52ed5529 100644 ---- a/src/applet/abrt-applet-application.c -+++ b/src/applet/abrt-applet-application.c -@@ -985,6 +985,8 @@ abrt_applet_application_dispose (GObject *object) - self = ABRT_APPLET_APPLICATION (object); - - g_clear_pointer (&self->deferred_problems, g_ptr_array_unref); -+ -+ G_OBJECT_CLASS (abrt_applet_application_parent_class)->dispose (object); - } - - static void --- -2.26.2 - diff --git a/0003-applet-application-Fix-crash-when-processing-deferre.patch b/0003-applet-application-Fix-crash-when-processing-deferre.patch deleted file mode 100644 index 1cb1394..0000000 --- a/0003-applet-application-Fix-crash-when-processing-deferre.patch +++ /dev/null @@ -1,59 +0,0 @@ -From b28fcc053db224c11f1f88d2885eba88d60a7322 Mon Sep 17 00:00:00 2001 -From: Ernestas Kulik -Date: Tue, 28 Jul 2020 15:39:43 +0200 -Subject: [PATCH] applet: application: Fix crash when processing deferred - -Currently, when processing the deferred problems, if reporting fails, -the problem is re-added to the queue, but the object is not -re-referenced, leading to invalid reads later on. ---- - src/applet/abrt-applet-application.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c -index 28e55135..4716524b 100644 ---- a/src/applet/abrt-applet-application.c -+++ b/src/applet/abrt-applet-application.c -@@ -771,11 +771,9 @@ handle_event_output_cb (GIOChannel *gio, - gpointer data) - { - EventProcessingState *state; -- AbrtAppletProblemInfo *problem_info; - int status; - - state = data; -- problem_info = state->problem_info; - - /* Read streamed data and split lines */ - for (;;) -@@ -836,21 +834,23 @@ handle_event_output_cb (GIOChannel *gio, - - if (WIFEXITED (status) && WEXITSTATUS (status) == EXIT_STOP_EVENT_RUN) - { -- abrt_applet_problem_info_set_known (problem_info, true); -+ abrt_applet_problem_info_set_known (state->problem_info, true); - status = 0; - } - - if (status == 0) - { -- abrt_applet_problem_info_set_reported (problem_info, true); -+ abrt_applet_problem_info_set_reported (state->problem_info, true); - - log_debug ("fast report finished successfully"); -- abrt_applet_application_send_problem_notification (state->application, problem_info); -+ abrt_applet_application_send_problem_notification (state->application, -+ state->problem_info); - } - else - { - log_debug ("fast report failed, deferring"); -- g_ptr_array_add (state->application->deferred_problems, problem_info); -+ g_ptr_array_add (state->application->deferred_problems, -+ g_steal_pointer (&state->problem_info)); - } - - event_processing_state_free (state); --- -2.26.2 - diff --git a/abrt.spec b/abrt.spec index 1e930f1..362d5ef 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,11 +49,13 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +Patch0: 0001-hooklib-Don-t-g_autofree-backtrace.patch + BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname @@ -1008,6 +1010,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Sep 24 2020 Matěj Grabovský - 2.14.4-2 +- Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1881745 + * Mon Aug 17 2020 Michal Fabik - 2.14.4-1 - Fix broken release 2.14.3 - oops-utils: Respect the 'world-readable' flag From 511e6ce6d4dbeef23afc3b7f3b5f744b70398353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Tue, 13 Oct 2020 11:11:22 +0200 Subject: [PATCH 253/318] Add upstream patch for an invalid read bug --- ...-hooklib-Proper-freeing-of-backtrace.patch | 40 +++++++++++++++++++ abrt.spec | 6 ++- 2 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 0002-hooklib-Proper-freeing-of-backtrace.patch diff --git a/0002-hooklib-Proper-freeing-of-backtrace.patch b/0002-hooklib-Proper-freeing-of-backtrace.patch new file mode 100644 index 0000000..a9ded17 --- /dev/null +++ b/0002-hooklib-Proper-freeing-of-backtrace.patch @@ -0,0 +1,40 @@ +From 5fa7b1f84fb02ca5dcf50d27f4bc14563c1918f6 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= +Date: Mon, 12 Oct 2020 19:14:03 +0200 +Subject: [PATCH] hooklib: Proper freeing of backtrace + +Improper bracing caused the bt variable to be freed every time in every +iteration no matter what. This would then lead to an invalid (freed) +pointer being returned by the function. + +The mistake was made in 1f2963b0 and reported by Jeff Law. +--- + src/lib/hooklib.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 56b77bc3..fc2a6a00 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -361,13 +361,17 @@ char *abrt_get_backtrace(struct dump_dir *dd, unsigned timeout_sec, const char * + + bt_depth /= 2; + if (bt) ++ { + log_warning("Backtrace is too big (%u bytes), reducing depth to %u", + (unsigned)strlen(bt), bt_depth); ++ } + else ++ { + /* (NB: in fact, current impl. of exec_vp() never returns NULL) */ + log_warning("Failed to generate backtrace, reducing depth to %u", + bt_depth); +- free(bt); ++ g_clear_pointer(&bt, free); ++ } + + /* Replace -ex disassemble (which disasms entire function $pc points to) + * to a version which analyzes limited, small patch of code around $pc. +-- +2.26.2 + diff --git a/abrt.spec b/abrt.spec index 362d5ef..b82ff38 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,12 +49,13 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz Patch0: 0001-hooklib-Don-t-g_autofree-backtrace.patch +Patch1: 0002-hooklib-Proper-freeing-of-backtrace.patch BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -1010,6 +1011,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Oct 13 2020 Matěj Grabovský - 2.14.4-3 +- Add upstream patch for an invalid read bug + * Thu Sep 24 2020 Matěj Grabovský - 2.14.4-2 - Add fix for https://bugzilla.redhat.com/show_bug.cgi?id=1881745 From 82eb0a22c32e5fbd1163b90b324220ea7afb2706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Fri, 13 Nov 2020 11:17:17 +0100 Subject: [PATCH 254/318] Use autoreconf in %build instead of plain autoconf This way, when stuff is fixed in automake, the source tarball does not need to be re-generated in upstream to use the fix. Resolves https://bugzilla.redhat.com/show_bug.cgi?id=1897489 --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index b82ff38..22462d8 100644 --- a/abrt.spec +++ b/abrt.spec @@ -481,7 +481,7 @@ to the shell %build -autoconf +autoreconf %define default_dump_dir %{_localstatedir}/spool/abrt From 003b0187a1b6e0e4785a2bf591683bd190faeea8 Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Tue, 1 Dec 2020 15:05:20 +0100 Subject: [PATCH 255/318] New upstream release 2.14.5 Signed-off-by: Michal Fabik --- .gitignore | 1 + abrt.spec | 30 ++++++++++++------------------ sources | 2 +- 3 files changed, 14 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 39856b1..122dd2f 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,4 @@ abrt-1.1.13.tar.gz /abrt-2.14.2.tar.gz /abrt-2.14.3.tar.gz /abrt-2.14.4.tar.gz +/abrt-2.14.5.tar.gz diff --git a/abrt.spec b/abrt.spec index 22462d8..5ab21c4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,14 +48,11 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.14.4 -Release: 3%{?dist} +Version: 2.14.5 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ -Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz - -Patch0: 0001-hooklib-Don-t-g_autofree-backtrace.patch -Patch1: 0002-hooklib-Proper-freeing-of-backtrace.patch +Source: https://github.com/abrt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -66,6 +63,7 @@ BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel #why? BuildRequires: file-devel +BuildRequires: make BuildRequires: gettext BuildRequires: libxml2-devel BuildRequires: intltool @@ -310,15 +308,6 @@ This package contains python 3 hook and handling uncaught exception in python 3 programs in container. %endif -%package plugin-sosreport -Summary: %{name}'s plugin for building automatic sosreports -Requires: sos >= 3.6 -Requires: %{name} = %{version}-%{release} - -%description plugin-sosreport -This package contains a configuration snippet to enable automatic generation -of sosreports for abrt events. - %package plugin-machine-id Summary: %{name}'s plugin to generate machine_id based off dmidecode Requires: %{name} = %{version}-%{release} @@ -549,6 +538,7 @@ rm -f %{buildroot}%{_infodir}/dir make check|| { # find and print the logs of failed test # do not cat tests/testsuite.log because it contains a lot of bloat + find src -name "test-suite.log" -print -exec cat '{}' \; find tests/testsuite.dir -name "testsuite.log" -print -exec cat '{}' \; cat src/cli/test-suite.log exit 1 @@ -943,9 +933,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* %endif -%files plugin-sosreport -%config(noreplace) %{_sysconfdir}/libreport/events.d/sosreport_event.conf - %files plugin-machine-id %config(noreplace) %{_sysconfdir}/libreport/events.d/machine-id_event.conf %{_libexecdir}/abrt-action-generate-machine-id @@ -1011,6 +998,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Dec 01 2020 Michal Fabik 2.14.5-1 +- Fix invalid free (rhbz#1895660) +- Fix crash during local processing (rhbz#1881745) +- Fix reported numbers of missing debuginfo packages in abrt-action-install-debuginfo +- Correct the format of NEVRA generated for packages where a problem occurred (rhbz#1900982) +- Drop --raw flag in abrt-action-generate-core-backtrace + * Tue Oct 13 2020 Matěj Grabovský - 2.14.4-3 - Add upstream patch for an invalid read bug diff --git a/sources b/sources index c3a1c22..cf3278c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.14.4.tar.gz) = b45808453187743c165914f7e72fcbca57684cb93a043fecd36414094ae8423fa661e6e07176773a15aaf468013386be300283e0d1b9d102d2e381ee9154e111 +SHA512 (abrt-2.14.5.tar.gz) = ceb55d1e31966fe795bea19f96b1f0af2d4e97c3a7da29858f222a6a9442ebe00e589001b2e4cafd2e5b3a2d6db362b895bd6df63365cabe82fc0111428b05b6 From dacf4e649a88ed804dc0f6f19bf293876be95714 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 25 Jan 2021 23:44:28 +0000 Subject: [PATCH 256/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 5ab21c4..42dc290 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz @@ -998,6 +998,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jan 25 2021 Fedora Release Engineering - 2.14.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Dec 01 2020 Michal Fabik 2.14.5-1 - Fix invalid free (rhbz#1895660) - Fix crash during local processing (rhbz#1881745) From 7e139599174419dbdfff3d24915b38aec58a4a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=BDidek?= Date: Wed, 17 Feb 2021 13:49:44 +0100 Subject: [PATCH 257/318] gating: Add gating.yaml --- gating.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gating.yaml diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..b54b7ba --- /dev/null +++ b/gating.yaml @@ -0,0 +1,19 @@ +--- !Policy +product_versions: + - fedora-* +decision_context: bodhi_update_push_testing +subject_type: koji_build +rules: + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpmdeplint.functional} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpminspect.static-analysis} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.installability.functional} + +--- !Policy +product_versions: + - fedora-* +decision_context: bodhi_update_push_stable +subject_type: koji_build +rules: + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpmdeplint.functional} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpminspect.static-analysis} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.installability.functional} From 074ab8b76c6970191d59f45a184a3df1dd288978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 2 Mar 2021 16:14:14 +0100 Subject: [PATCH 258/318] Rebuilt for updated systemd-rpm-macros See https://pagure.io/fesco/issue/2583. --- abrt.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 42dc290..ccdc024 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz @@ -998,6 +998,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek - 2.14.5-3 +- Rebuilt for updated systemd-rpm-macros + See https://pagure.io/fesco/issue/2583. + * Mon Jan 25 2021 Fedora Release Engineering - 2.14.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From a1c9e8ff22b79f5f779556bef0861fbf347e5afc Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Thu, 4 Mar 2021 17:31:09 +0100 Subject: [PATCH 259/318] Add simple smoke test --- .fmf/version | 1 + gating.yaml | 2 ++ tests/smoke.fmf | 3 +++ 3 files changed, 6 insertions(+) create mode 100644 .fmf/version create mode 100644 tests/smoke.fmf diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/gating.yaml b/gating.yaml index b54b7ba..db67165 100644 --- a/gating.yaml +++ b/gating.yaml @@ -7,6 +7,7 @@ rules: - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpmdeplint.functional} - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpminspect.static-analysis} - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.installability.functional} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} --- !Policy product_versions: @@ -17,3 +18,4 @@ rules: - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpmdeplint.functional} - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpminspect.static-analysis} - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.installability.functional} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} diff --git a/tests/smoke.fmf b/tests/smoke.fmf new file mode 100644 index 0000000..ca74391 --- /dev/null +++ b/tests/smoke.fmf @@ -0,0 +1,3 @@ +summary: Basic smoke test for abrt +execute: + script: abrt-action-notify --help From 126031c3215ba44a95960acba94192edad7154ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Fri, 30 Apr 2021 22:37:59 +0100 Subject: [PATCH 260/318] Obsoletes abrt-plugin-sosreport, to fix upgrade path --- abrt.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ccdc024..a5abea8 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.5 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz @@ -107,6 +107,8 @@ Requires: libreport-plugin-ureport %if 0%{?fedora} Requires: libreport-plugin-systemd-journal %endif +# to fix upgrade path abrt-plugin-sosreport was removed in 2.14.5 version. +Obsoletes: abrt-plugin-sosreport < 2.14.5 #gui BuildRequires: libreport-gtk-devel >= %{libreport_ver} @@ -998,6 +1000,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Apr 30 2021 Sérgio Basto - 2.14.5-4 +- Obsoletes abrt-plugin-sosreport, to fix upgrade path + * Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek - 2.14.5-3 - Rebuilt for updated systemd-rpm-macros See https://pagure.io/fesco/issue/2583. From 26627dbec37bffbf4598af835faa2fdbe6ecf755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Sat, 1 May 2021 20:29:26 +0100 Subject: [PATCH 261/318] Add dependency on python3-systemd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 566e2eaacb21e07a8301c3e16408924c46045ad9 Author: Matěj Grabovský Date: Wed Jan 13 12:16:57 2021 +0100 spec: Add dependency on python3-systemd abrt-action-check-oops-for-hw-error from the abrt-addon-vmcore package imports systemd.journal but the python3-systemd package is not declared as a dependency, which causes the script to crash if python3-systemd is not installed on the system. This commit fixes this by adding the formal dependency in the spec file. Resolves https://bugzilla.redhat.com/show_bug.cgi?id=1914170 --- abrt.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/abrt.spec b/abrt.spec index a5abea8..f6e27e9 100644 --- a/abrt.spec +++ b/abrt.spec @@ -259,6 +259,7 @@ Requires: kexec-tools %if %{with python3} Requires: python3-abrt Requires: python3-augeas +Requires: python3-systemd %endif Requires: util-linux From 094983af73f51de6a0d6d3223a826688608c38ec Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Tue, 25 May 2021 12:52:10 +0200 Subject: [PATCH 262/318] New upstream release 2.14.6 Signed-off-by: Michal Fabik --- .gitignore | 1 + abrt.spec | 18 ++++++++++++++---- sources | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 122dd2f..75abc74 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,4 @@ abrt-1.1.13.tar.gz /abrt-2.14.3.tar.gz /abrt-2.14.4.tar.gz /abrt-2.14.5.tar.gz +/abrt-2.14.6.tar.gz diff --git a/abrt.spec b/abrt.spec index f6e27e9..765bbfa 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,11 +48,11 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.14.5 -Release: 4%{?dist} +Version: 2.14.6 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ -Source: https://github.com/abrt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz +Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -473,7 +473,7 @@ to the shell %build -autoreconf +./autogen.sh %define default_dump_dir %{_localstatedir}/spool/abrt @@ -1001,6 +1001,16 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue May 25 2021 Michal Fabik - 2.14.6-1 +- Add support of master + subkeys gpg. +- hooks: Remove stale workaround for a fixed bug +- cli: Gracefully handle disappearance of problem directory +- libs: Add version info script +- retrace-client: Output task ID to console in batch mode +- retrace-client: Separate commands by commas +- Doc: Improve man page for abrt-action-analyze-vulnerability +- Various memory management and other fixes + * Fri Apr 30 2021 Sérgio Basto - 2.14.5-4 - Obsoletes abrt-plugin-sosreport, to fix upgrade path diff --git a/sources b/sources index cf3278c..601ce96 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.14.5.tar.gz) = ceb55d1e31966fe795bea19f96b1f0af2d4e97c3a7da29858f222a6a9442ebe00e589001b2e4cafd2e5b3a2d6db362b895bd6df63365cabe82fc0111428b05b6 +SHA512 (abrt-2.14.6.tar.gz) = eb1ba2f624d51eeccd203bb23060493347f5a9142fad7d0570d46134071d870a9c66b4fbfb8210e7d6f87c0c039f31eb486d18a36b10fba318e2180aa09df9fe From a4e0effc616b94a0710c7f7117b7ce00c573e83c Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Wed, 2 Jun 2021 20:59:37 +0200 Subject: [PATCH 263/318] Rebuild against libreport-2.15.2 Signed-off-by: Michal Fabik --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 765bbfa..35afcdc 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz From f99a7f835a99136af01e8f809fe39234a67847b7 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 4 Jun 2021 11:19:26 +0200 Subject: [PATCH 264/318] Rebuilt for Python 3.10 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 35afcdc..2e4d528 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1001,6 +1001,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jun 04 2021 Python Maint - 2.14.6-3 +- Rebuilt for Python 3.10 + * Tue May 25 2021 Michal Fabik - 2.14.6-1 - Add support of master + subkeys gpg. - hooks: Remove stale workaround for a fixed bug From 61c2c079e010c9515f94665ede64418b1de0ebbb Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Fri, 4 Jun 2021 15:02:12 +0200 Subject: [PATCH 265/318] Bump release to rebuild in new side tag Signed-off-by: Michal Fabik --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 2e4d528..ec5947d 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz From 4f5933399291cec7f1a00cf535ab9025c6f51831 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 7 Jun 2021 17:17:41 +0200 Subject: [PATCH 266/318] Rebuilt for Python 3.10 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ec5947d..a07d4dc 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1001,6 +1001,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jun 07 2021 Python Maint - 2.14.6-5 +- Rebuilt for Python 3.10 + * Fri Jun 04 2021 Python Maint - 2.14.6-3 - Rebuilt for Python 3.10 From 1d49502fa75c6e503d2b2906ad610ea6bea72034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sat, 10 Jul 2021 11:51:13 +0200 Subject: [PATCH 267/318] Rebuild for versioned symbols in json-c --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index a07d4dc..9639e44 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1001,6 +1001,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sat Jul 10 2021 Björn Esser - 2.14.6-6 +- Rebuild for versioned symbols in json-c + * Mon Jun 07 2021 Python Maint - 2.14.6-5 - Rebuilt for Python 3.10 From e3d620d8fc5e5e28dc86d0fc9b95c772bcd55351 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 12:16:28 +0000 Subject: [PATCH 268/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering From d99ab08e76bc3f2b9bfa38277ef21c66bf4d1920 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 17:11:34 +0000 Subject: [PATCH 269/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 9639e44..fb88956 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1001,6 +1001,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 21 2021 Fedora Release Engineering - 2.14.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Sat Jul 10 2021 Björn Esser - 2.14.6-6 - Rebuild for versioned symbols in json-c From 7c6ec28dde3eded86606d12de0cf84a631fe14fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Mon, 27 Sep 2021 12:34:36 +0200 Subject: [PATCH 270/318] Backport Python lazy loading patch (rhbz#2007664) --- ...y-imports-in-abrt_exception_handler3.patch | 57 +++++++++++++++++++ 0001-hooklib-Don-t-g_autofree-backtrace.patch | 40 ------------- ...-hooklib-Proper-freeing-of-backtrace.patch | 40 ------------- abrt.spec | 8 ++- 4 files changed, 64 insertions(+), 81 deletions(-) create mode 100644 0001-Use-lazy-imports-in-abrt_exception_handler3.patch delete mode 100644 0001-hooklib-Don-t-g_autofree-backtrace.patch delete mode 100644 0002-hooklib-Proper-freeing-of-backtrace.patch diff --git a/0001-Use-lazy-imports-in-abrt_exception_handler3.patch b/0001-Use-lazy-imports-in-abrt_exception_handler3.patch new file mode 100644 index 0000000..5c892a8 --- /dev/null +++ b/0001-Use-lazy-imports-in-abrt_exception_handler3.patch @@ -0,0 +1,57 @@ +From 4755f2171aa50a72d8ec03260c8cbc602263a6c0 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= +Date: Fri, 24 Sep 2021 17:48:07 +0200 +Subject: [PATCH] Use lazy imports in abrt_exception_handler3 + +The abrt_exception_handler3 module is always imported when Python starts, +but all the modules imported from it (except sys) are only used during crashes. + +Especially the systemd.journal import is really expensive. + +Fixes https://bugzilla.redhat.com/show_bug.cgi?id=2007664 +--- + src/hooks/abrt_exception_handler3.py.in | 9 +++++++-- + 1 file changed, 7 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt_exception_handler3.py.in b/src/hooks/abrt_exception_handler3.py.in +index 89e2474b..0bc548e0 100644 +--- a/src/hooks/abrt_exception_handler3.py.in ++++ b/src/hooks/abrt_exception_handler3.py.in +@@ -20,13 +20,15 @@ + Module for the ABRT exception handling hook + """ + ++# Avoid importing anything but sys here, use lazy imports. ++# This file is imported on every Python startup, ++# all unused imports only increase the startup time and memory usage. + import sys +-import os + +-from systemd import journal + + def syslog(msg): + """Log message to system logger (journal)""" ++ from systemd import journal + + journal.send(msg) + +@@ -68,6 +70,8 @@ def send(data): + + + def write_dump(tb_text, tb): ++ import os ++ + if sys.argv[0][0] == "/": + executable = os.path.abspath(sys.argv[0]) + else: +@@ -118,6 +122,7 @@ def handle_exception(etype, value, tb): + sys.excepthook = sys.__excepthook__ # pylint: disable-msg=E1101 + + import errno ++ import os + + # Ignore Ctrl-C + # SystemExit rhbz#636913 -> this exception is not an error +-- +2.31.1 + diff --git a/0001-hooklib-Don-t-g_autofree-backtrace.patch b/0001-hooklib-Don-t-g_autofree-backtrace.patch deleted file mode 100644 index 1225177..0000000 --- a/0001-hooklib-Don-t-g_autofree-backtrace.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 1f2963b0611d4023957abe3c7391eab86256ba82 Mon Sep 17 00:00:00 2001 -From: Michal Fabik -Date: Wed, 23 Sep 2020 16:55:25 +0200 -Subject: [PATCH] hooklib: Don't g_autofree backtrace - -The result of abrt_get_backtrace was being freed every time, even when -no error occured. - -Resolves: -https://github.com/abrt/abrt/issues/1528 -https://bugzilla.redhat.com/show_bug.cgi?id=1881745 -Signed-off-by: Michal Fabik ---- - src/lib/hooklib.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c -index dceaeb16..56b77bc3 100644 ---- a/src/lib/hooklib.c -+++ b/src/lib/hooklib.c -@@ -348,7 +348,7 @@ char *abrt_get_backtrace(struct dump_dir *dd, unsigned timeout_sec, const char * - unsigned bt_depth = 1024; - const char *thread_apply_all = "thread apply all -ascending"; - const char *full = "full "; -- g_autofree char *bt = NULL; -+ char *bt = NULL; - while (1) - { - args[bt_cmd_index] = g_strdup_printf("%s backtrace %s%u", thread_apply_all, full, bt_depth); -@@ -367,6 +367,7 @@ char *abrt_get_backtrace(struct dump_dir *dd, unsigned timeout_sec, const char * - /* (NB: in fact, current impl. of exec_vp() never returns NULL) */ - log_warning("Failed to generate backtrace, reducing depth to %u", - bt_depth); -+ free(bt); - - /* Replace -ex disassemble (which disasms entire function $pc points to) - * to a version which analyzes limited, small patch of code around $pc. --- -2.26.2 - diff --git a/0002-hooklib-Proper-freeing-of-backtrace.patch b/0002-hooklib-Proper-freeing-of-backtrace.patch deleted file mode 100644 index a9ded17..0000000 --- a/0002-hooklib-Proper-freeing-of-backtrace.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 5fa7b1f84fb02ca5dcf50d27f4bc14563c1918f6 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= -Date: Mon, 12 Oct 2020 19:14:03 +0200 -Subject: [PATCH] hooklib: Proper freeing of backtrace - -Improper bracing caused the bt variable to be freed every time in every -iteration no matter what. This would then lead to an invalid (freed) -pointer being returned by the function. - -The mistake was made in 1f2963b0 and reported by Jeff Law. ---- - src/lib/hooklib.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c -index 56b77bc3..fc2a6a00 100644 ---- a/src/lib/hooklib.c -+++ b/src/lib/hooklib.c -@@ -361,13 +361,17 @@ char *abrt_get_backtrace(struct dump_dir *dd, unsigned timeout_sec, const char * - - bt_depth /= 2; - if (bt) -+ { - log_warning("Backtrace is too big (%u bytes), reducing depth to %u", - (unsigned)strlen(bt), bt_depth); -+ } - else -+ { - /* (NB: in fact, current impl. of exec_vp() never returns NULL) */ - log_warning("Failed to generate backtrace, reducing depth to %u", - bt_depth); -- free(bt); -+ g_clear_pointer(&bt, free); -+ } - - /* Replace -ex disassemble (which disasms entire function $pc points to) - * to a version which analyzes limited, small patch of code around $pc. --- -2.26.2 - diff --git a/abrt.spec b/abrt.spec index fb88956..3aef1ba 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -136,6 +136,8 @@ BuildRequires: python3-libreport BuildRequires: python3-devel %endif +Patch0: 0001-Use-lazy-imports-in-abrt_exception_handler3.patch + %description %{name} is a tool to help users to detect defects in applications and to create a bug report with all information needed by maintainer to fix it. @@ -1001,6 +1003,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Sep 27 2021 Matěj Grabovský - 2.14.6-8 +- Use lazy import in the Python exception handler to avoid slowdown in Python + startup (rhbz#2007664) + * Wed Jul 21 2021 Fedora Release Engineering - 2.14.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 1b8bae307ac40653f80f4baae1df283d5d1850ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Wed, 22 Dec 2021 11:22:22 +0100 Subject: [PATCH 271/318] Rebuild for satyr 0.39 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 3aef1ba..7fa1705 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1003,6 +1003,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Dec 22 2021 Matěj Grabovský - 2.14.6-9 +- Rebuild for satyr 0.39 + * Mon Sep 27 2021 Matěj Grabovský - 2.14.6-8 - Use lazy import in the Python exception handler to avoid slowdown in Python startup (rhbz#2007664) From 810fcb191126868bbbe733ade0f0988c375e4964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Thu, 6 Jan 2022 14:56:23 +0100 Subject: [PATCH 272/318] Do not install conflicting packages in test --- tests/smoke.fmf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/smoke.fmf b/tests/smoke.fmf index ca74391..f879d5c 100644 --- a/tests/smoke.fmf +++ b/tests/smoke.fmf @@ -1,3 +1,9 @@ summary: Basic smoke test for abrt +prepare: + how: install + # Do not attempt to install conflicting subpackages. + exclude: + - abrt-atomic + - python3-abrt-container-addon execute: script: abrt-action-notify --help From 1c9f6e51cf55421457d220f34dc655e4587f906b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Thu, 6 Jan 2022 15:10:12 +0100 Subject: [PATCH 273/318] Bump release for rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 7fa1705..558be8b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1003,6 +1003,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jan 06 2022 Matěj Grabovský - 2.14.6-10 +- Bump release for rebuild + * Wed Dec 22 2021 Matěj Grabovský - 2.14.6-9 - Rebuild for satyr 0.39 From 88895e18b5cfe2def0c89a959af80bad4d5dd327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Wed, 12 Jan 2022 16:24:16 +0100 Subject: [PATCH 274/318] Fix issues with conflicting multilib packages --- abrt.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 558be8b..51289a2 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.14.6 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -81,6 +81,10 @@ BuildRequires: python3-devel BuildRequires: python3-systemd BuildRequires: python3-argcomplete BuildRequires: python3-dbus + +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python_Appendix/#_byte_compilation_reproducibility +%global py_reproducible_pyc_path %{buildroot}%{python3_sitelib} +BuildRequires: /usr/bin/marshalparser %endif Requires: libreport >= %{libreport_ver} @@ -305,6 +309,7 @@ uncaught exception in python 3 programs. %package -n python3-abrt-container-addon Summary: %{name}'s container addon for catching Python 3 exceptions +BuildArch: noarch Conflicts: python3-abrt-addon Requires: container-exception-logger @@ -323,6 +328,7 @@ of machine_id for abrt events. %package tui Summary: %{name}'s command line interface +BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: libreport-cli >= %{libreport_ver} Requires: abrt-libs = %{version}-%{release} @@ -1003,6 +1009,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jan 12 2022 Miro Hrončok - 2.14.6-11 +- Make abrt-tui and python3-abrt-container-addon noarch as they contain no architecture-specific content +- Ensure Python bytecode in noarch subpackages is reproducible + * Thu Jan 06 2022 Matěj Grabovský - 2.14.6-10 - Bump release for rebuild From 0302f37126a25ca5e73a01ea8cce0e249634eaa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Mon, 17 Jan 2022 19:27:36 +0100 Subject: [PATCH 275/318] New upstream release 2.15.0 --- .gitignore | 1 + ...y-imports-in-abrt_exception_handler3.patch | 57 ------------------- abrt.spec | 16 ++++-- sources | 2 +- 4 files changed, 14 insertions(+), 62 deletions(-) delete mode 100644 0001-Use-lazy-imports-in-abrt_exception_handler3.patch diff --git a/.gitignore b/.gitignore index 75abc74..faaae41 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,4 @@ abrt-1.1.13.tar.gz /abrt-2.14.4.tar.gz /abrt-2.14.5.tar.gz /abrt-2.14.6.tar.gz +/abrt-2.15.0.tar.gz diff --git a/0001-Use-lazy-imports-in-abrt_exception_handler3.patch b/0001-Use-lazy-imports-in-abrt_exception_handler3.patch deleted file mode 100644 index 5c892a8..0000000 --- a/0001-Use-lazy-imports-in-abrt_exception_handler3.patch +++ /dev/null @@ -1,57 +0,0 @@ -From 4755f2171aa50a72d8ec03260c8cbc602263a6c0 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= -Date: Fri, 24 Sep 2021 17:48:07 +0200 -Subject: [PATCH] Use lazy imports in abrt_exception_handler3 - -The abrt_exception_handler3 module is always imported when Python starts, -but all the modules imported from it (except sys) are only used during crashes. - -Especially the systemd.journal import is really expensive. - -Fixes https://bugzilla.redhat.com/show_bug.cgi?id=2007664 ---- - src/hooks/abrt_exception_handler3.py.in | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -diff --git a/src/hooks/abrt_exception_handler3.py.in b/src/hooks/abrt_exception_handler3.py.in -index 89e2474b..0bc548e0 100644 ---- a/src/hooks/abrt_exception_handler3.py.in -+++ b/src/hooks/abrt_exception_handler3.py.in -@@ -20,13 +20,15 @@ - Module for the ABRT exception handling hook - """ - -+# Avoid importing anything but sys here, use lazy imports. -+# This file is imported on every Python startup, -+# all unused imports only increase the startup time and memory usage. - import sys --import os - --from systemd import journal - - def syslog(msg): - """Log message to system logger (journal)""" -+ from systemd import journal - - journal.send(msg) - -@@ -68,6 +70,8 @@ def send(data): - - - def write_dump(tb_text, tb): -+ import os -+ - if sys.argv[0][0] == "/": - executable = os.path.abspath(sys.argv[0]) - else: -@@ -118,6 +122,7 @@ def handle_exception(etype, value, tb): - sys.excepthook = sys.__excepthook__ # pylint: disable-msg=E1101 - - import errno -+ import os - - # Ignore Ctrl-C - # SystemExit rhbz#636913 -> this exception is not an error --- -2.31.1 - diff --git a/abrt.spec b/abrt.spec index 51289a2..c340e01 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,8 +48,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.14.6 -Release: 11%{?dist} +Version: 2.15.0 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -140,8 +140,6 @@ BuildRequires: python3-libreport BuildRequires: python3-devel %endif -Patch0: 0001-Use-lazy-imports-in-abrt_exception_handler3.patch - %description %{name} is a tool to help users to detect defects in applications and to create a bug report with all information needed by maintainer to fix it. @@ -1009,6 +1007,16 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jan 17 2022 Matěj Grabovský - 2.15.0-1 +- Bump abrt library version to 1:0:1 +- cli: Fix path and glob matching for abrt info etc. +- abrt-dump-oops: Fix vmcore call trace parsing +- Use lazy imports in abrt_exception_handler3 +- Don't copy coredump to problem dir +- Detect Python 3.10 and Perl correctly in abrt-action-save-package-data +- Fix calls to deprecated methods in tests +- Update translations + * Wed Jan 12 2022 Miro Hrončok - 2.14.6-11 - Make abrt-tui and python3-abrt-container-addon noarch as they contain no architecture-specific content - Ensure Python bytecode in noarch subpackages is reproducible diff --git a/sources b/sources index 601ce96..adf93c6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.14.6.tar.gz) = eb1ba2f624d51eeccd203bb23060493347f5a9142fad7d0570d46134071d870a9c66b4fbfb8210e7d6f87c0c039f31eb486d18a36b10fba318e2180aa09df9fe +SHA512 (abrt-2.15.0.tar.gz) = 2d6c1287c1f01990aeb30f956f465c7a6399a6e53dc667602e263c136f94bc4090b58876acba678b29671c0db89ae8e7dd6994cf8d0d2d9fbc375f54ae6cd935 From 15bea33e034cd5275bc734d08e549700665cd51c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Wed, 19 Jan 2022 12:27:20 +0100 Subject: [PATCH 276/318] tests: Add one more conflicting package --- tests/smoke.fmf | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/smoke.fmf b/tests/smoke.fmf index f879d5c..69759b3 100644 --- a/tests/smoke.fmf +++ b/tests/smoke.fmf @@ -4,6 +4,7 @@ prepare: # Do not attempt to install conflicting subpackages. exclude: - abrt-atomic + - abrt-java-connector-container - python3-abrt-container-addon execute: script: abrt-action-notify --help From fcc2f68d2d33f263829a065fc0dd8c1eea446da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Wed, 19 Jan 2022 14:54:57 +0100 Subject: [PATCH 277/318] Rebuild for testing --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index c340e01..6094cfc 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.15.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1007,6 +1007,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jan 19 2022 Matěj Grabovský - 2.15.0-2 +- Rebuild for testing + * Mon Jan 17 2022 Matěj Grabovský - 2.15.0-1 - Bump abrt library version to 1:0:1 - cli: Fix path and glob matching for abrt info etc. From f9fd407b73ecb5a9a7eba95392049700e57cc81a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jan 2022 20:51:29 +0000 Subject: [PATCH 278/318] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 6094cfc..028ffc4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.15.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1007,6 +1007,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jan 19 2022 Fedora Release Engineering - 2.15.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Wed Jan 19 2022 Matěj Grabovský - 2.15.0-2 - Rebuild for testing From 3f24d622892a3f97fb0544df933a546f1e892603 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Thu, 10 Mar 2022 21:48:33 +0100 Subject: [PATCH 279/318] Update to 2.15.1 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index faaae41..302a9d3 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,4 @@ abrt-1.1.13.tar.gz /abrt-2.14.5.tar.gz /abrt-2.14.6.tar.gz /abrt-2.15.0.tar.gz +/abrt-2.15.1.tar.gz diff --git a/abrt.spec b/abrt.spec index 028ffc4..a700fbc 100644 --- a/abrt.spec +++ b/abrt.spec @@ -48,8 +48,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.15.0 -Release: 3%{?dist} +Version: 2.15.1 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1007,6 +1007,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Mar 10 2022 Michal Srb - 2.15.1-1 +- Update to 2.15.1 + * Wed Jan 19 2022 Fedora Release Engineering - 2.15.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index adf93c6..d9aac56 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.15.0.tar.gz) = 2d6c1287c1f01990aeb30f956f465c7a6399a6e53dc667602e263c136f94bc4090b58876acba678b29671c0db89ae8e7dd6994cf8d0d2d9fbc375f54ae6cd935 +SHA512 (abrt-2.15.1.tar.gz) = 745c513969b78ee7c76c310a8c2fc0bafd1e50375130fa773ad950bf123ee50cfa237da9b331f2c0af2851b35b162cbc908f2e00d59283867ed8ffd72236d0ea From f144023834a27b166d06ee9d74fb4715509f2dc1 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Wed, 15 Jun 2022 18:15:40 +0200 Subject: [PATCH 280/318] Rebuilt for Python 3.11 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index a700fbc..85e5185 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.15.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1007,6 +1007,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jun 15 2022 Python Maint - 2.15.1-2 +- Rebuilt for Python 3.11 + * Thu Mar 10 2022 Michal Srb - 2.15.1-1 - Update to 2.15.1 From 1e992dd7d9da7666d5da2be286a4568de4a5217f Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Thu, 16 Jun 2022 13:24:42 +0200 Subject: [PATCH 281/318] Fix FTBFS Resolves: rhbz#2093924 Signed-off-by: Michal Srb --- 0001-Fix-for-rpm-4.18.patch | 59 +++++++++++++++++++++++++++++++++++++ abrt.spec | 7 ++++- 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 0001-Fix-for-rpm-4.18.patch diff --git a/0001-Fix-for-rpm-4.18.patch b/0001-Fix-for-rpm-4.18.patch new file mode 100644 index 0000000..606d0e9 --- /dev/null +++ b/0001-Fix-for-rpm-4.18.patch @@ -0,0 +1,59 @@ +From ca26ccfff7e5e89eb48d67e707722d4a740f4511 Mon Sep 17 00:00:00 2001 +From: Michal Srb +Date: Thu, 16 Jun 2022 13:13:59 +0200 +Subject: [PATCH] Fix for rpm 4.18 + +pgpHexStr() function has been deprecated and renamed to rpmhex(). + +Since the replacement is only available in Rawhide (f37), let's +continue using the old name for now. + +This commit tells gcc to ignore the deprecation warning. + +See the commit: +https://github.com/rpm-software-management/rpm/commit/d44be2cbc1c3265d55f05b47daa69334a7a133e6 + +Signed-off-by: Michal Srb +--- + src/daemon/rpm.c | 11 +++++++++++ + 1 file changed, 11 insertions(+) + +diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c +index c84f1221..b9ac9767 100644 +--- a/src/daemon/rpm.c ++++ b/src/daemon/rpm.c +@@ -24,6 +24,7 @@ + #include + #include + #include ++#include + #include + + struct rpmPubkey_s { +@@ -92,6 +93,15 @@ void rpm_destroy() + g_list_free_full(g_steal_pointer(&list_fingerprints), free); + } + ++ ++// TODO: pgpHexStr() has been renamed to rpmhex() recently, and ++// pgpHexStr() is now deprecated and it will be dropped ++// in the future. Let's keep using the old name for now ++// as the replacement is only available in Rawhide (f37). ++// https://github.com/rpm-software-management/rpm/commit/d44be2cbc1c3265d55f05b47daa69334a7a133e6 ++// Ignore the deprecation warning in this function ++#pragma GCC diagnostic push ++#pragma GCC diagnostic ignored "-Wdeprecated-declarations" + void rpm_load_gpgkey(const char* filename) + { + #ifdef HAVE_LIBRPM +@@ -133,6 +143,7 @@ void rpm_load_gpgkey(const char* filename) + return; + #endif + } ++#pragma GCC diagnostic pop + + int rpm_chk_fingerprint(const char* pkg) + { +-- +2.36.1 + diff --git a/abrt.spec b/abrt.spec index 85e5185..feea9e4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,10 +49,11 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.15.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +Patch0: 0001-Fix-for-rpm-4.18.patch BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -1007,6 +1008,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jun 16 2022 Michal Srb - 2.15.1-3 +- Fix FTBFS +- Resolves: rhbz#2093924 + * Wed Jun 15 2022 Python Maint - 2.15.1-2 - Rebuilt for Python 3.11 From d3f14892f8b4c2fb8030bcb07db2d313ca8242a1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 20 Jul 2022 20:22:13 +0000 Subject: [PATCH 282/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index feea9e4..b5632b6 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.15.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -1008,6 +1008,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 20 2022 Fedora Release Engineering - 2.15.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Jun 16 2022 Michal Srb - 2.15.1-3 - Fix FTBFS - Resolves: rhbz#2093924 From 534292e248ea6cfd1b3ce048b867ff3dedca9a61 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Wed, 12 Oct 2022 09:43:01 +0200 Subject: [PATCH 283/318] abrt-journal: call sd_journal_get_fd() right after sd_journal_open() Resolves: rhbz#2128662 Signed-off-by: Michal Srb --- ...l-sd_journal_get_fd-right-after-sd_j.patch | 65 +++++++++++++++++++ abrt.spec | 7 +- 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch diff --git a/0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch b/0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch new file mode 100644 index 0000000..9c42e6e --- /dev/null +++ b/0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch @@ -0,0 +1,65 @@ +From 4ebe2699287844d2766f87062c48d8953b292bfe Mon Sep 17 00:00:00 2001 +From: Michal Srb +Date: Tue, 11 Oct 2022 22:41:33 +0200 +Subject: [PATCH] abrt-journal: call sd_journal_get_fd() right after + sd_journal_open() + +See: rhbz#2128662 + +Under certain circumstances, abrt-dump-journal can be running, +but not receiving any event notifications from journal. + +The culprit of the issue seems to be the delayed call +to sd_journal_get_fd(), as discussed in various +issues and pull-requests in other projects. +See for example [1], [2], or [3]. + +[1]: https://github.com/systemd/systemd/issues/7998 +[2]: https://github.com/ledbettj/systemd-journal/pull/78 +[3]: https://github.com/rsyslog/rsyslog/issues/2436 + +Signed-off-by: Michal Srb +--- + src/plugins/abrt-journal.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-journal.c b/src/plugins/abrt-journal.c +index adc9440e..48ae8c99 100644 +--- a/src/plugins/abrt-journal.c ++++ b/src/plugins/abrt-journal.c +@@ -35,12 +35,15 @@ + struct abrt_journal + { + sd_journal *j; ++ int fd; + }; + + static int abrt_journal_new_flags(abrt_journal_t **journal, int flags) + { + sd_journal *j; + const int r = sd_journal_open(&j, flags); ++ const int fd = sd_journal_get_fd(j); ++ + if (r < 0) + { + log_notice("Failed to open journal: %s", strerror(-r)); +@@ -49,6 +52,7 @@ static int abrt_journal_new_flags(abrt_journal_t **journal, int flags) + + *journal = g_malloc0(sizeof(**journal)); + (*journal)->j = j; ++ (*journal)->fd = fd; + + return 0; + } +@@ -452,7 +456,7 @@ int abrt_journal_watch_run_sync(abrt_journal_watch_t *watch) + sigdelset(&mask, SIGKILL); + + struct pollfd pollfd; +- pollfd.fd = sd_journal_get_fd(watch->j->j); ++ pollfd.fd = watch->j->fd; + pollfd.events = sd_journal_get_events(watch->j->j); + + int r = 0; +-- +2.37.3 + diff --git a/abrt.spec b/abrt.spec index b5632b6..201f845 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,11 +49,12 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.15.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz Patch0: 0001-Fix-for-rpm-4.18.patch +Patch1: 0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -1008,6 +1009,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Oct 12 2022 Michal Srb - 2.15.1-5 +- abrt-journal: call sd_journal_get_fd() right after sd_journal_open() +- Resolves: rhbz#2128662 + * Wed Jul 20 2022 Fedora Release Engineering - 2.15.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 4f63977e6d3dff1d0c666e0baa1d64c12c28f777 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Wed, 12 Oct 2022 09:44:21 +0200 Subject: [PATCH 284/318] Adjust gating.yaml for non-Rawhide release Fedora CI still doesn't run the generic tests for non-Rawhide releases :/ Signed-off-by: Michal Srb --- gating.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gating.yaml b/gating.yaml index db67165..f075ad7 100644 --- a/gating.yaml +++ b/gating.yaml @@ -4,9 +4,6 @@ product_versions: decision_context: bodhi_update_push_testing subject_type: koji_build rules: - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpmdeplint.functional} - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpminspect.static-analysis} - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.installability.functional} - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} --- !Policy @@ -15,7 +12,4 @@ product_versions: decision_context: bodhi_update_push_stable subject_type: koji_build rules: - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpmdeplint.functional} - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpminspect.static-analysis} - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.installability.functional} - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} From c8a122775e01e31dcb0435ff904c1e61b6c64f55 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Wed, 12 Oct 2022 09:59:26 +0200 Subject: [PATCH 285/318] applet: Update GLib constant name This fixes FTBFS in F37+ Signed-off-by: Michal Srb --- 0003-applet-Update-GLib-constant-name.patch | 48 +++++++++++++++++++++ abrt.spec | 1 + 2 files changed, 49 insertions(+) create mode 100644 0003-applet-Update-GLib-constant-name.patch diff --git a/0003-applet-Update-GLib-constant-name.patch b/0003-applet-Update-GLib-constant-name.patch new file mode 100644 index 0000000..ae96953 --- /dev/null +++ b/0003-applet-Update-GLib-constant-name.patch @@ -0,0 +1,48 @@ +From 8f67ddc99b4a72718290daae323fa5bc3c1d59eb Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= +Date: Thu, 15 Sep 2022 12:59:23 +0200 +Subject: [PATCH] applet: Update GLib constant name + +The `G_APPLICATION_FLAGS_NONE` constant has apparently been deprecated +and removed 2.73. Also bump the version constraint in the spec file. +--- + abrt.spec | 3 ++- + src/applet/abrt-applet-application.c | 2 +- + 2 files changed, 3 insertions(+), 2 deletions(-) + +diff --git a/abrt.spec b/abrt.spec +index 2f2c3027..03beca7d 100644 +--- a/abrt.spec ++++ b/abrt.spec +@@ -43,6 +43,7 @@ + %define docdirversion -%{version} + %endif + ++%define glib_ver 2.73.3 + %define libreport_ver 2.14.0 + %define satyr_ver 0.24 + +@@ -56,7 +57,7 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta + BuildRequires: %{dbus_devel} + BuildRequires: hostname + BuildRequires: gtk3-devel +-BuildRequires: glib2-devel >= 2.43.4 ++BuildRequires: glib2-devel >= %{glib_ver} + BuildRequires: rpm-devel >= 4.6 + BuildRequires: desktop-file-utils + BuildRequires: libnotify-devel +diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c +index 394d52b7..6faa8cf7 100644 +--- a/src/applet/abrt-applet-application.c ++++ b/src/applet/abrt-applet-application.c +@@ -1215,6 +1215,6 @@ abrt_applet_application_new (void) + { + return g_object_new (ABRT_APPLET_TYPE_APPLICATION, + "application-id", ABRT_DBUS_NAME ".applet", +- "flags", G_APPLICATION_FLAGS_NONE, ++ "flags", G_APPLICATION_DEFAULT_FLAGS, + NULL); + } +-- +2.37.3 + diff --git a/abrt.spec b/abrt.spec index 201f845..e6c1ad1 100644 --- a/abrt.spec +++ b/abrt.spec @@ -55,6 +55,7 @@ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz Patch0: 0001-Fix-for-rpm-4.18.patch Patch1: 0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch +Patch2: 0003-applet-Update-GLib-constant-name.patch BuildRequires: git-core BuildRequires: %{dbus_devel} From a20ba81e1de969ff5310297d05ac94a95a09e71d Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Wed, 19 Oct 2022 15:41:54 +0200 Subject: [PATCH 286/318] abrt-journal: First seek the journal tail and then set filters Resolves: rhbz#2128662 Signed-off-by: Michal Srb --- ...ore-First-seek-the-journal-tail-and-.patch | 61 +++++++++++++++++++ abrt.spec | 7 ++- 2 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch diff --git a/0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch b/0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch new file mode 100644 index 0000000..8d130b8 --- /dev/null +++ b/0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch @@ -0,0 +1,61 @@ +From 428bdf417b33d65fa5fbdcd292f12eef704bae95 Mon Sep 17 00:00:00 2001 +From: Michal Srb +Date: Wed, 19 Oct 2022 06:43:38 +0200 +Subject: [PATCH] a-dump-journal-core: First seek the journal tail and then set + filters + +See: rhbz#2128662 + +a-dump-journal-core uses filters to jump between +systemd-coredump entries in journal. + +However, we should first jump to the starting position +(journal tail) and only then set filters. +I suspect that setting the filters early, before we are +at the starting position, can lead to the strange +behavior that we are seeing in Fedora. + +This patch makes the problem go away on my freshly-installed +Fedora 37 VM. + +Signed-off-by: Michal Srb +--- + src/plugins/abrt-dump-journal-core.c | 17 +++++++++++------ + 1 file changed, 11 insertions(+), 6 deletions(-) + +diff --git a/src/plugins/abrt-dump-journal-core.c b/src/plugins/abrt-dump-journal-core.c +index 68d5b320..1bb793a2 100644 +--- a/src/plugins/abrt-dump-journal-core.c ++++ b/src/plugins/abrt-dump-journal-core.c +@@ -628,17 +628,22 @@ main(int argc, char *argv[]) + error_msg_and_die(_("Cannot open systemd-journal")); + } + +- if (abrt_journal_set_journal_filter(journal, coredump_journal_filter) < 0) +- error_msg_and_die(_("Cannot filter systemd-journal to systemd-coredump data only")); ++ if (opts & OPT_e) { ++ if (abrt_journal_seek_tail(journal) < 0) ++ error_msg_and_die(_("Cannot seek to the end of journal")); + +- g_list_free(coredump_journal_filter); +- +- if ((opts & OPT_e) && abrt_journal_seek_tail(journal) < 0) +- error_msg_and_die(_("Cannot seek to the end of journal")); ++ if (abrt_journal_save_current_position(journal, ABRT_JOURNAL_WATCH_STATE_FILE) < 0) ++ log_warning("Failed to save the starting cursor position"); ++ } + + if (cursor && abrt_journal_set_cursor(journal, cursor)) + error_msg_and_die(_("Failed to set systemd-journal cursor '%s'"), cursor); + ++ if (abrt_journal_set_journal_filter(journal, coredump_journal_filter) < 0) ++ error_msg_and_die(_("Cannot filter systemd-journal to systemd-coredump data only")); ++ ++ g_list_free(coredump_journal_filter); ++ + if ((opts & OPT_f)) + { + if (!cursor && !(opts & OPT_e)) +-- +2.37.3 + diff --git a/abrt.spec b/abrt.spec index e6c1ad1..15ae1a0 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,13 +49,14 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.15.1 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz Patch0: 0001-Fix-for-rpm-4.18.patch Patch1: 0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch Patch2: 0003-applet-Update-GLib-constant-name.patch +Patch3: 0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch BuildRequires: git-core BuildRequires: %{dbus_devel} @@ -1010,6 +1011,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Oct 19 2022 Michal Srb - 2.15.1-6 +- abrt-journal: First seek the journal tail and then set filters +- Resolves: rhbz#2128662 + * Wed Oct 12 2022 Michal Srb - 2.15.1-5 - abrt-journal: call sd_journal_get_fd() right after sd_journal_open() - Resolves: rhbz#2128662 From 50a321fe1d1726d0ef76ed09e8da2cf4531fa318 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Mon, 24 Oct 2022 18:00:03 +0200 Subject: [PATCH 287/318] Update to upstream release 2.16.0 Signed-off-by: Michal Srb --- .gitignore | 1 + 0001-Fix-for-rpm-4.18.patch | 59 --------------- ...l-sd_journal_get_fd-right-after-sd_j.patch | 65 ---------------- 0003-applet-Update-GLib-constant-name.patch | 48 ------------ ...ore-First-seek-the-journal-tail-and-.patch | 61 --------------- abrt.spec | 74 ++++--------------- sources | 2 +- 7 files changed, 18 insertions(+), 292 deletions(-) delete mode 100644 0001-Fix-for-rpm-4.18.patch delete mode 100644 0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch delete mode 100644 0003-applet-Update-GLib-constant-name.patch delete mode 100644 0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch diff --git a/.gitignore b/.gitignore index 302a9d3..424d319 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,4 @@ abrt-1.1.13.tar.gz /abrt-2.14.6.tar.gz /abrt-2.15.0.tar.gz /abrt-2.15.1.tar.gz +/abrt-2.16.0.tar.gz diff --git a/0001-Fix-for-rpm-4.18.patch b/0001-Fix-for-rpm-4.18.patch deleted file mode 100644 index 606d0e9..0000000 --- a/0001-Fix-for-rpm-4.18.patch +++ /dev/null @@ -1,59 +0,0 @@ -From ca26ccfff7e5e89eb48d67e707722d4a740f4511 Mon Sep 17 00:00:00 2001 -From: Michal Srb -Date: Thu, 16 Jun 2022 13:13:59 +0200 -Subject: [PATCH] Fix for rpm 4.18 - -pgpHexStr() function has been deprecated and renamed to rpmhex(). - -Since the replacement is only available in Rawhide (f37), let's -continue using the old name for now. - -This commit tells gcc to ignore the deprecation warning. - -See the commit: -https://github.com/rpm-software-management/rpm/commit/d44be2cbc1c3265d55f05b47daa69334a7a133e6 - -Signed-off-by: Michal Srb ---- - src/daemon/rpm.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c -index c84f1221..b9ac9767 100644 ---- a/src/daemon/rpm.c -+++ b/src/daemon/rpm.c -@@ -24,6 +24,7 @@ - #include - #include - #include -+#include - #include - - struct rpmPubkey_s { -@@ -92,6 +93,15 @@ void rpm_destroy() - g_list_free_full(g_steal_pointer(&list_fingerprints), free); - } - -+ -+// TODO: pgpHexStr() has been renamed to rpmhex() recently, and -+// pgpHexStr() is now deprecated and it will be dropped -+// in the future. Let's keep using the old name for now -+// as the replacement is only available in Rawhide (f37). -+// https://github.com/rpm-software-management/rpm/commit/d44be2cbc1c3265d55f05b47daa69334a7a133e6 -+// Ignore the deprecation warning in this function -+#pragma GCC diagnostic push -+#pragma GCC diagnostic ignored "-Wdeprecated-declarations" - void rpm_load_gpgkey(const char* filename) - { - #ifdef HAVE_LIBRPM -@@ -133,6 +143,7 @@ void rpm_load_gpgkey(const char* filename) - return; - #endif - } -+#pragma GCC diagnostic pop - - int rpm_chk_fingerprint(const char* pkg) - { --- -2.36.1 - diff --git a/0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch b/0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch deleted file mode 100644 index 9c42e6e..0000000 --- a/0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch +++ /dev/null @@ -1,65 +0,0 @@ -From 4ebe2699287844d2766f87062c48d8953b292bfe Mon Sep 17 00:00:00 2001 -From: Michal Srb -Date: Tue, 11 Oct 2022 22:41:33 +0200 -Subject: [PATCH] abrt-journal: call sd_journal_get_fd() right after - sd_journal_open() - -See: rhbz#2128662 - -Under certain circumstances, abrt-dump-journal can be running, -but not receiving any event notifications from journal. - -The culprit of the issue seems to be the delayed call -to sd_journal_get_fd(), as discussed in various -issues and pull-requests in other projects. -See for example [1], [2], or [3]. - -[1]: https://github.com/systemd/systemd/issues/7998 -[2]: https://github.com/ledbettj/systemd-journal/pull/78 -[3]: https://github.com/rsyslog/rsyslog/issues/2436 - -Signed-off-by: Michal Srb ---- - src/plugins/abrt-journal.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-journal.c b/src/plugins/abrt-journal.c -index adc9440e..48ae8c99 100644 ---- a/src/plugins/abrt-journal.c -+++ b/src/plugins/abrt-journal.c -@@ -35,12 +35,15 @@ - struct abrt_journal - { - sd_journal *j; -+ int fd; - }; - - static int abrt_journal_new_flags(abrt_journal_t **journal, int flags) - { - sd_journal *j; - const int r = sd_journal_open(&j, flags); -+ const int fd = sd_journal_get_fd(j); -+ - if (r < 0) - { - log_notice("Failed to open journal: %s", strerror(-r)); -@@ -49,6 +52,7 @@ static int abrt_journal_new_flags(abrt_journal_t **journal, int flags) - - *journal = g_malloc0(sizeof(**journal)); - (*journal)->j = j; -+ (*journal)->fd = fd; - - return 0; - } -@@ -452,7 +456,7 @@ int abrt_journal_watch_run_sync(abrt_journal_watch_t *watch) - sigdelset(&mask, SIGKILL); - - struct pollfd pollfd; -- pollfd.fd = sd_journal_get_fd(watch->j->j); -+ pollfd.fd = watch->j->fd; - pollfd.events = sd_journal_get_events(watch->j->j); - - int r = 0; --- -2.37.3 - diff --git a/0003-applet-Update-GLib-constant-name.patch b/0003-applet-Update-GLib-constant-name.patch deleted file mode 100644 index ae96953..0000000 --- a/0003-applet-Update-GLib-constant-name.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 8f67ddc99b4a72718290daae323fa5bc3c1d59eb Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= -Date: Thu, 15 Sep 2022 12:59:23 +0200 -Subject: [PATCH] applet: Update GLib constant name - -The `G_APPLICATION_FLAGS_NONE` constant has apparently been deprecated -and removed 2.73. Also bump the version constraint in the spec file. ---- - abrt.spec | 3 ++- - src/applet/abrt-applet-application.c | 2 +- - 2 files changed, 3 insertions(+), 2 deletions(-) - -diff --git a/abrt.spec b/abrt.spec -index 2f2c3027..03beca7d 100644 ---- a/abrt.spec -+++ b/abrt.spec -@@ -43,6 +43,7 @@ - %define docdirversion -%{version} - %endif - -+%define glib_ver 2.73.3 - %define libreport_ver 2.14.0 - %define satyr_ver 0.24 - -@@ -56,7 +57,7 @@ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.ta - BuildRequires: %{dbus_devel} - BuildRequires: hostname - BuildRequires: gtk3-devel --BuildRequires: glib2-devel >= 2.43.4 -+BuildRequires: glib2-devel >= %{glib_ver} - BuildRequires: rpm-devel >= 4.6 - BuildRequires: desktop-file-utils - BuildRequires: libnotify-devel -diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c -index 394d52b7..6faa8cf7 100644 ---- a/src/applet/abrt-applet-application.c -+++ b/src/applet/abrt-applet-application.c -@@ -1215,6 +1215,6 @@ abrt_applet_application_new (void) - { - return g_object_new (ABRT_APPLET_TYPE_APPLICATION, - "application-id", ABRT_DBUS_NAME ".applet", -- "flags", G_APPLICATION_FLAGS_NONE, -+ "flags", G_APPLICATION_DEFAULT_FLAGS, - NULL); - } --- -2.37.3 - diff --git a/0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch b/0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch deleted file mode 100644 index 8d130b8..0000000 --- a/0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch +++ /dev/null @@ -1,61 +0,0 @@ -From 428bdf417b33d65fa5fbdcd292f12eef704bae95 Mon Sep 17 00:00:00 2001 -From: Michal Srb -Date: Wed, 19 Oct 2022 06:43:38 +0200 -Subject: [PATCH] a-dump-journal-core: First seek the journal tail and then set - filters - -See: rhbz#2128662 - -a-dump-journal-core uses filters to jump between -systemd-coredump entries in journal. - -However, we should first jump to the starting position -(journal tail) and only then set filters. -I suspect that setting the filters early, before we are -at the starting position, can lead to the strange -behavior that we are seeing in Fedora. - -This patch makes the problem go away on my freshly-installed -Fedora 37 VM. - -Signed-off-by: Michal Srb ---- - src/plugins/abrt-dump-journal-core.c | 17 +++++++++++------ - 1 file changed, 11 insertions(+), 6 deletions(-) - -diff --git a/src/plugins/abrt-dump-journal-core.c b/src/plugins/abrt-dump-journal-core.c -index 68d5b320..1bb793a2 100644 ---- a/src/plugins/abrt-dump-journal-core.c -+++ b/src/plugins/abrt-dump-journal-core.c -@@ -628,17 +628,22 @@ main(int argc, char *argv[]) - error_msg_and_die(_("Cannot open systemd-journal")); - } - -- if (abrt_journal_set_journal_filter(journal, coredump_journal_filter) < 0) -- error_msg_and_die(_("Cannot filter systemd-journal to systemd-coredump data only")); -+ if (opts & OPT_e) { -+ if (abrt_journal_seek_tail(journal) < 0) -+ error_msg_and_die(_("Cannot seek to the end of journal")); - -- g_list_free(coredump_journal_filter); -- -- if ((opts & OPT_e) && abrt_journal_seek_tail(journal) < 0) -- error_msg_and_die(_("Cannot seek to the end of journal")); -+ if (abrt_journal_save_current_position(journal, ABRT_JOURNAL_WATCH_STATE_FILE) < 0) -+ log_warning("Failed to save the starting cursor position"); -+ } - - if (cursor && abrt_journal_set_cursor(journal, cursor)) - error_msg_and_die(_("Failed to set systemd-journal cursor '%s'"), cursor); - -+ if (abrt_journal_set_journal_filter(journal, coredump_journal_filter) < 0) -+ error_msg_and_die(_("Cannot filter systemd-journal to systemd-coredump data only")); -+ -+ g_list_free(coredump_journal_filter); -+ - if ((opts & OPT_f)) - { - if (!cursor && !(opts & OPT_e)) --- -2.37.3 - diff --git a/abrt.spec b/abrt.spec index 15ae1a0..db4fc89 100644 --- a/abrt.spec +++ b/abrt.spec @@ -22,7 +22,7 @@ %bcond_without retrace # rpmbuild --define 'desktopvendor mystring' -%if "x%{desktopvendor}" == "x" +%if "x%{?desktopvendor}" == "x" %define desktopvendor %(source /etc/os-release; echo ${ID}) %endif @@ -43,26 +43,22 @@ %define docdirversion -%{version} %endif +%define glib_ver 2.73.3 %define libreport_ver 2.14.0 %define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.15.1 -Release: 6%{?dist} +Version: 2.16.0 +Release: 1%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -Patch0: 0001-Fix-for-rpm-4.18.patch -Patch1: 0002-abrt-journal-call-sd_journal_get_fd-right-after-sd_j.patch -Patch2: 0003-applet-Update-GLib-constant-name.patch -Patch3: 0004-a-dump-journal-core-First-seek-the-journal-tail-and-.patch - BuildRequires: git-core BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel -BuildRequires: glib2-devel >= 2.43.4 +BuildRequires: glib2-devel >= %{glib_ver} BuildRequires: rpm-devel >= 4.6 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel @@ -72,7 +68,7 @@ BuildRequires: gettext BuildRequires: libxml2-devel BuildRequires: intltool BuildRequires: libtool -BuildRequires: libsoup-devel +BuildRequires: libsoup3-devel BuildRequires: asciidoc BuildRequires: doxygen BuildRequires: xmlto @@ -80,16 +76,20 @@ BuildRequires: libreport-devel >= %{libreport_ver} BuildRequires: satyr-devel >= %{satyr_ver} BuildRequires: augeas BuildRequires: libselinux-devel +# Required for the %%{_unitdir} and %%{_tmpfilesdir} macros. +BuildRequires: systemd-rpm-macros %if %{with python3} BuildRequires: python3-devel BuildRequires: python3-systemd BuildRequires: python3-argcomplete BuildRequires: python3-dbus +%if 0%{?fedora} # https://docs.fedoraproject.org/en-US/packaging-guidelines/Python_Appendix/#_byte_compilation_reproducibility %global py_reproducible_pyc_path %{buildroot}%{python3_sitelib} BuildRequires: /usr/bin/marshalparser %endif +%endif Requires: libreport >= %{libreport_ver} Requires: satyr >= %{satyr_ver} @@ -197,11 +197,9 @@ Summary: %{name}'s C/C++ addon Requires: cpio Requires: gdb-headless Requires: elfutils +# Required for local retracing with GDB. +Requires: elfutils-debuginfod-client %if 0%{!?rhel:1} -%if %{with retrace} -# abrt-action-perform-ccpp-analysis wants to run analyze_RetraceServer: -Requires: %{name}-retrace-client -%endif %endif Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} @@ -209,6 +207,7 @@ Requires: abrt-libs = %{version}-%{release} Requires: python3-libreport %endif Obsoletes: abrt-addon-coredump-helper <= 2.12.2 +Obsoletes: abrt-retrace-client <= 2.15.1 %description addon-ccpp @@ -222,20 +221,6 @@ Requires: abrt-libs = %{version}-%{release} %description addon-upload-watch This package contains hook for uploaded problems. -%if %{with retrace} -%package retrace-client -Summary: %{name}'s retrace client -Requires: %{name} = %{version}-%{release} -Requires: xz -Requires: tar -Requires: p11-kit-trust -Requires: libsoup - -%description retrace-client -This package contains the client application for Retrace server -which is able to analyze C/C++ crashes remotely. -%endif - %package addon-kerneloops Summary: %{name}'s kerneloops addon Requires: curl @@ -361,9 +346,6 @@ Requires: python3-abrt-addon %endif Requires: abrt-addon-xorg %if ! 0%{?rhel} -%if %{with retrace} -Requires: abrt-retrace-client -%endif %if %{with bodhi} Requires: abrt-plugin-bodhi %endif @@ -401,9 +383,6 @@ Requires: gdb-headless Requires: abrt-gui Requires: gnome-abrt %if ! 0%{?rhel} -%if %{with retrace} -Requires: abrt-retrace-client -%endif %if %{with bodhi} Requires: abrt-plugin-bodhi %endif @@ -481,7 +460,6 @@ to the shell %global __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex %autosetup -S git -p 0 - %build ./autogen.sh @@ -497,9 +475,6 @@ CFLAGS="%{optflags} -Werror" %configure \ %if %{without atomic} --without-atomic \ %endif -%if %{without retrace} - --without-retrace \ -%endif %ifnarch %{arm} --enable-native-unwinder \ %endif @@ -553,7 +528,6 @@ make check|| { # do not cat tests/testsuite.log because it contains a lot of bloat find src -name "test-suite.log" -print -exec cat '{}' \; find tests/testsuite.dir -name "testsuite.log" -print -exec cat '{}' \; - cat src/cli/test-suite.log exit 1 } @@ -817,19 +791,13 @@ killall abrt-dbus >/dev/null 2>&1 || : %dir %{_localstatedir}/lib/abrt -# attr(2755) ~= SETGID -%attr(2755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache - %{_bindir}/abrt-action-analyze-c %{_bindir}/abrt-action-trim-files -%{_bindir}/abrt-action-analyze-core %{_bindir}/abrt-action-analyze-vulnerability -%{_bindir}/abrt-action-install-debuginfo %{_bindir}/abrt-action-generate-backtrace %{_bindir}/abrt-action-generate-core-backtrace %{_bindir}/abrt-action-analyze-backtrace %{_bindir}/abrt-action-list-dsos -%{_bindir}/abrt-action-perform-ccpp-analysis %{_bindir}/abrt-action-analyze-ccpp-local %{_bindir}/abrt-dump-journal-core %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_event.conf @@ -840,7 +808,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/vimrc_event.conf.5* %{_datadir}/libreport/events/analyze_CCpp.xml %{_datadir}/libreport/events/analyze_LocalGDB.xml -%{_datadir}/libreport/events/analyze_RetraceServer.xml %{_datadir}/libreport/events/collect_xsession_errors.xml %{_datadir}/libreport/events/collect_GConf.xml %{_datadir}/libreport/events/collect_vimrc_user.xml @@ -852,11 +819,8 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-action-generate-core-backtrace.* %{_mandir}/man*/abrt-action-analyze-backtrace.* %{_mandir}/man*/abrt-action-list-dsos.* -%{_mandir}/man*/abrt-action-install-debuginfo.* %{_mandir}/man*/abrt-action-analyze-ccpp-local.* -%{_mandir}/man*/abrt-action-analyze-core.* %{_mandir}/man*/abrt-action-analyze-vulnerability.* -%{_mandir}/man*/abrt-action-perform-ccpp-analysis.* %{_mandir}/man1/abrt-dump-journal-core.1* %files addon-upload-watch @@ -865,14 +829,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man*/abrt-upload-watch.* -%if %{with retrace} -%files retrace-client -%{_bindir}/abrt-retrace-client -%{_mandir}/man1/abrt-retrace-client.1* -%config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_retrace_event.conf -%{_mandir}/man5/ccpp_retrace_event.conf.5* -%endif - %files addon-kerneloops %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf %{_journalcatalogdir}/abrt_koops.catalog @@ -954,7 +910,6 @@ killall abrt-dbus >/dev/null 2>&1 || : %files tui %if %{with python3} -%config(noreplace) %{_sysconfdir}/bash_completion.d/abrt.bash_completion %{_bindir}/abrt %{_bindir}/abrt-cli %{python3_sitelib}/abrtcli/ @@ -1011,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Oct 24 2022 Michal Srb - 2.16.0-1 +- Update to upstream release 2.16.0 + * Wed Oct 19 2022 Michal Srb - 2.15.1-6 - abrt-journal: First seek the journal tail and then set filters - Resolves: rhbz#2128662 diff --git a/sources b/sources index d9aac56..b028c85 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.15.1.tar.gz) = 745c513969b78ee7c76c310a8c2fc0bafd1e50375130fa773ad950bf123ee50cfa237da9b331f2c0af2851b35b162cbc908f2e00d59283867ed8ffd72236d0ea +SHA512 (abrt-2.16.0.tar.gz) = 243594580ad728bfa96c42005d29b3f76f0910cc80a4f4243f1ead7d2087e8ba5a5eadcc5405739bffaa43ed1b4bc0822ee1796ab2d16938a45a6823cfe9f1a5 From e73a64df97c48f6fd0a4f61456caf3b7ff602ce9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 18 Jan 2023 21:19:42 +0000 Subject: [PATCH 288/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index db4fc89..974234c 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.16.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jan 18 2023 Fedora Release Engineering - 2.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Mon Oct 24 2022 Michal Srb - 2.16.0-1 - Update to upstream release 2.16.0 From 8c7bdb15235b4d343765e906f2cfc47de2f690c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Thu, 2 Feb 2023 15:54:58 +0100 Subject: [PATCH 289/318] Use SPDX format for license field See [the wiki][1] for details. [1]: https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_1 --- abrt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 974234c..d85b1de 100644 --- a/abrt.spec +++ b/abrt.spec @@ -51,7 +51,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.16.0 Release: 2%{?dist} -License: GPLv2+ +License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: git-core From e65ab2c3e6f5b68c125b4d7d544ce98b25f359d1 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Thu, 30 Mar 2023 11:37:17 +0200 Subject: [PATCH 290/318] Update to upstream release 2.16.1 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 424d319..b777d6a 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,4 @@ abrt-1.1.13.tar.gz /abrt-2.15.0.tar.gz /abrt-2.15.1.tar.gz /abrt-2.16.0.tar.gz +/abrt-2.16.1.tar.gz diff --git a/abrt.spec b/abrt.spec index d85b1de..1c62018 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,8 +49,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.16.0 -Release: 2%{?dist} +Version: 2.16.1 +Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Mar 30 2023 Michal Srb - 2.16.1-1 +- Update to upstream release 2.16.1 + * Wed Jan 18 2023 Fedora Release Engineering - 2.16.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index b028c85..a543ab6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.16.0.tar.gz) = 243594580ad728bfa96c42005d29b3f76f0910cc80a4f4243f1ead7d2087e8ba5a5eadcc5405739bffaa43ed1b4bc0822ee1796ab2d16938a45a6823cfe9f1a5 +SHA512 (abrt-2.16.1.tar.gz) = a5babbc6fb67ff8ffbf648eec1195132e2128c27b27da9ec5272f894720d75abb147887a0327399a27fdbb87f2aa00a9d894b787e66433a369912c2b9c34c7c5 From 1f0eac990d8017977be50d92271969d55e4436b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Mon, 22 May 2023 11:38:34 +0200 Subject: [PATCH 291/318] Update to upstream release 2.17.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matěj Grabovský --- .gitignore | 1 + abrt.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b777d6a..c236681 100644 --- a/.gitignore +++ b/.gitignore @@ -79,3 +79,4 @@ abrt-1.1.13.tar.gz /abrt-2.15.1.tar.gz /abrt-2.16.0.tar.gz /abrt-2.16.1.tar.gz +/abrt-2.17.0.tar.gz diff --git a/abrt.spec b/abrt.spec index 1c62018..994f919 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.16.1 +Version: 2.17.0 Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ @@ -59,7 +59,7 @@ BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel BuildRequires: glib2-devel >= %{glib_ver} -BuildRequires: rpm-devel >= 4.6 +BuildRequires: rpm-devel >= 4.18 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel #why? BuildRequires: file-devel @@ -966,6 +966,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon May 22 2023 Matěj Grabovský - 2.17.0-1 +- Update to upstream release 2.17.0 +- Bump rpm-devel dependency to 4.18 + * Thu Mar 30 2023 Michal Srb - 2.16.1-1 - Update to upstream release 2.16.1 diff --git a/sources b/sources index a543ab6..ca6e2ec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.16.1.tar.gz) = a5babbc6fb67ff8ffbf648eec1195132e2128c27b27da9ec5272f894720d75abb147887a0327399a27fdbb87f2aa00a9d894b787e66433a369912c2b9c34c7c5 +SHA512 (abrt-2.17.0.tar.gz) = 6a2e66436ad097af3a270613ecdbe1b3f67820b7912c2607e3fea7f4b31166d99aa467757eb9504397163fa269af5ab6a88abbd2fa0cbad34f3e938ddddc49e7 From 7073ad434640c52324e9ef7d466fbfc2f437b756 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Wed, 28 Jun 2023 19:02:20 +0200 Subject: [PATCH 292/318] Rebuilt for Python 3.12 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 994f919..4244f4f 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jun 28 2023 Python Maint - 2.17.0-2 +- Rebuilt for Python 3.12 + * Mon May 22 2023 Matěj Grabovský - 2.17.0-1 - Update to upstream release 2.17.0 - Bump rpm-devel dependency to 4.18 From e76a84e22db7e8b28b6791721202b84b022942bd Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Fri, 30 Jun 2023 13:29:27 +0200 Subject: [PATCH 293/318] Update to upstream release 2.17.1 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c236681..9883f4e 100644 --- a/.gitignore +++ b/.gitignore @@ -80,3 +80,4 @@ abrt-1.1.13.tar.gz /abrt-2.16.0.tar.gz /abrt-2.16.1.tar.gz /abrt-2.17.0.tar.gz +/abrt-2.17.1.tar.gz diff --git a/abrt.spec b/abrt.spec index 4244f4f..898033e 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,8 +49,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.0 -Release: 2%{?dist} +Version: 2.17.1 +Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jun 30 2023 Michal Srb - 2.17.1-1 +- Update to upstream release 2.17.1 + * Wed Jun 28 2023 Python Maint - 2.17.0-2 - Rebuilt for Python 3.12 diff --git a/sources b/sources index ca6e2ec..04baaf7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.0.tar.gz) = 6a2e66436ad097af3a270613ecdbe1b3f67820b7912c2607e3fea7f4b31166d99aa467757eb9504397163fa269af5ab6a88abbd2fa0cbad34f3e938ddddc49e7 +SHA512 (abrt-2.17.1.tar.gz) = 6f4a1eca2ee2fc87974b32984f3750a86469502e5a0a7f7063d9992e0e5e1dff60bc2e0001908bbb1bbc2956c10a9319342b7dd869437bdded82fc8a4ef09c20 From bbc9c5edc4de4a1f52333530c5e7c4f4b451a90a Mon Sep 17 00:00:00 2001 From: Python Maint Date: Sat, 1 Jul 2023 11:44:59 +0200 Subject: [PATCH 294/318] Rebuilt for Python 3.12 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 898033e..b08708d 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sat Jul 01 2023 Python Maint - 2.17.1-2 +- Rebuilt for Python 3.12 + * Fri Jun 30 2023 Michal Srb - 2.17.1-1 - Update to upstream release 2.17.1 From 32054b4681227b8b419ac523e0cdd562ffdea89f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jul 2023 12:49:45 +0000 Subject: [PATCH 295/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index b08708d..967587c 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 19 2023 Fedora Release Engineering - 2.17.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jul 01 2023 Python Maint - 2.17.1-2 - Rebuilt for Python 3.12 From f1adb645779b4a5adca5c42220dec2d3458383de Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jan 2024 12:03:02 +0000 Subject: [PATCH 296/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 967587c..f772532 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jan 19 2024 Fedora Release Engineering - 2.17.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Jul 19 2023 Fedora Release Engineering - 2.17.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 7eebe59cc3fdda898007447a82d2faeb0f6a9f53 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 22:34:46 +0000 Subject: [PATCH 297/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index f772532..819cbca 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Jan 22 2024 Fedora Release Engineering - 2.17.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jan 19 2024 Fedora Release Engineering - 2.17.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 7fea67f0edba61c9435260ef87eeffd249c1ba18 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Sun, 4 Feb 2024 23:45:24 +0100 Subject: [PATCH 298/318] Update to upstream release 2.17.2 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9883f4e..ffbcf8a 100644 --- a/.gitignore +++ b/.gitignore @@ -81,3 +81,4 @@ abrt-1.1.13.tar.gz /abrt-2.16.1.tar.gz /abrt-2.17.0.tar.gz /abrt-2.17.1.tar.gz +/abrt-2.17.2.tar.gz diff --git a/abrt.spec b/abrt.spec index 819cbca..9d0c3e8 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,8 +49,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.1 -Release: 5%{?dist} +Version: 2.17.2 +Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -966,6 +966,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sun Feb 04 2024 Michal Srb - 2.17.2-1 +- Update to upstream release 2.17.2 + * Mon Jan 22 2024 Fedora Release Engineering - 2.17.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/sources b/sources index 04baaf7..b30f820 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.1.tar.gz) = 6f4a1eca2ee2fc87974b32984f3750a86469502e5a0a7f7063d9992e0e5e1dff60bc2e0001908bbb1bbc2956c10a9319342b7dd869437bdded82fc8a4ef09c20 +SHA512 (abrt-2.17.2.tar.gz) = 47113739e400739c61a0eaf29377fb8c1f43c24f323ab984e6844dccf66de201606369cffdde502807767df5d5398a5e0d909d30e0d8349ef1c816969e3385af From 58c69f3384c825595a98da11d8351dac5d594df9 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Mon, 5 Feb 2024 22:35:28 +0100 Subject: [PATCH 299/318] Update spec file Signed-off-by: Michal Srb --- abrt.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 9d0c3e8..102f43a 100644 --- a/abrt.spec +++ b/abrt.spec @@ -44,7 +44,7 @@ %endif %define glib_ver 2.73.3 -%define libreport_ver 2.14.0 +%define libreport_ver 2.17.13 %define satyr_ver 0.24 Summary: Automatic bug detection and reporting tool @@ -275,6 +275,7 @@ This package contains plugin for collecting kernel oopses from pstore storage. %package plugin-bodhi Summary: %{name}'s bodhi plugin Requires: %{name} = %{version}-%{release} +Requires: abrt-libs = %{version}-%{release} Obsoletes: libreport-plugin-bodhi <= 2.0.10 Provides: libreport-plugin-bodhi = %{version}-%{release} @@ -785,6 +786,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf %{_mandir}/man5/abrt-CCpp.conf.5* %{_libexecdir}/abrt-gdb-exploitable +%{_libexecdir}/abrt-action-coredump %config(noreplace) %{_sysconfdir}/libreport/plugins/catalog_journal_ccpp_format.conf %{_unitdir}/abrt-journal-core.service %{_journalcatalogdir}/abrt_ccpp.catalog From e8f18508dab09e7c91bc988e89e08a63ea6eb4da Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Mon, 12 Feb 2024 22:59:07 +0100 Subject: [PATCH 300/318] Update to upstream release 2.17.4 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ffbcf8a..61d905a 100644 --- a/.gitignore +++ b/.gitignore @@ -82,3 +82,4 @@ abrt-1.1.13.tar.gz /abrt-2.17.0.tar.gz /abrt-2.17.1.tar.gz /abrt-2.17.2.tar.gz +/abrt-2.17.4.tar.gz diff --git a/abrt.spec b/abrt.spec index 102f43a..3014e18 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.2 +Version: 2.17.4 Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ @@ -968,6 +968,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Feb 12 2024 Michal Srb - 2.17.4-1 +- Update to upstream release 2.17.4 + * Sun Feb 04 2024 Michal Srb - 2.17.2-1 - Update to upstream release 2.17.2 diff --git a/sources b/sources index b30f820..36c4712 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.2.tar.gz) = 47113739e400739c61a0eaf29377fb8c1f43c24f323ab984e6844dccf66de201606369cffdde502807767df5d5398a5e0d909d30e0d8349ef1c816969e3385af +SHA512 (abrt-2.17.4.tar.gz) = a4b809d677ff658fd7b66875153b62fc17e6f08f7817a399615db0c867e8cf927f33f3159869be562a857c74b16168fe367b5bbc7d6b2a332f4c90470473270b From 202231f9cb648b867cc5b22dff77b91103e73979 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Mon, 19 Feb 2024 19:59:39 +0100 Subject: [PATCH 301/318] Update to 2.17.5 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 61d905a..e4adccf 100644 --- a/.gitignore +++ b/.gitignore @@ -83,3 +83,4 @@ abrt-1.1.13.tar.gz /abrt-2.17.1.tar.gz /abrt-2.17.2.tar.gz /abrt-2.17.4.tar.gz +/abrt-2.17.5.tar.gz diff --git a/abrt.spec b/abrt.spec index 3014e18..5295a25 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,7 +49,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.4 +Version: 2.17.5 Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ @@ -968,6 +968,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Feb 19 2024 Michal Srb - 2.17.5-1 +- Update to upstream release 2.17.5 + * Mon Feb 12 2024 Michal Srb - 2.17.4-1 - Update to upstream release 2.17.4 diff --git a/sources b/sources index 36c4712..e9aaae8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.4.tar.gz) = a4b809d677ff658fd7b66875153b62fc17e6f08f7817a399615db0c867e8cf927f33f3159869be562a857c74b16168fe367b5bbc7d6b2a332f4c90470473270b +SHA512 (abrt-2.17.5.tar.gz) = f72be9eb3f16ba7bbdce69282438f48e6217d2c3ebfce2b30cc60d1893c9f8afe0b526862dbf6a06b973ad0560bc773f685ff2321a7b18490030b26801391a6b From af451300aa03247db3c75b77ee52f7cffac8db66 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Sun, 9 Jun 2024 02:46:55 +0200 Subject: [PATCH 302/318] Rebuilt for Python 3.13 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 5295a25..c8f8c04 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -968,6 +968,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sun Jun 09 2024 Python Maint - 2.17.5-2 +- Rebuilt for Python 3.13 + * Mon Feb 19 2024 Michal Srb - 2.17.5-1 - Update to upstream release 2.17.5 From 66812b6c9237d7d854469e95777c0b953e0a94a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 18 Jun 2024 13:04:35 +0200 Subject: [PATCH 303/318] Drop call to marshalparser This is now done automatically by add-determinism: https://fedoraproject.org/wiki/Changes/ReproduciblePackageBuilds --- abrt.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/abrt.spec b/abrt.spec index c8f8c04..4216157 100644 --- a/abrt.spec +++ b/abrt.spec @@ -83,12 +83,6 @@ BuildRequires: python3-devel BuildRequires: python3-systemd BuildRequires: python3-argcomplete BuildRequires: python3-dbus - -%if 0%{?fedora} -# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python_Appendix/#_byte_compilation_reproducibility -%global py_reproducible_pyc_path %{buildroot}%{python3_sitelib} -BuildRequires: /usr/bin/marshalparser -%endif %endif Requires: libreport >= %{libreport_ver} From e5b49f4be8e16c88e9ab3921ca8e103abfd2fbe7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 17 Jul 2024 16:31:08 +0000 Subject: [PATCH 304/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 4216157..5893951 100644 --- a/abrt.spec +++ b/abrt.spec @@ -50,7 +50,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -962,6 +962,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 17 2024 Fedora Release Engineering - 2.17.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sun Jun 09 2024 Python Maint - 2.17.5-2 - Rebuilt for Python 3.13 From d48adf45004144dbf0bc479b2453cf60fefbd0b1 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Sun, 1 Sep 2024 15:24:09 +0200 Subject: [PATCH 305/318] Update to upstream release 2.17.6 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e4adccf..83c640b 100644 --- a/.gitignore +++ b/.gitignore @@ -84,3 +84,4 @@ abrt-1.1.13.tar.gz /abrt-2.17.2.tar.gz /abrt-2.17.4.tar.gz /abrt-2.17.5.tar.gz +/abrt-2.17.6.tar.gz diff --git a/abrt.spec b/abrt.spec index 5893951..5fb5923 100644 --- a/abrt.spec +++ b/abrt.spec @@ -49,8 +49,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.5 -Release: 3%{?dist} +Version: 2.17.6 +Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -962,6 +962,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Sun Sep 01 2024 Michal Srb - 2.17.6-1 +- Update to upstream release 2.17.6 +- Fix reading signature information from RPM headers (rhbz#2307278) + * Wed Jul 17 2024 Fedora Release Engineering - 2.17.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/sources b/sources index e9aaae8..77e5b6a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.5.tar.gz) = f72be9eb3f16ba7bbdce69282438f48e6217d2c3ebfce2b30cc60d1893c9f8afe0b526862dbf6a06b973ad0560bc773f685ff2321a7b18490030b26801391a6b +SHA512 (abrt-2.17.6.tar.gz) = 1e3729187c609f72e6d72c91815fc74e9ff8bed14dd678c093e4c47eafecb4e00fbe0b185e3a1ece614b994302c35de6a171449d5e80157a4fee16ccc7e60277 From 1bb862864421a082c25fb635753f3d82e9b0a50e Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Wed, 11 Sep 2024 12:56:30 +0200 Subject: [PATCH 306/318] Drop container handler (rhbz#2295150) --- abrt.spec | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 5fb5923..6d83b4d 100644 --- a/abrt.spec +++ b/abrt.spec @@ -9,6 +9,13 @@ %bcond_with python3 %endif +%if 0%{?fedora} >= 41 || 0%{?rhel} >= 10 +%bcond_with container_handler +%else +%bcond_without container_handler +%endif + + %if 0%{?rhel}%{?suse_version} %bcond_with bodhi %else @@ -50,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -289,6 +296,7 @@ Requires: python3-abrt This package contains python 3 hook and python analyzer plugin for handling uncaught exception in python 3 programs. +%if %{with container_handler} %package -n python3-abrt-container-addon Summary: %{name}'s container addon for catching Python 3 exceptions BuildArch: noarch @@ -300,6 +308,8 @@ This package contains python 3 hook and handling uncaught exception in python 3 programs in container. %endif +%endif + %package plugin-machine-id Summary: %{name}'s plugin to generate machine_id based off dmidecode Requires: %{name} = %{version}-%{release} @@ -512,6 +522,13 @@ ln -sf %{_datadir}/applications/org.freedesktop.problems.applet.desktop %{buildr %if %{with python3} ln -sf %{_bindir}/abrt %{buildroot}%{_bindir}/abrt-cli ln -sf %{_mandir}/man1/abrt.1 %{buildroot}%{_mandir}/man1/abrt-cli.1 + +%if ! %{with container_handler} +rm -vf %{buildroot}%{python3_sitelib}/abrt3_container.pth +rm -vf %{buildroot}%{python3_sitelib}/abrt_exception_handler3_container.py +rm -vf %{buildroot}%{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* +%endif + %endif # After everything is installed, remove info dir @@ -892,12 +909,15 @@ killall abrt-dbus >/dev/null 2>&1 || : %{python3_sitelib}/abrt_exception_handler3.py %{python3_sitelib}/__pycache__/abrt_exception_handler3.* +%if %{with container_handler} %files -n python3-abrt-container-addon %{python3_sitelib}/abrt3_container.pth %{python3_sitelib}/abrt_exception_handler3_container.py %{python3_sitelib}/__pycache__/abrt_exception_handler3_container.* %endif +%endif + %files plugin-machine-id %config(noreplace) %{_sysconfdir}/libreport/events.d/machine-id_event.conf %{_libexecdir}/abrt-action-generate-machine-id @@ -962,6 +982,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Sep 11 2024 Neal Gompa - 2.17.6-2 +- Drop container handler (rhbz#2295150) + * Sun Sep 01 2024 Michal Srb - 2.17.6-1 - Update to upstream release 2.17.6 - Fix reading signature information from RPM headers (rhbz#2307278) From 67fc5aa7565f8695eda11f3ba88f8edb2d6483f9 Mon Sep 17 00:00:00 2001 From: David Abdurachmanov Date: Wed, 20 Nov 2024 16:45:35 +0000 Subject: [PATCH 307/318] Disable Requires on kexec-tools for riscv64 kexec is supported for riscv64 on the kernel side, but the tooling side is not yet upstreamed. Status is unknown. See recent failed kexec-tools builds on riscv64 here: http://fedora.riscv.rocks/koji/packageinfo?packageID=17577 Signed-off-by: David Abdurachmanov Signed-off-by: Richard W.M. Jones --- abrt.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 6d83b4d..783d3c4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -249,7 +249,11 @@ log. Summary: %{name}'s vmcore addon Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops +# On riscv64, kexec-tools does not compile: +# "configure: error: unsupported architecture riscv64" +%ifnarch riscv64 Requires: kexec-tools +%endif %if %{with python3} Requires: python3-abrt Requires: python3-augeas @@ -982,6 +986,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Nov 20 2024 David Abdurachmanov - 2.17.6-3 +- Disable Requires for kexec-tools on riscv64 (not supported) + * Wed Sep 11 2024 Neal Gompa - 2.17.6-2 - Drop container handler (rhbz#2295150) From c76a737f5a69b6e7debfae90bf14f4f1c34dff38 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 10:29:17 +0000 Subject: [PATCH 308/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 783d3c4..3efaa98 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -986,6 +986,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jan 16 2025 Fedora Release Engineering - 2.17.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Nov 20 2024 David Abdurachmanov - 2.17.6-3 - Disable Requires for kexec-tools on riscv64 (not supported) From 3063be65d9f436a61e6574e60725dba73de68a83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 23 Jan 2025 17:01:20 +0100 Subject: [PATCH 309/318] Add sysusers.d config file to allow rpm to create users/groups automatically --- abrt.spec | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/abrt.spec b/abrt.spec index 3efaa98..d003e87 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -469,6 +469,13 @@ to the shell %global __scm_apply_git(qp:m:) %{__git} am --exclude doc/design --exclude doc/project/abrt.tex %autosetup -S git -p 0 +# Create a sysusers.d config file +#uidgid pair 173:173 reserved in setup rhbz#670231 +%global abrt_gid_uid 173 +cat >abrt.sysusers.conf </dev/null || groupadd -f -g %{abrt_gid_uid} --system abrt -getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d /etc/abrt -s /sbin/nologin abrt -exit 0 - %post # $1 == 1 if install; 2 if upgrade %systemd_post abrtd.service @@ -753,6 +755,7 @@ killall abrt-dbus >/dev/null 2>&1 || : %{_mandir}/man5/abrt-action-save-package-data.conf.5* %{_mandir}/man5/gpg_keys.conf.5* %{_mandir}/man8/abrtd.8* +%{_sysusersdir}/abrt.conf %files libs %{_libdir}/libabrt.so.* @@ -986,6 +989,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Jan 23 2025 Zbigniew Jędrzejewski-Szmek - 2.17.6-5 +- Add sysusers.d config file to allow rpm to create users/groups automatically + * Thu Jan 16 2025 Fedora Release Engineering - 2.17.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From b8a18969b7d2f0c86e3ad294fddb8cc067ddbea5 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 3 Jun 2025 15:33:02 +0200 Subject: [PATCH 310/318] Rebuilt for Python 3.14 --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index d003e87..cba345b 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -989,6 +989,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Tue Jun 03 2025 Python Maint - 2.17.6-6 +- Rebuilt for Python 3.14 + * Thu Jan 23 2025 Zbigniew Jędrzejewski-Szmek - 2.17.6-5 - Add sysusers.d config file to allow rpm to create users/groups automatically From ea69665c753d6816df1bd599a28171cf73e528be Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 16:42:37 +0000 Subject: [PATCH 311/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index cba345b..93a20c5 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -989,6 +989,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Wed Jul 23 2025 Fedora Release Engineering - 2.17.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Tue Jun 03 2025 Python Maint - 2.17.6-6 - Rebuilt for Python 3.14 From 3e192a597d9539c4f37f1deacbeb8c99091ce299 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 25 Jul 2025 14:27:51 -0700 Subject: [PATCH 312/318] Obsolete fros packages fros was recently retired: https://src.fedoraproject.org/rpms/fros/c/1d5c887 it was added to comps to support abrt-desktop: https://pagure.io/fedora-comps/c/e845f70 so it seems most appropriate to have abrt obsolete it, if we don't just use obsolete-packages. Signed-off-by: Adam Williamson --- abrt.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/abrt.spec b/abrt.spec index 93a20c5..0053e72 100644 --- a/abrt.spec +++ b/abrt.spec @@ -118,6 +118,11 @@ Requires: libreport-plugin-systemd-journal %endif # to fix upgrade path abrt-plugin-sosreport was removed in 2.14.5 version. Obsoletes: abrt-plugin-sosreport < 2.14.5 +# fros was retired 2025-07, and was initially added to comps to support +# abrt-desktop, so let's obsolete it here +Obsoletes: fros < 1.1-42 +Obsoletes: fros-gnome < 1.1-42 +Obsoletes: fros-recordmydesktop < 1.1-42 #gui BuildRequires: libreport-gtk-devel >= %{libreport_ver} From 026c727cd2ab021685606ff451d69c3e8a928653 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 1 Aug 2025 10:49:36 -0700 Subject: [PATCH 313/318] Bump release --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 0053e72..94b5143 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 7%{?dist} +Release: 8%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -994,6 +994,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Aug 01 2025 Adam Williamson - 2.17.6-8 +- Obsolete fros packages + * Wed Jul 23 2025 Fedora Release Engineering - 2.17.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 54bdc1243fac6524a8b3703146a93e60b09831f0 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 12:37:49 +0200 Subject: [PATCH 314/318] Rebuilt for Python 3.14.0rc2 bytecode --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 94b5143..ed6ab01 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 8%{?dist} +Release: 9%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -994,6 +994,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Aug 15 2025 Python Maint - 2.17.6-9 +- Rebuilt for Python 3.14.0rc2 bytecode + * Fri Aug 01 2025 Adam Williamson - 2.17.6-8 - Obsolete fros packages From ba57e0bbb5605d5ac0259e624c495e8513c1a7ed Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 12:06:17 +0200 Subject: [PATCH 315/318] Rebuilt for Python 3.14.0rc3 bytecode --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index ed6ab01..a5b19ef 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 9%{?dist} +Release: 10%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -994,6 +994,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Sep 19 2025 Python Maint - 2.17.6-10 +- Rebuilt for Python 3.14.0rc3 bytecode + * Fri Aug 15 2025 Python Maint - 2.17.6-9 - Rebuilt for Python 3.14.0rc2 bytecode From b36cf8c4991ed7eace2563fd98c3f0d92434227f Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Thu, 2 Oct 2025 10:36:26 +0200 Subject: [PATCH 316/318] Update to 2.17.7 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 83c640b..cc954d8 100644 --- a/.gitignore +++ b/.gitignore @@ -85,3 +85,4 @@ abrt-1.1.13.tar.gz /abrt-2.17.4.tar.gz /abrt-2.17.5.tar.gz /abrt-2.17.6.tar.gz +/abrt-2.17.7.tar.gz diff --git a/abrt.spec b/abrt.spec index a5b19ef..d6cfac9 100644 --- a/abrt.spec +++ b/abrt.spec @@ -56,8 +56,8 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.6 -Release: 10%{?dist} +Version: 2.17.7 +Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -66,7 +66,7 @@ BuildRequires: %{dbus_devel} BuildRequires: hostname BuildRequires: gtk3-devel BuildRequires: glib2-devel >= %{glib_ver} -BuildRequires: rpm-devel >= 4.18 +BuildRequires: rpm-devel >= 6.0.0 BuildRequires: desktop-file-utils BuildRequires: libnotify-devel #why? BuildRequires: file-devel @@ -994,6 +994,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Oct 02 2025 Michal Srb - 2.17.7-1 +- Update to upstream release 2.17.7 +- Fix reading gpg keys with RPM 6.0.0 (rhbz#2396899) + * Fri Sep 19 2025 Python Maint - 2.17.6-10 - Rebuilt for Python 3.14.0rc3 bytecode diff --git a/sources b/sources index 77e5b6a..080308e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.6.tar.gz) = 1e3729187c609f72e6d72c91815fc74e9ff8bed14dd678c093e4c47eafecb4e00fbe0b185e3a1ece614b994302c35de6a171449d5e80157a4fee16ccc7e60277 +SHA512 (abrt-2.17.7.tar.gz) = 0e9c05a897387e20b930b616c58b187dd27f6e3372a9067b77f849d70e59443688022c5ae9fcad5968d8e637c4db7f6b500ddbb5aa59e61872b14867c5c7124a From fb86abde3bc96a04de006b456a59009817cca515 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Thu, 4 Dec 2025 20:32:21 +0100 Subject: [PATCH 317/318] a-a-save-container-data: validate input Resolves: CVE-2025-12744 Signed-off-by: Michal Srb --- .gitignore | 1 + abrt.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cc954d8..643f820 100644 --- a/.gitignore +++ b/.gitignore @@ -86,3 +86,4 @@ abrt-1.1.13.tar.gz /abrt-2.17.5.tar.gz /abrt-2.17.6.tar.gz /abrt-2.17.7.tar.gz +/abrt-2.17.8.tar.gz diff --git a/abrt.spec b/abrt.spec index d6cfac9..94695b0 100644 --- a/abrt.spec +++ b/abrt.spec @@ -56,7 +56,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.17.7 +Version: 2.17.8 Release: 1%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ @@ -994,6 +994,10 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Thu Dec 04 2025 Michal Srb - 2.17.8-1 +- a-a-save-container-data: validate input +- Resolves: CVE-2025-12744 + * Thu Oct 02 2025 Michal Srb - 2.17.7-1 - Update to upstream release 2.17.7 - Fix reading gpg keys with RPM 6.0.0 (rhbz#2396899) diff --git a/sources b/sources index 080308e..4e58c99 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (abrt-2.17.7.tar.gz) = 0e9c05a897387e20b930b616c58b187dd27f6e3372a9067b77f849d70e59443688022c5ae9fcad5968d8e637c4db7f6b500ddbb5aa59e61872b14867c5c7124a +SHA512 (abrt-2.17.8.tar.gz) = 90b74229412e0186bfa109ee940a60c9f3c0f7ce8c1216acad6f05619a1bb591e7f0bae87363143a05034312c9f14fe5ace341b84f680780ceb93a1e624705b3 From 0baf939494e4c94b47b2d746756ce280ff8b85db Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Jan 2026 03:23:57 +0000 Subject: [PATCH 318/318] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- abrt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abrt.spec b/abrt.spec index 94695b0..3bdd3fe 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -994,6 +994,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Fri Jan 16 2026 Fedora Release Engineering - 2.17.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Thu Dec 04 2025 Michal Srb - 2.17.8-1 - a-a-save-container-data: validate input - Resolves: CVE-2025-12744