commit 1bd790ea6a2ab31a3773e2d277e11d9790632acd Author: CentOS Sources Date: Tue Nov 3 06:43:35 2020 -0500 import gnome-abrt-1.2.6-6.el8 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2dd1838 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gnome-abrt-1.2.6.tar.gz diff --git a/.gnome-abrt.metadata b/.gnome-abrt.metadata new file mode 100644 index 0000000..fce06eb --- /dev/null +++ b/.gnome-abrt.metadata @@ -0,0 +1 @@ +08f4079f8091288cd0146e3c3ce9aa1c36109057 SOURCES/gnome-abrt-1.2.6.tar.gz diff --git a/SOURCES/0001-Remove-Expert-mode-and-the-remaining-Analyze-code.patch b/SOURCES/0001-Remove-Expert-mode-and-the-remaining-Analyze-code.patch new file mode 100644 index 0000000..e62aaa2 --- /dev/null +++ b/SOURCES/0001-Remove-Expert-mode-and-the-remaining-Analyze-code.patch @@ -0,0 +1,108 @@ +From 3bb8a093bae73b88c7951d8f8d15f3ec99341b24 Mon Sep 17 00:00:00 2001 +From: Rafal Luzynski +Date: Mon, 21 Aug 2017 11:55:41 +0200 +Subject: [PATCH] Remove Expert mode and the remaining Analyze code + +The Expert mode was originally introduced together with the Analyze +feature by the commit 532cbd4. The Expert mode was intended to hide +the Analyze feature by default and show in only when the Expert mode +is on. Later the commit f5eb93f removed most of the Analyze feature +although some of its code still remained and was unused. At the same +time, probably by mistake, the Expert mode was switched to control +the visibility of the Details context menu item. + +This commit removes the Expert mode which is unused and implemented +incorrectly and any remains of the Analyze feature. Closes #182. +--- + src/gnome-abrt | 3 --- + src/gnome_abrt/controller.py.in | 7 ------- + src/gnome_abrt/oops.glade | 8 -------- + src/gnome_abrt/views.py | 7 ------- + 4 files changed, 25 deletions(-) + +diff --git a/src/gnome-abrt b/src/gnome-abrt +index f8e96e8..b1044d3 100755 +--- a/src/gnome-abrt ++++ b/src/gnome-abrt +@@ -401,8 +401,6 @@ if __name__ == "__main__": + help=_('Be verbose')) + CMDARGS.add_argument('-p', '--problem', + help=_('Selected problem ID')) +- CMDARGS.add_argument('-x', '--expert', action='store_true', +- help=_('Expert mode')) + + OPTIONS = CMDARGS.parse_args() + +@@ -414,7 +412,6 @@ if __name__ == "__main__": + CONF = get_configuration() + # TODO : mark this option as hidden or something like that + CONF.add_option('problemid', default_value=None) +- CONF.add_option('expert', default_value=(OPTIONS.expert)) + + APP_CMDLINE = [] + if 'problem' in VARS: +diff --git a/src/gnome_abrt/controller.py.in b/src/gnome_abrt/controller.py.in +index fc16dc2..86db419 100644 +--- a/src/gnome_abrt/controller.py.in ++++ b/src/gnome_abrt/controller.py.in +@@ -45,13 +45,6 @@ class Controller(object): + + problem.delete() + +- def analyze(self, problem): +- if not problem: +- logging.error("BUG: Controller: Can't open detail of None problem") +- return +- +- self.run_event_fn("open-gui", problem) +- + def _refresh_sources(self): + for name, src in self.sources: + try: +diff --git a/src/gnome_abrt/oops.glade b/src/gnome_abrt/oops.glade +index bbb732b..b8ddb42 100644 +--- a/src/gnome_abrt/oops.glade ++++ b/src/gnome_abrt/oops.glade +@@ -22,14 +22,6 @@ + + + +- +- +- Analy_ze +- Open selected problem for analysis +- +- +- +- + + + D_etails +diff --git a/src/gnome_abrt/views.py b/src/gnome_abrt/views.py +index 82b606f..ec7b211 100644 +--- a/src/gnome_abrt/views.py ++++ b/src/gnome_abrt/views.py +@@ -527,7 +527,6 @@ class OopsWindow(Gtk.ApplicationWindow): + conf.set_watch('T_FMT', self._options_observer) + conf.set_watch('D_T_FMT', self._options_observer) + self._options_observer.option_updated(conf, 'problemid') +- self._builder.mi_detail.set_visible(conf['expert']) + + # enable observer + self._source_observer.enable() +@@ -1001,12 +1000,6 @@ _("This problem has been reported, but a Bugzilla ticket has not" + wrappers.show_problem_details_for_dir( + selected[0].problem_id, self) + +- @handle_problem_and_source_errors +- def on_gac_analyze_activate(self, action): +- selected = self._get_selected(self.lss_problems) +- if selected: +- self._controller.analyze(selected[0]) +- + @handle_problem_and_source_errors + def on_gac_report_activate(self, action): + selected = self._get_selected(self.lss_problems) +-- +2.17.1 + diff --git a/SOURCES/0002-Mark-the-help-command-line-descriptions-for-translat.patch b/SOURCES/0002-Mark-the-help-command-line-descriptions-for-translat.patch new file mode 100644 index 0000000..2cd8d0d --- /dev/null +++ b/SOURCES/0002-Mark-the-help-command-line-descriptions-for-translat.patch @@ -0,0 +1,43 @@ +From bf605d0aaea80f3daf70497417a23058a663d0fe Mon Sep 17 00:00:00 2001 +From: Rafal Luzynski +Date: Mon, 21 Aug 2017 12:28:04 +0200 +Subject: [PATCH] Mark the `--help' command line descriptions for translation + +Due to some bugs xgettext thinks this file is written in C and +ignores the Python syntax. We need some tricks to make it process +the messages correctly. +--- + src/gnome-abrt | 15 +++++++++++++++ + 1 file changed, 15 insertions(+) + +diff --git a/src/gnome-abrt b/src/gnome-abrt +index b1044d3..a99aecf 100755 +--- a/src/gnome-abrt ++++ b/src/gnome-abrt +@@ -397,8 +397,23 @@ if __name__ == "__main__": + + CMDARGS = ArgumentParser( + description=_('View and report application crashes')) ++ # pylint: disable=W0105 ++ ''' ++ Again a trick to make xgettext think we are C language and emit the ++ translators comment correctly. ++ See: bugs.launchpad.net/intltool/+bug/377872 ++ // Translators: This is a description of --verbose command line option ++ // displayed when a user runs: `gnome-abrt --help' ++ _("Be verbose") ++ ''' + CMDARGS.add_argument('-v', '--verbose', action='count', + help=_('Be verbose')) ++ # pylint: disable=W0105 ++ ''' ++ // Translators: This is a description of --problem command line option ++ // displayed when a user runs: `gnome-abrt --help' ++ _("Selected problem ID") ++ ''' + CMDARGS.add_argument('-p', '--problem', + help=_('Selected problem ID')) + +-- +2.17.1 + diff --git a/SOURCES/0003-Translation-updates.patch b/SOURCES/0003-Translation-updates.patch new file mode 100644 index 0000000..8a8c689 --- /dev/null +++ b/SOURCES/0003-Translation-updates.patch @@ -0,0 +1,141 @@ +From 24e89bdda16fd2a315072449b0577093cc945bf6 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 7 Feb 2018 10:39:17 +0100 +Subject: [PATCH] Translation updates + +Signed-off-by: Matej Habrnal +--- + po/cs.po | 17 +++++++++-------- + po/pt_BR.po | 9 +++++---- + po/ru.po | 4 ++-- + 3 files changed, 16 insertions(+), 14 deletions(-) + +diff --git a/po/cs.po b/po/cs.po +index 81619ab..f544adb 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -18,7 +18,7 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-09-05 12:10-0400\n" ++"PO-Revision-Date: 2017-12-14 11:16-0500\n" + "Last-Translator: Daniel Rusek \n" + "Language-Team: čeština \n" + "Language: cs\n" +@@ -53,7 +53,7 @@ msgstr "_Ukončit" + #: ../src/gnome-abrt:350 ../src/gnome-abrt.desktop.in.h:1 + #: ../src/gnome_abrt/views.py:294 + msgid "Problem Reporting" +-msgstr "Hlášení problemů" ++msgstr "Hlášení problémů" + + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" +@@ -218,7 +218,7 @@ msgstr "Reportováno" + + #: ../src/gnome_abrt/oops.glade.h:22 + msgid "No problems detected!" +-msgstr "Žádné problémy nedetekovány!" ++msgstr "Nedetekovány žádné problémy!" + + #: ../src/gnome_abrt/oops.glade.h:23 + msgid "No source selected!" +@@ -340,7 +340,7 @@ msgstr "Fatální selhání systému" + + #: ../src/gnome_abrt/views.py:868 + msgid "The system has encountered a problem and could not continue." +-msgstr "Systém zaznamenal chybu a přestal pracovat" ++msgstr "Systém zaznamenal chybu a přestal pracovat." + + #. Translators: If Application's name is unknown, + #. display neutral header +@@ -364,7 +364,7 @@ msgstr "{0} neočekávaně skončil" + + #: ../src/gnome_abrt/views.py:889 + msgid "The application encountered a problem and could not continue." +-msgstr "Aplikace zaznamenala chybu a přestala pracovat" ++msgstr "Aplikace zaznamenala chybu a přestala pracovat." + + #. Translators: package name not available + #. Translators: package version not available +@@ -388,9 +388,10 @@ msgid "" + "that. Thank you." + msgstr "" + "Tento problém byl již nahlášen, ale dosud nebylo vytvořeno hlášení v " +-"Bugzille. Naši vývojáři můžou potřebovat více informací, aby mohli " +-"vyřešit tento problém. Zvažte prosím také nahlášení do Bugzilly, kde můžete " +-"více informací poskytnout. Děkujeme." ++"Bugzille. Naši vývojáři mohou potřebovat více informací, aby mohli " ++"vyřešit tento problém.\n" ++"Zvažte prosím také nahlášení do Bugzilly, kde můžete více informací " ++"poskytnout. Děkujeme." + + #. Translators: Displayed after 'Reported' if a problem + #. has been reported but we don't know where and when. +diff --git a/po/pt_BR.po b/po/pt_BR.po +index bad9664..a15a908 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -8,6 +8,7 @@ + # Rafael Ferreira , 2012 + # Ricardo Gyorfy , 2011 + # Daniel Lara , 2016. #zanata ++# Fabrício de Lima Farias , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -16,8 +17,8 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-09-06 09:08-0400\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2018-01-30 07:10-0500\n" ++"Last-Translator: Marco Aurélio Krause \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" + "gnome-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" +@@ -155,7 +156,7 @@ msgstr "Envia problema selecionado" + + #: ../src/gnome_abrt/oops.glade.h:5 + msgid "Analy_ze" +-msgstr "Ana_lizar" ++msgstr "Analizar" + + #: ../src/gnome_abrt/oops.glade.h:6 + msgid "Open selected problem for analysis" +@@ -171,7 +172,7 @@ msgstr "Mostrar detalhes técnicos" + + #: ../src/gnome_abrt/oops.glade.h:9 + msgid "_All problems" +-msgstr "Todos os problem_as" ++msgstr "Todos os problemas" + + #: ../src/gnome_abrt/oops.glade.h:10 + msgid "Show all known problems from all system users" +diff --git a/po/ru.po b/po/ru.po +index 6b90bc7..85efeea 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -15,7 +15,7 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-11-10 09:57-0500\n" ++"PO-Revision-Date: 2017-11-29 06:18-0500\n" + "Last-Translator: yuliya \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/gnome-abrt/" + "language/ru/)\n" +@@ -285,7 +285,7 @@ msgstr[2] "{0:d} лет назад" + #: ../src/gnome_abrt/tools.py:115 + #, python-brace-format + msgid "Failed to find icon '{0}'" +-msgstr "Значок «'{0}'» не найден." ++msgstr "Значок «{0}» не найден." + + #: ../src/gnome_abrt/tools.py:122 + #, python-brace-format +-- +2.17.1 + diff --git a/SOURCES/0004-Translation-updates.patch b/SOURCES/0004-Translation-updates.patch new file mode 100644 index 0000000..10f34fe --- /dev/null +++ b/SOURCES/0004-Translation-updates.patch @@ -0,0 +1,11429 @@ +From bb83c0760b483d342f507efb0c4d002b4b575198 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 24 Apr 2018 10:13:31 +0200 +Subject: [PATCH] Translation updates + +Signed-off-by: Matej Habrnal +--- + po/ar.po | 82 +++++++++++++++--------------- + po/as.po | 82 +++++++++++++++--------------- + po/ast.po | 82 +++++++++++++++--------------- + po/bn_IN.po | 82 +++++++++++++++--------------- + po/bs.po | 82 +++++++++++++++--------------- + po/ca.po | 85 ++++++++++++++++--------------- + po/cs.po | 87 +++++++++++++++++--------------- + po/da.po | 87 +++++++++++++++++--------------- + po/de.po | 84 ++++++++++++++++--------------- + po/el.po | 82 +++++++++++++++--------------- + po/en_GB.po | 82 +++++++++++++++--------------- + po/es.po | 87 +++++++++++++++++--------------- + po/et.po | 82 +++++++++++++++--------------- + po/fa.po | 82 +++++++++++++++--------------- + po/fi.po | 82 +++++++++++++++--------------- + po/fr.po | 133 +++++++++++++++++++++++++------------------------ + po/fur.po | 82 +++++++++++++++--------------- + po/gu.po | 82 +++++++++++++++--------------- + po/he.po | 82 +++++++++++++++--------------- + po/hi.po | 82 +++++++++++++++--------------- + po/hu.po | 85 ++++++++++++++++--------------- + po/id.po | 89 +++++++++++++++++---------------- + po/it.po | 82 +++++++++++++++--------------- + po/ja.po | 82 +++++++++++++++--------------- + po/kk.po | 82 +++++++++++++++--------------- + po/km.po | 82 +++++++++++++++--------------- + po/kn.po | 82 +++++++++++++++--------------- + po/ko.po | 82 +++++++++++++++--------------- + po/ml.po | 82 +++++++++++++++--------------- + po/mr.po | 85 ++++++++++++++++--------------- + po/nb.po | 82 +++++++++++++++--------------- + po/nl.po | 85 ++++++++++++++++--------------- + po/nn.po | 82 +++++++++++++++--------------- + po/or.po | 82 +++++++++++++++--------------- + po/pa.po | 82 +++++++++++++++--------------- + po/pl.po | 86 +++++++++++++++++--------------- + po/pt.po | 82 +++++++++++++++--------------- + po/pt_BR.po | 86 +++++++++++++++++--------------- + po/ru.po | 87 +++++++++++++++++--------------- + po/sk.po | 82 +++++++++++++++--------------- + po/sq.po | 87 +++++++++++++++++--------------- + po/sr.po | 82 +++++++++++++++--------------- + po/sr@latin.po | 82 +++++++++++++++--------------- + po/sv.po | 87 +++++++++++++++++--------------- + po/ta.po | 82 +++++++++++++++--------------- + po/te.po | 82 +++++++++++++++--------------- + po/tr.po | 126 ++++++++++++++++++++++++++-------------------- + po/uk.po | 85 ++++++++++++++++--------------- + po/zh_CN.po | 82 +++++++++++++++--------------- + po/zh_TW.po | 82 +++++++++++++++--------------- + 50 files changed, 2243 insertions(+), 2014 deletions(-) + +diff --git a/po/ar.po b/po/ar.po +index 7820366..93f5c96 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -54,6 +54,18 @@ msgstr "أ_نهِ" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "" +@@ -137,81 +149,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "اسم" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "الإصدارة" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "لم يتم إختيار المصدر" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -327,19 +331,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -353,35 +357,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "غير متوفر" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -393,17 +397,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "نعم" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "لا" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/as.po b/po/as.po +index e5570a2..1b4ee3b 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: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -54,6 +54,18 @@ msgstr "প্ৰস্থান কৰক (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "এপ্লিকেচন স্খলনসমূহ চাওক আৰু সংবাদন কৰক" +@@ -146,81 +158,73 @@ msgid "Submits selected problem" + msgstr "এতিয়ালৈকে সংবাদিত সমস্যাসমূহ তালিকাভুক্ত কৰক" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "বিশ্লেষণ কৰক (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "বিশ্লেষণৰ বাবে নিৰ্বাচিত সমস্যা খোলক" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "সকলো সমস্যা (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "সকলো চিস্টেম ব্যৱহাৰকাৰীৰ পৰা জ্ঞাত সমস্যাসমূহ দেখুৱাওক" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "সমস্যাৰ তথ্য ডাইৰেকটৰি খোলক (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "অবিকল্পিত ফাইল চিস্টেম ব্ৰাউছাৰত নিৰ্বাচিত সমস্যা তথ্য ডাইৰেকটৰি খোলে" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "সমস্যাৰ ID ক ক্লিপবৰ্ডলৈ কপি কৰক (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "নিৰ্বাচিত সমস্যাৰ ID ক ক্লিপবৰ্ডত সংৰক্ষণ কৰে" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "নাম" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "সংস্কৰণ" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "সংবাদ" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "কোনো সমস্যা চিনাক্ত কৰা হোৱা নাই!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "কোনো উৎস নিৰ্বাচন কৰা হোৱা নাই!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "কোনো উৎস নাই" + +@@ -321,19 +325,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI ৰ বিৱৰণ ল'ড কৰিবলৈ ব্যৰ্থ" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -347,35 +351,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} সমস্যা চিনাক্ত কৰা হৈছে" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "অপ্ৰযোজ্য" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "সংবাদন কৰিব নোৱাৰি" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "সংবাদসমূহ" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -391,17 +395,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "হয়" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "নহয়" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/ast.po b/po/ast.po +index 0251062..0aee16d 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -49,6 +49,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "" +@@ -132,81 +144,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Informe" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -305,19 +309,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -331,35 +335,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -371,17 +375,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/bn_IN.po b/po/bn_IN.po +index 7902efe..ff7d64c 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -54,6 +54,18 @@ msgstr "প্রস্থান করুন (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "অ্যাপ্লিকেশনের বিপর্যয় সংক্রান্ত তথ্য নিরীক্ষণ ও দায়ের করুন" +@@ -147,81 +159,73 @@ msgid "Submits selected problem" + msgstr "নির্বাচিত সমস্যাগুলি দায়ের করা হবে" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "বিশ্লেষণ করুন (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "বিশ্লেষণের জন্য নির্বাচিত সমস্যাগুলি খুলুন" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "সমস্যা" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "সকল সিস্টেম ব্যবহারকারীদের থেকে প্রাপ্ত সকল সমস্যা প্রদর্শিত হবে" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "সমস্যার ডেটা ডিরেক্টরি খুলুন (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "নির্বাচিত সমস্যার ডেটা ডিরেক্টরি ডিফল্ট ফাইল সিস্টেম ব্রাউজারে খোলে" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "সমস্যার অাইডি ক্লিপবোর্ডে অনুলিপি করুন (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "নির্বাচিত সমস্যার অাইডি ক্লিপবোর্ডে সঞ্চয় করা হয়" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "নাম" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "সংস্করণ" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "রিপোর্ট করা হয়েছে" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "কোনো সমস্যা সনাক্ত করা হয়নি!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "কোনো সোর্স নির্বাচন করা হয়নি!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "কোনো সোর্স নেই" + +@@ -322,19 +326,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI সংজ্ঞা লোড করতে ব্যর্থ" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -348,35 +352,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} সমস্যা সনাক্ত করা হয়েছে" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "রিপোর্ট করা যাবে না" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "রিপোর্টগুলি" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -393,17 +397,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "হ্যাঁ" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "না" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/bs.po b/po/bs.po +index 52a79ad..d61d4b3 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: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -52,6 +52,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Pogledaj i izvijesti aplikacijske padove" +@@ -135,81 +147,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "Problem" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Izvještaj" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -311,19 +315,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -337,35 +341,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -377,17 +381,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/ca.po b/po/ca.po +index 7c86305..ad733ef 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -7,15 +7,16 @@ + # Robert Antoni Buj Gelonch , 2015. #zanata + # Robert Antoni Buj Gelonch , 2016. #zanata + # Julius Milan , 2017. #zanata ++# Robert Antoni Buj Gelonch , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-11-10 09:52-0500\n" ++"PO-Revision-Date: 2018-02-23 03:37-0500\n" + "Last-Translator: Robert Antoni Buj Gelonch \n" + "Language-Team: Catalan (http://www.transifex.com/projects/p/gnome-abrt/" + "language/ca/)\n" +@@ -53,6 +54,18 @@ msgstr "_Surt" + msgid "Problem Reporting" + msgstr "Presentació d'informes del problema" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Sigues detallat" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "ID de problema seleccionat" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Visualitzeu i informeu les panes de les aplicacions" +@@ -151,34 +164,26 @@ msgid "Submits selected problem" + msgstr "Envia el problema seleccionat" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Analit_za" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Obre els problemes seleccionats per a analitzar-los" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etalls" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Mostra els detalls tècnics" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Tots els problemes" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Mostra tots els problemes coneguts per a tots els usuaris del sistema" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Obre el directori de dades del problema" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -186,48 +191,48 @@ msgstr "" + "Obre el directori de dades del problema seleccionat en el navegador de " + "fitxers predeterminat del sistema" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Copia l'Id. del problema al porta-retalls" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Emmagatzema l'Id. del problema seleccionat al porta-retalls" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtre" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Mostra el quadre de filtre" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nom" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versió" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Primer cop detectat" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Es va informar" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "No s'ha detectat cap problema!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "No s'ha seleccionat cap origen!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Sense origen" + +@@ -326,19 +331,19 @@ msgstr "Mal comportament" + msgid "Failed to load UI definition" + msgstr "Error en obrir la definició de la interfície gràfica" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "S'ha produït un error no esperat de sistema" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "El sistema s'ha trobat amb un problema i es va recuperar." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Fallada greu del sistema" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "El sistema s'ha trobat amb un problema i no pot continuar." + +@@ -352,35 +357,35 @@ msgstr "El sistema s'ha trobat amb un problema i no pot continuar." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} problema ha estat detectat" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} va sortir inesperadament" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "L'aplicació s'ha trobat amb un problema i no pot continuar." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/D" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "no es pot informar" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Informes" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -396,17 +401,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "si" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "no" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/cs.po b/po/cs.po +index f544adb..2f4f155 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -10,16 +10,17 @@ + # Jakub Filak , 2016. #zanata + # Zdenek , 2016. #zanata + # Daniel Rusek , 2017. #zanata ++# Zdenek , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-12-14 11:16-0500\n" +-"Last-Translator: Daniel Rusek \n" ++"PO-Revision-Date: 2018-02-20 04:45-0500\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" +@@ -55,6 +56,18 @@ msgstr "_Ukončit" + msgid "Problem Reporting" + msgstr "Hlášení problémů" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Podrobnější výstup" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "ID vybraného problému" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Prohlédněte si a nahlaste chyby aplikací" +@@ -149,82 +162,74 @@ msgid "Submits selected problem" + msgstr "Odešle vybraný problém" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "A_nalyzovat" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Otevřít vybraný problém k analýze" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etaily" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Zobrazí technické detaily" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Všechny problémy" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Zobrazí všechny známé problémy všech uživatelů systému" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Otevřít adresář s daty problému" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + "Otevírá adresář s daty vybraného problému ve výchozím prohlížeči souborů" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Zkopírovat ID problému do schránky" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Ukládá ID vybraného projektu do schránky" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtrovat" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Zobrazí filtrovací tlačítko" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Název" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Verze" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "První výskyt" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Reportováno" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Nedetekovány žádné problémy!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nevybrán žádný zdroj!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Žádný zdroj" + +@@ -326,19 +331,19 @@ msgstr "Neočekávané chování" + msgid "Failed to load UI definition" + msgstr "Selhalo načtení definice UI" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Neočekávaná systémová chyba" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Systém zaznamenal chybu a zotavil se z ní." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Fatální selhání systému" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Systém zaznamenal chybu a přestal pracovat." + +@@ -352,35 +357,35 @@ msgstr "Systém zaznamenal chybu a přestal pracovat." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Problém {0} byl detekován" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} neočekávaně skončil" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Aplikace zaznamenala chybu a přestala pracovat." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "Nedostupné" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "nemůže být nahlášen" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Hlášení" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -397,17 +402,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ano" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ne" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/da.po b/po/da.po +index f769219..c61eb27 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -4,16 +4,17 @@ + # + # Translators: + # scootergrisen , 2017. #zanata ++# scootergrisen , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-04-29 11:46-0400\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2018-03-07 02:15-0500\n" ++"Last-Translator: scootergrisen \n" + "Language-Team: Danish (http://www.transifex.com/projects/p/gnome-abrt/" + "language/da/)\n" + "Language: da\n" +@@ -50,6 +51,18 @@ msgstr "_Afslut" + msgid "Problem Reporting" + msgstr "Problemrapportering" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Vær uddybende" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Valgte problem-ID" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Vis og rapportér programnedbrud" +@@ -143,81 +156,73 @@ msgid "Submits selected problem" + msgstr "Indsend valgte problem" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "A_nalyser" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Åbn valgte problem til analyse" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Detaljer" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Vis tekniske detaljer" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Alle problemer" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Vis alle kendte problemer fra alle systemets brugere" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Åbn problemets datamappe" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "Åbner det valgte problems datamappe i systemets standardfilbrowser" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Kopiér problemets ID til udklipsholderen" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Lagre det valgte problems ID i udklipsholderen" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtrér" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Vis filtreringsboks" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Navn" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Version" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Først registreret" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Rapporteret" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Ingen problemer registreret!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Ingen kilde valgt!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Ingen kilde" + +@@ -316,21 +321,21 @@ msgstr "Dårlig opførsel" + msgid "Failed to load UI definition" + msgstr "Kunne ikke indlæse UI-definition" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Uventet systemfejl" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + "Systemet er stødt på et problem og var i stand til at komme sig over " + "problemet." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Fatal systemfejl" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Systemet er stødt på et problem og kunne ikke fortsætte." + +@@ -344,35 +349,35 @@ msgstr "Systemet er stødt på et problem og kunne ikke fortsætte." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} problem er blevet registreret" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} afsluttede uventede" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Programmet stødte på et problem og kunne ikke fortsætte." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "-" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "kan ikke rapporteres" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Rapporter" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -389,17 +394,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ja" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "nej" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/de.po b/po/de.po +index 3e7974b..f8dbf73 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -10,7 +10,7 @@ + # Laurin , 2011 + # Mario Blättermann , 2011 + # Rainer Gromansperg , 2013 +-# Roman Spirgi , 2015. #zanata ++# Roman Spirgi , 2015. #zanata + # Florian H. , 2016. #zanata + # Jakub Filak , 2016. #zanata + # Lisa Stemmler , 2016. #zanata +@@ -18,7 +18,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -60,6 +60,18 @@ msgstr "_Beenden" + msgid "Problem Reporting" + msgstr "Fehlerberichterstattung" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Applikationsabstürze ansehen und melden" +@@ -158,34 +170,26 @@ msgid "Submits selected problem" + msgstr "Berichtet ausgewählten Fehler" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Analy_sieren" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Ausgewähltes Problem für Analyse öffnen" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etails" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Technische Einzelheiten anzeigen" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Alle Fehler" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Alle bekannten Fehler für alle Systembenutzer anzeigen" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Öffnen Daten-Verzeichnis des Problems" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -193,48 +197,48 @@ msgstr "" + "Öffnet das Daten-Verzeichnis des ausgewählten Problems im Standard Datei-" + "System Browser" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "ID des Problems in Zwischenablage _kopieren" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Speichert die ID des ausgewählten Problems in der Zwischenablage" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filter" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Filterbox anzeigen" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Name" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Version" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Zuerst erkannt" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Berichtet" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Keine Probleme festgestellt!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Kein Quelle festgelegt!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Keine Quelle" + +@@ -333,21 +337,21 @@ msgstr "Fehlverhalten" + msgid "Failed to load UI definition" + msgstr "Fehler beim Laden der UI Definition" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Unerwarteter Systemfehler" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + "Das System ist auf einen Fehler gestoßen und hat sich selber wieder " + "hergestellt." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Fataler Systemfehler" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + "Das System ist auf einen Fehler gestoßen und kann nicht fortgeführt werden." +@@ -362,17 +366,17 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} Problem wurde festgestellt" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} wurde unerwartet beendet" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + "Die Anwendung ist auf einen Fehler gestoßen und kann nicht fortgeführt " +@@ -380,19 +384,19 @@ msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "kann nicht berichtet werden" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Berichte" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -409,17 +413,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ja" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "nein" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/el.po b/po/el.po +index 1f43d2f..b9ad8a1 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -49,6 +49,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Προβολή και αναφορά κατάρρευσης εφαρμογών" +@@ -132,81 +144,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -305,19 +309,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -331,35 +335,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -371,17 +375,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/en_GB.po b/po/en_GB.po +index 28baf3f..8e558b1 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -49,6 +49,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "View and report application crashes" +@@ -132,81 +144,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -305,19 +309,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -331,35 +335,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -371,17 +375,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/es.po b/po/es.po +index d47a7d5..9fa8e81 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -16,16 +16,17 @@ + # Máximo Castañeda Riloba , 2015. #zanata + # Máximo Castañeda Riloba , 2016. #zanata + # William Moreno Reyes , 2016. #zanata ++# Máximo Castañeda Riloba , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-09-08 07:20-0400\n" +-"Last-Translator: William Moreno Reyes \n" ++"PO-Revision-Date: 2018-02-19 03:39-0500\n" ++"Last-Translator: Máximo Castañeda Riloba \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/gnome-abrt/" + "language/es/)\n" + "Language: es\n" +@@ -62,6 +63,18 @@ msgstr "_Salir" + msgid "Problem Reporting" + msgstr "Informe de Errores" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Añadir detalle" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Identificador del problema" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Vea e informe de cuelgues de aplicaciones" +@@ -160,35 +173,27 @@ msgid "Submits selected problem" + msgstr "Envía el problema seleccionado" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Anali_zar" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Abrir el problema seleccionado para su análisis" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etalles" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Mostrar detalles técnicos" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Todos los problemas" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + "Mostrar todos los problemas conocidos de todos los usuarios del sistema" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Abrir la carpeta de datos del problema" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -196,48 +201,48 @@ msgstr "" + "Abre la carpeta de datos del problema en el navegador de archivos " + "predeterminado" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Copiar ID del problema en el portapapeles" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Copia el ID del problema seleccionado en el portapapeles" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtrar" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Mostrar filtros" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nombre" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versión" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Primera vez" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Informado" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "No se detectaron problemas" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "No se seleccionó ninguna fuente" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Sin fuente" + +@@ -336,19 +341,19 @@ msgstr "Mal comportamiento" + msgid "Failed to load UI definition" + msgstr "No se pudo cargar la definición del IU" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Error inesperado del sistema" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "El sistema acaba de recuperarse de un problema" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Error fatal del sistema" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "El problame ha sufrido un problema y no puede continuar" + +@@ -362,35 +367,35 @@ msgstr "El problame ha sufrido un problema y no puede continuar" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Se ha detectado {0} problema" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} se cerró inesperadamente" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "La aplicación ha sufrido un problema y no ha podido continuar" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "no se puede informar" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Informes" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -407,17 +412,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "sí" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "no" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/et.po b/po/et.po +index afe5dda..2483383 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -50,6 +50,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "" +@@ -133,81 +145,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nimi" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versioon" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -306,19 +310,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -332,35 +336,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "Pole" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -372,17 +376,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "jah" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ei" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/fa.po b/po/fa.po +index 2f32ec4..9409bba 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -49,6 +49,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "دیدن و گزارش شکستهای برنامه" +@@ -132,81 +144,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -302,19 +306,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -328,35 +332,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -368,17 +372,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/fi.po b/po/fi.po +index c3f44a2..eee5f82 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -50,6 +50,18 @@ msgstr "_Lopeta" + msgid "Problem Reporting" + msgstr "Vikailmoitin" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Katsele ja raportoi ohjelmien kaatumisia" +@@ -137,34 +149,26 @@ msgid "Submits selected problem" + msgstr "Ilmoittaa valitun ongelman" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "_Analysoi" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Avaa valitun ongelman analysointia varten" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Tiedot" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Näytä tekniset tiedot" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Kaikki ongelmat" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Näytä kaikki tunnetut ongelmat kaikilta järjestelmäkäyttäjiltä" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Avaa ongelman datakansio" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -172,48 +176,48 @@ msgstr "" + "Avaa valitun ongelman datakansion oletusarvoisessa " + "tiedostonhallintasovelluksessa" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Kopioi ongelman tunniste leikepöydälle" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Tallettaa valitun ongelman tunnisteen leikepöydälle" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Suodata" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Näyttää suodatustoiminnon" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nimi" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versio" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Ensimmäinen havainto" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Ilmoitettu" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Ei havaittuja ongelmia!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Ei lähdettä valittuna!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Ei lähdettä" + +@@ -312,19 +316,19 @@ msgstr "Huonosti käyttäminen" + msgid "Failed to load UI definition" + msgstr "Käyttöliittymämääritysten lataaminen epäonnistui" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Odottamaton järjestelmävirhe" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Järjestelmä on kohdannut ongelman ja palautunut." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Kohtalokas järjestelmävirhe" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Järjestelmä kohtasi ongelman eikä voinut jatkaa toimintaa." + +@@ -338,35 +342,35 @@ msgstr "Järjestelmä kohtasi ongelman eikä voinut jatkaa toimintaa." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "\"{0}\"-ongelma havaittu" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} sulkeutui odottamatta" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Sovellus kohtasi virheen eikä voinut jatkaa toimintaansa." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "-" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "ei voida ilmoittaa" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Ilmoitukset" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -381,17 +385,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "kyllä" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ei" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/fr.po b/po/fr.po +index 7828e1d..5652214 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -8,15 +8,16 @@ + # Jakub Filak , 2016. #zanata + # Jean-Baptiste Holcroft , 2016. #zanata + # Julie Carbone , 2016. #zanata ++# Jean-Baptiste Holcroft , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-03-29 06:59-0400\n" ++"PO-Revision-Date: 2018-03-04 09:03-0500\n" + "Last-Translator: Jean-Baptiste Holcroft \n" + "Language-Team: French (http://www.transifex.com/projects/p/gnome-abrt/" + "language/fr/)\n" +@@ -54,20 +55,32 @@ msgstr "_Quitter" + msgid "Problem Reporting" + msgstr "Signalement de problèmes" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Verbeux" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "ID du problème sélectionné" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "Visualiser et signaler les incidents de l'application" ++msgstr "Visualiser et signaler les incidents de l’application" + + #: ../src/gnome-abrt.desktop.in.h:3 + msgid "abrt;bug reporting;crash logger;" +-msgstr "abrt;signalement de bugs;enregistreur d'incidents;" ++msgstr "abrt;signalement de bugs;enregistreur d’incidents;" + + #: ../src/gnome-abrt.appdata.xml.in.h:1 + msgid "" + "Collection of software tools designed for collecting, analyzing and " + "reporting of software issues." + msgstr "" +-"Ensemble d'outils logiciels conçus pour collecter, analyser et rapporter les " ++"Ensemble d’outils logiciels conçus pour collecter, analyser et rapporter les " + "problèmes de logiciel." + + #: ../src/gnome-abrt.appdata.xml.in.h:2 +@@ -76,43 +89,43 @@ msgid "" + "solution." + msgstr "" + "Son but principal est de faciliter les processus de rapport de problèmes et " +-"de découverte d'une solution." ++"de découverte d’une solution." + + #: ../src/gnome_abrt/dbus_problems.py:89 + #, python-brace-format + msgid "Can't add receiver of signal '{0}'on DBus system path '{1}': {2}" + msgstr "" +-"Impossible d'ajouter le destinataire du signal « {0} » sur le chemin du " ++"Impossible d’ajouter le destinataire du signal « {0} » sur le chemin du " + "système DBus « {1} » : {2}" + + #: ../src/gnome_abrt/dbus_problems.py:102 + #, python-brace-format + msgid "Can't connect to DBus system bus '{0}' path '{1}': {2}" + msgstr "" +-"Impossible d'établir la connexion au bus du système DBus « {0} », chemin " ++"Impossible d’établir la connexion au bus du système DBus « {0} », chemin " + "« {1} » : {2}" + + #: ../src/gnome_abrt/dbus_problems.py:109 + #, python-brace-format + msgid "Can't get interface '{0}' on path '{1}' in bus '{2}': {3}" + msgstr "" +-"Impossible d'obtenir l'interface « {0} » sur le chemin « {1} » dans le bus " ++"Impossible d’obtenir l’interface « {0} » sur le chemin « {1} » dans le bus " + "« {2} » : {3}" + + #: ../src/gnome_abrt/dbus_problems.py:153 + msgid "Can't chown problem '{0}' over DBus service: {1!s}" + msgstr "" +-"Impossible d'utiliser chown pour le problème « {0} » sur le service DBus : " ++"Impossible d’utiliser chown pour le problème « {0} » sur le service DBus : " + "{1!s}" + + #: ../src/gnome_abrt/dbus_problems.py:168 + msgid "Can't get problem data from DBus service: {0!s}" + msgstr "" +-"Impossible d'obtenir les données problématiques du service DBus : {0!s}" ++"Impossible d’obtenir les données problématiques du service DBus : {0!s}" + + #: ../src/gnome_abrt/dbus_problems.py:179 + msgid "Can't get list of problems from DBus service: {0!s}" +-msgstr "Impossible d'obtenir la liste des problèmes du service DBus : {0!s}" ++msgstr "Impossible d’obtenir la liste des problèmes du service DBus : {0!s}" + + #: ../src/gnome_abrt/dbus_problems.py:192 + msgid "Can't delete problem over DBus service: {0!s}" +@@ -131,13 +144,13 @@ msgstr "" + "dans « {0} ». La limite peut être augmentée en configurant inotify " + "correctement. Pour plus de détails, voir les pages man inotify(7). Cet " + "événement fait que vous ne serez pas notifié des changements de données " +-"problématiques se déroulant hors de l'application. Cet événement n'affecte " ++"problématiques se déroulant hors de l’application. Cet événement n’affecte " + "aucune autre fonctionnalité." + + #: ../src/gnome_abrt/directory_problems.py:262 + #, python-brace-format + msgid "Can't open directory: '{0}'" +-msgstr "Impossible d'ouvrir le répertoire : « {0} »" ++msgstr "Impossible d’ouvrir le répertoire : « {0} »" + + #: ../src/gnome_abrt/oops.glade.h:1 + msgid "_Delete" +@@ -156,35 +169,27 @@ msgid "Submits selected problem" + msgstr "Soumettre les problèmes sélectionnés" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Anal_yser" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Ouvrir le problème sélectionné pour l'analyser" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Détails" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Afficher les détails techniques" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Tous les problèmes" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + "Afficher tous les problèmes connus de tous les utilisateurs du système" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Ouvrir le répertoire de données du problème" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -192,48 +197,48 @@ msgstr "" + "Ouvre le répertoire de données du problème sélectionné dans le navigateur " + "par défaut du système de fichiers" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" +-msgstr "Impossible de _copier l'ID du problème sur le presse-papier" ++msgstr "Impossible de _copier l’ID du problème sur le presse-papier" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" +-msgstr "Stocke l'ID du problème sélectionné dans le presse-papier" ++msgstr "Stocke l’ID du problème sélectionné dans le presse-papier" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtre" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Afficher le champ de filtre" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nom" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Version" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Première détection" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Rapporté" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Aucun problème détecté !" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Aucune source sélectionnée !" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Aucune source" + +@@ -279,7 +284,7 @@ msgstr[1] "Il y a {0:d} mois" + + #: ../src/gnome_abrt/tools.py:80 + msgid "Last year" +-msgstr "L'année dernière" ++msgstr "L’année dernière" + + #. Translators: This message will never be used for less than + #. 2 years ago. However, the singular form is necessary for some +@@ -295,12 +300,12 @@ msgstr[1] "Il y a {0:d} ans" + #: ../src/gnome_abrt/tools.py:115 + #, python-brace-format + msgid "Failed to find icon '{0}'" +-msgstr "Impossible de trouver l'icône '{0}'." ++msgstr "Impossible de trouver l’icône ’{0}’." + + #: ../src/gnome_abrt/tools.py:122 + #, python-brace-format + msgid "Failed to load icon '{0}': {1}" +-msgstr "impossible de charger l'icône '{0}': {1}" ++msgstr "impossible de charger l’icône ’{0}’: {1}" + + #. Translators: if the kernel crashed we display the word "System" + #. instead of "kernel". In this context "System" is like a proper +@@ -314,7 +319,7 @@ msgstr "Système" + #. list under the application name + #: ../src/gnome_abrt/views.py:154 + msgid "Application Crash" +-msgstr "Incident d'application" ++msgstr "Incident d’application" + + #: ../src/gnome_abrt/views.py:156 + msgid "System Crash" +@@ -330,23 +335,23 @@ msgstr "Dérèglement" + + #: ../src/gnome_abrt/views.py:320 + msgid "Failed to load UI definition" +-msgstr "Échec du chargement de la définition de l'interface utilisateur" ++msgstr "Échec du chargement de la définition de l’interface utilisateur" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Erreur inattendue sur le système" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Le système a rencontré un problème et a pu récupérer" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Échec fatal du Système" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." +-msgstr "Le système a rencontré un problème et n'a pas pu continuer" ++msgstr "Le système a rencontré un problème et n’a pas pu continuer" + + #. Translators: If Application's name is unknown, + #. display neutral header +@@ -358,43 +363,43 @@ msgstr "Le système a rencontré un problème et n'a pas pu continuer" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} incident a été détecté" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} a quitté brusquement" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." +-msgstr "L'application a rencontré un problème et n'a pas pu continuer" ++msgstr "L’application a rencontré un problème et n’a pas pu continuer" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "ne peut pas être rapporté" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Rapports" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" + "Please consider also reporting it to Bugzilla in order to provide " + "that. Thank you." + msgstr "" +-"Ce problème a été rapporté, mais aucun ticket Bugzilla n'a été ouvert." +-" Nos développeurs pourraient avoir besoin de plus d'informations pour " ++"Ce problème a été rapporté, mais aucun ticket Bugzilla n’a été ouvert." ++" Nos développeurs pourraient avoir besoin de plus d’informations pour " + "corriger le problème.\n" + "Veuillez envisager de le rapporter sur Bugzilla pour fournir ces " + "informations. Merci de votre aide." +@@ -403,20 +408,20 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "oui" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "non" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" + msgstr "" +-"Échec de l'exécution de l'action requise à cause d'une erreur dans le " ++"Échec de l’exécution de l’action requise à cause d’une erreur dans le " + "processus de création" +diff --git a/po/fur.po b/po/fur.po +index 2208251..992186f 100644 +--- a/po/fur.po ++++ b/po/fur.po +@@ -3,7 +3,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -44,6 +44,18 @@ msgstr "_Jes" + msgid "Problem Reporting" + msgstr "Segnalazion erôrs" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Visualize e segnale i colàs des aplicazions" +@@ -143,34 +155,26 @@ msgid "Submits selected problem" + msgstr "Al invie il probleme selezionât" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Anali_ze" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Vierç il probleme selezionât pe analisi" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etais" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Mostre detais tecnics" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Ducj i problemis" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Mostre ducj i problemis cognossûts di ducj i utents dal sisteme" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Vierç la cartele dai dâts dal probleme" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -178,48 +182,48 @@ msgstr "" + "Al vierç la cartele dai dâts dal probleme selezionât intal esploradôr " + "predefinît dai file dal sisteme" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Copie il ID dal probleme intes notis" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Al memorize il ID dal probleme selezionât intes notis" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtre" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Mostre i filtris" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Non" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Version" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Rilevât pe prime volte" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Segnalât" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Nissun probleme rilevât!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nissun sorzint selezionât!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Nissun sorzint" + +@@ -318,19 +322,19 @@ msgstr "Compuartament sbaliât" + msgid "Failed to load UI definition" + msgstr "Cjariament de definizion de interface utent falît" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Erôr di sisteme inspietât" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Il sisteme si è ripiât dopo vê rilevât un probleme." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Vuast fatâl dal sisteme" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Il sisteme al à rilevât un probleme e nol pues continuâ." + +@@ -344,35 +348,35 @@ msgstr "Il sisteme al à rilevât un probleme e nol pues continuâ." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Al è stât rilevât un probleme {0}" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} jessût in maniere inspietade" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "La aplicazion e à rilevât un probleme e no pues continuâ." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/D" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "nol pues jessi segnalât" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Segnalazions" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -389,17 +393,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "sì" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "no" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/gu.po b/po/gu.po +index 48a3f77..73b9884 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -54,6 +54,18 @@ msgstr "બહાર નીકળો (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "કાર્યક્રમ તૂટવાનું દર્શાવો અને અહેવાલ કરો" +@@ -147,81 +159,73 @@ msgid "Submits selected problem" + msgstr "પસંદ થયેલ સમસ્યાને સમાવે છે" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "વિશ્ર્લેષણ કરો (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "વિશ્ર્લેષણ કરવા માટે પસંદ થયેલ સમસ્યાને ખોલો" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "બધી સમસ્યાઓ (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "બધા સિસ્ટમ વપરાશકર્તાઓમાંથી બધી જાણીતી સમસ્યાઓને બતાવો" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "સમસ્યાની માહિતી ડિરેક્ટરીને ખોલો (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "મૂળબૂત ફાઇલ સિસ્ટમ બ્રાઉઝરમાં પસંદ થયેલ સમસ્યાની માહિતીને ખોલે છે" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "ક્લિપબોર્ડમાં સમસ્યાની ID ની નકલ કરો (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "ક્લિપબોર્ડમાં પસંદ થયેલ સમસ્યાની ID નો સંગ્રહ થાય છે" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "નામ" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "આવૃત્તિ" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "અહેવાલ થયેલ" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "સમસ્યા મળી નથી!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "સ્ત્રોત પસંદ થયેલ નથી!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "સ્ત્રોત નથી" + +@@ -322,19 +326,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI વ્યાખ્યા લાવવામાં નિષ્ફળ" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -348,35 +352,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} સમસ્યાને શોધી દેવામાં આવી છે" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "અહેવાલ આપી શકાય નહિ" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "અહેવાલો" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -393,17 +397,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "હાં" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ના" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/he.po b/po/he.po +index d62dce2..eea3839 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -50,6 +50,18 @@ msgstr "י_ציאה" + msgid "Problem Reporting" + msgstr "דיווח על בעיות" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "דיווח על קריסת יישומים וצפייה בהם" +@@ -137,81 +149,73 @@ msgid "Submits selected problem" + msgstr "שליחת הבעיות שנבחרו" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "ני_תוח" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "פתיחת הבעיות הנבחרות לניתוח" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "פ_רטים" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "הצגת פרטים טכניים" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_כל הבעיות" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "הצגת כל הבעיות הידועות מכל המשתמשים במערכת" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_פתיחת תיקיית נתוני הבעיה" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "פתיחת תיקיית נתוני הבעיה שנבחרה בדפדפן מערכת הקבצים" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_העתקת מזהה הבעיה ללוח הגזירים" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "אחסון מזהה הבעיה שנבחרה בלוח הגזירים" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_סינון" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "הצגת תיבת סינון" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "שם" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "גרסה" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "נתגלתה לראשונה" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "דווחה" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "לא נתגלו בעיות!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "לא נבחר מקור!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "אין מקור" + +@@ -313,19 +317,19 @@ msgstr "התנהגות לא נאותה" + msgid "Failed to load UI definition" + msgstr "טעינת הגדרת ממשק המשתמש נכשלה" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "שגיאת מערכת לא צפויה" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "המערכת נתקלה בבעיה והחלימה." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "כשל מערכתי חמור" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "המערכת נתקלה בבעיה ואינה יכולה להמשיך." + +@@ -339,35 +343,35 @@ msgstr "המערכת נתקלה בבעיה ואינה יכולה להמשיך." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "התגלתה בעית {0}" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} הסתיים במפתיע" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "היישום נתקל בבעיה ואינו יכול להמשיך." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "לא זמין" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "לא ניתן לדווח" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "דיווחים" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -382,17 +386,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "כן" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "לא" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/hi.po b/po/hi.po +index 650a113..33a191f 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -55,6 +55,18 @@ msgstr "बाहर (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "अनुप्रयोग क्रैश को देखें और रिपोर्ट करें" +@@ -144,81 +156,73 @@ msgid "Submits selected problem" + msgstr "चुनी समस्या सौपें" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "विश्लेषित करें (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "विश्लेषण के लिए चुने गए समस्या खोलें" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "सभी समस्या (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "सभी तंत्र उपयोक्ता के लिए सभी ज्ञात समस्या को दिखाएँ" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "समस्या की डाटा निर्देशिका खोलें (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "चुने गए समस्या की डाटा निर्देशिका को तयशुदा फ़ाइल तंत्र में खोलता है" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "क्लिपबोर्ड में समस्या की नक़ल लेता है (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "चुने समस्या ID को क्लिपबोर्ड में जमा करता है" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "नाम" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "संस्करण" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "रिपोर्ट किया गया" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "कोई समस्या नहीं मिली!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "कोई स्रोत नहीं चुना गया!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "कोई स्रोत नहीं" + +@@ -319,19 +323,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "यूआइ परिभाषा लोड करने में असफल" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -345,35 +349,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} समस्या आयी" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "लागू नहीं" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "रिपोर्ट नहीं किया जा सकता है" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "रिपोर्ट" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -389,17 +393,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "हाँ" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "नहीं" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/hu.po b/po/hu.po +index 80696cc..0e525e5 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -4,15 +4,16 @@ + # + # Translators: + # Meskó Balázs , 2016. #zanata ++# Meskó Balázs , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-03-07 01:03-0500\n" ++"PO-Revision-Date: 2018-02-18 03:02-0500\n" + "Last-Translator: Meskó Balázs \n" + "Language-Team: Hungarian (http://www.transifex.com/projects/p/gnome-abrt/" + "language/hu/)\n" +@@ -50,6 +51,18 @@ msgstr "_Kilépés" + msgid "Problem Reporting" + msgstr "Hibajelentés" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Legyen részletes" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Kiválasztott problémaazonosító" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Alkalmazás összeomlások megtekintése és jelentése" +@@ -149,35 +162,27 @@ msgid "Submits selected problem" + msgstr "Kiválasztott probléma elküldése" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Elem_zés" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "A kiválasztott probléma megnyitása elemzésre" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Részletek" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Technikai részletek megjelenítése" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "Összes _probléma" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + "Az összes ismert probléma megjelenítése a rendszer összes felhasználójától" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "A probléma adatkönyvtárának _megnyitása" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -185,48 +190,48 @@ msgstr "" + "Megnyitja a kiválasztott probléma adatkönyvtárát az alapértelmezett " + "fájlböngészőben" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "A problémaazonosító _másolása a vágólapra" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Eltárolja a kiválasztott probléma azonosítóját a vágólapon" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Szűrés" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Szűrő doboz megjelenítése" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Név" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Verzió" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Elsőként észlelt" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Jelentve" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Nem található probléma!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nincs forrás kiválasztva!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Nincs forrás" + +@@ -325,19 +330,19 @@ msgstr "Helytelen viselkedés" + msgid "Failed to load UI definition" + msgstr "Az UI definíció betöltése sikertelen" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Váratlan rendszerhiba" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "A rendszer problémába ütközött és helyreállt." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Végzetes rendszerhiba" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "A rendszer problémába ütközött, és nem tudott helyreállni." + +@@ -351,35 +356,35 @@ msgstr "A rendszer problémába ütközött, és nem tudott helyreállni." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} probléma felfedezve" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} váratlanul kilépett" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Az alkalmazás problémába ütközött, és nem tudott folytatódni." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "nem jelenthető" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Jelentések" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -396,17 +401,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "igen" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "nem" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/id.po b/po/id.po +index 8c8ac87..0552f0d 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -4,15 +4,16 @@ + # + # Translators: + # Andika Triwidada , 2017. #zanata ++# Andika Triwidada , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-08-05 08:15-0400\n" ++"PO-Revision-Date: 2018-02-13 08:31-0500\n" + "Last-Translator: Andika Triwidada \n" + "Language-Team: Indonesian (http://www.transifex.com/projects/p/gnome-abrt/" + "language/id/)\n" +@@ -50,13 +51,25 @@ msgstr "_Keluar" + msgid "Problem Reporting" + msgstr "Pelaporan Masalah" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Lebih cerewet" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Pilih ID masalah" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" +-msgstr "Lihat dan laporkan crash applikasi" ++msgstr "Lihat dan laporkan crash aplikasi" + + #: ../src/gnome-abrt.desktop.in.h:3 + msgid "abrt;bug reporting;crash logger;" +-msgstr "abrt;bug reporting;crash logger;" ++msgstr "abrt;pelaporan bug;crash logger;" + + #: ../src/gnome-abrt.appdata.xml.in.h:1 + msgid "" +@@ -144,82 +157,74 @@ msgid "Submits selected problem" + msgstr "Kirim masalah yang dipilih" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Anali_sis" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Buka masalah yang dipilih untuk analisis" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "Rin_cian" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Tampilkan rincian teknis" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "Semu_a masalah" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Tampilkan semua masalah yang diketahui dari semua pengguna sistem" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "Buka direkt_ori data masalah" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + "Buka direktori data masalah yang dipilih dalam peramban sistem berkas baku" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "Salin ID masalah ke Papan _Klip" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Menyimpan ID masalah yang dipilih dalam Papan Klip" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Penyaring" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Tampilkan kotak saringan" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nama" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versi" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Pertama Terdeteksi" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Dilaporkan" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Tidak ada masalah yang terdeteksi!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Tidak ada sumber yang dipilih!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Tidak ada sumber" + +@@ -315,19 +320,19 @@ msgstr "Kelakuan Buruk" + msgid "Failed to load UI definition" + msgstr "Gagal memuat definisi UI" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Kesalahan sistem yang tidak diduga" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Sistem telah menemui suatu masalah dan pulih." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Kegagalan sistem yang fatal" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Sistem menemui suatu masalah dan tidak dapat melanjutkan." + +@@ -341,35 +346,35 @@ msgstr "Sistem menemui suatu masalah dan tidak dapat melanjutkan." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} masalah telah terdeteksi" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} keluar secara tak terduga" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Aplikasi menemui suatu masalah dan tidak dapat melanjutkan." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "T/T" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "tidak bisa dilaporkan" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Laporan" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -386,17 +391,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ya" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "tidak" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/it.po b/po/it.po +index c6d4e65..05e3426 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -52,6 +52,18 @@ msgstr "_Esci" + msgid "Problem Reporting" + msgstr "Segnalazione errori" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Visualizza e notifica i crash dell'applicazione" +@@ -152,34 +164,26 @@ msgid "Submits selected problem" + msgstr "Invia il problema selezionato" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Anali_zza" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Apri il problema selezionato per una analisi" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Dettagli" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Mostra dettagli tecnici" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Tutti i problemi" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Mostra tutti i problemi conosciuto di tutti gli utenti del sistema" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Apri la directory dei dati del problema" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -187,48 +191,48 @@ msgstr "" + "Apre la directory dei dati del problema selezionata nel browser del file " + "system predefinito" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Copia ID del problema negli appunti" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Archivi l'ID del problema selezionato negli appunti" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtra" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Mostra i filtri" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nome" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versione" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Rilevato per la prima volta" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Riportato" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Nessun problema rilevato!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nessun sorgente selezionato!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Nessun sorgente" + +@@ -327,19 +331,19 @@ msgstr "Comportamento errato" + msgid "Failed to load UI definition" + msgstr "Caricamento definizione UI fallito" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Errore di sistema inaspettato" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Il sistema ha rilevato e ripristinato un errore." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Errore di sistema fatale" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Il sistema ha riscontrato un errore e non può continuare." + +@@ -353,35 +357,35 @@ msgstr "Il sistema ha riscontrato un errore e non può continuare." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "È stato rilevato {0} problema" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} terminato inaspettatamente" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "L'applicazione ha riscontrato un errore e non può continuare." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "impossibile da riportare" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Riporti" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -397,17 +401,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "si" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "no" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/ja.po b/po/ja.po +index 5baf234..9201c62 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -19,7 +19,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -61,6 +61,18 @@ msgstr "終了 (_Q)" + msgid "Problem Reporting" + msgstr "問題の報告" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "アプリケーションクラッシュの表示とレポート" +@@ -147,81 +159,73 @@ msgid "Submits selected problem" + msgstr "選択した問題をサブミット" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "分析 (_Z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "選択した問題を分析するため開きます" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "詳細(_E)" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "技術的な詳細の表示" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "すべての問題(_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "全システムユーザーの既知の問題をすべて表示" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "問題のデータディレクトリを開く (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "選択した問題のデータディレクトリをデフォルトのファイルシステムブラウザで開きます" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "問題の ID をクリップボードにコピー (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "選択した問題の ID をクリップボードに保存します" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "フィルター(_F)" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "フィルターボックスの表示" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "名前" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "バージョン" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "最初に検出された日付け" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "報告済み" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "問題は検出されませんでした!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "ソースが選択されていません!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "ソースがありません" + +@@ -317,19 +321,19 @@ msgstr "不正な動作" + msgid "Failed to load UI definition" + msgstr "UI 定義の読み込みに失敗しました" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "予期しないシステムエラー" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "システムが問題に遭遇したので回復しました。" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "致命的なシステム障害" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "システムが問題に遭遇したので続行できません。" + +@@ -343,35 +347,35 @@ msgstr "システムが問題に遭遇したので続行できません。" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} 件の問題が検出されました" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} が予期せず終了しました" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "アプリケーションが問題に遭遇したので続行できません。" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "該当なし" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "報告できません" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "報告" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -386,17 +390,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "はい" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "いいえ" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/kk.po b/po/kk.po +index 5b0adce..77cabdb 100644 +--- a/po/kk.po ++++ b/po/kk.po +@@ -3,7 +3,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -44,6 +44,18 @@ msgstr "_Шығу" + msgid "Problem Reporting" + msgstr "Мәселелерді хабарлау" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "" +@@ -127,81 +139,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -297,19 +301,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -323,35 +327,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -363,17 +367,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/km.po b/po/km.po +index ce69e56..769d253 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -4,7 +4,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -45,6 +45,18 @@ msgstr "_ចាកចេញ" + msgid "Problem Reporting" + msgstr "_ការរាយការណ៍បញ្ហា" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "បង្ហាញ និងរាយការណ៍អំពីការមិនដំណើរការរបស់កម្មវិធី" +@@ -136,82 +148,74 @@ msgid "Submits selected problem" + msgstr "ដាក់ស្នើរបញ្ហាដែលបានជ្រើសរើស" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Analy_ze" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "បើកបញ្ហាដែលបានជ្រើសរើសសម្រាប់វិភាគ" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etails" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "បង្ហាញបច្ចេកទេសលម្អិត" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_បញ្ហាទាំងអស់" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "បង្ហាញបញ្ហាដែលស្គាល់ ពីអ្នកប្រប្រាស់ប្រព័ន្ធទាំងអស់" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_បើកថតផ្ទុកបញ្ហារបស់ទិន្នន័យ" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + "បើកថតបញ្ហាទិន្នន័យដែលបានជ្រើសរើសក្នុង កម្មវិធីរុករកប្រព័ន្ធឯកសារតាមលំនាំដើម" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "ថតចម្លងលេខសម្គាល់របស់បញ្ហាទៅកាន់ក្ដារក្ដារតម្បៀតខ្ទាស់" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "រក្សាទុកលេខសម្គាល់របស់បញ្ហដែលបានជ្រើសរើស ក្នុងក្ដារតម្បៀតខ្ទាស់" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_តម្រង" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "បង្ហាញប្រអប់តម្រង" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "ឈ្មោះ" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "កំណែ" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "បានរាយការណ៍" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "គ្មានបញ្ហាណាមួយត្រូវបានរកឃើញ!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "គ្មានប្រភពណាមួយត្រូវបានជ្រើសរើស!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "គ្មានប្រភព" + +@@ -309,19 +313,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "បរាជ័យក្នុងការផ្ទុក និយមន័យ UI" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "កំហុសប្រព័ន្ធដែលមិនបានរំពឹងទុក" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "ប្រព័ន្ធបានជួបប្រទះបញ្ហា និង បានយកមកវិញ ។" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "ប្រព័ន្ធត្រូវបានបរាជ័យយ៉ាងធ្ងន់ធ្ងរ" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "ប្រព័ន្ធបានជួបនឹងបញ្ហានិងមិនអាចបន្ដទៅមុខ ។" + +@@ -335,35 +339,35 @@ msgstr "ប្រព័ន្ធបានជួបនឹងបញ្ហានិ + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} បញ្ហាត្រូវបានរកឃើញ" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} ចាកចេញដោយមិនបានរំពឹងទុក" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "កម្មវិធីជួបប្រទះនិឹងបញ្ហា ហើយមិនអាចបន្ដទៅមុខបាន ។" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "មិនអាចរកបាន" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "មិនអាចរាយការណ៍បាន" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "ការរាយការណ៍" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -379,17 +383,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "បាទ​/ចាស" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ទេ" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/kn.po b/po/kn.po +index fca5d2c..4ccbf4e 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -54,6 +54,18 @@ msgstr "ನಿರ್ಗಮಿಸು (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "ಅನ್ವಯದ ಕುಸಿತವನ್ನು ನೋಡಿ ಹಾಗು ವರದಿ ಮಾಡಿ" +@@ -150,34 +162,26 @@ msgid "Submits selected problem" + msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ತೊಂದರೆಯನ್ನು ಸಲ್ಲಿಸು" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "ವಿಶ್ಲೇಷಿಸು (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ತೊಂದರೆಯನ್ನು ವಿಶ್ಲೇಷಣೆಗಾಗಿ ತೆರೆಯಿರಿ" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "ಎಲ್ಲಾ ತೊಂದರೆಗಳು (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "ಎಲ್ಲಾ ವ್ಯವಸ್ಥೆ ಬಳಕೆದಾರರಿಂದ ಗೊತ್ತಿರುವ ತೊಂದರೆಗಳನ್ನು ಸೇರಿಸು" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "ತೊಂದರೆ ದತ್ತಾಂಶ ಕೋಶವನ್ನು ತೆರೆ (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -185,48 +189,48 @@ msgstr "" + "ಪೂರ್ವನಿಯೋಜಿತ ಕಡತ ವ್ಯವಸ್ಥೆ ವೀಕ್ಷಕದಲ್ಲಿ ಆಯ್ಕೆ ಮಾಡಿದ ತೊಂದರೆಯ ದತ್ತಾಂಶ ಕೋಶವನ್ನು " + "ತೆರೆಯುತ್ತದೆ" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "ತೊಂದರೆಯ ID ಯನ್ನು ನಕಲುಫಲಕಕ್ಕೆ ಅಂಟಿಸು (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ತೊಂದರೆಯ ID ಯನ್ನು ನಕಲುಫಲಕದಲ್ಲಿ ಶೇಖರಿಸಿ ಇಡುತ್ತದೆ" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "ಹೆಸರು" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "ಆವೃತ್ತಿ" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "ವರದಿ ಮಾಡಲಾದ" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "ಯಾವುದೆ ತೊಂದರೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "ಯಾವುದೆ ಆಕರವನ್ನು ಆರಿಸಲಾಗಿಲ್ಲ!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "ಯಾವುದೆ ಆಕರವಿಲ್ಲ" + +@@ -324,19 +328,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI ವಿವರಣೆಯನ್ನು ಲೋಡ್ ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -350,35 +354,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} ತೊಂದರೆಯನ್ನು ಪತ್ತೆ ಮಾಡಲಾಗಿದೆ" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "ಲಭ್ಯವಿಲ್ಲ" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "ವರದಿ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "ವರದಿಗಳು" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -395,17 +399,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ಹೌದು" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ಇಲ್ಲ" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/ko.po b/po/ko.po +index 033a86f..7be7ab4 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -55,6 +55,18 @@ msgstr "종료(_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "애플리케이션 크래시를 확인 및 보고함" +@@ -141,81 +153,73 @@ msgid "Submits selected problem" + msgstr "선택한 문제 제출 " + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "분석하기(_Z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "분석을 위해 선택된 문제를 엽니다" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "모든 문제(_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "모든 시스템 사용자의 알려진 문제 모두 보기 " + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "문제의 데이터 디렉토리 열기(_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "선택한 문제의 데이터 디렉토리를 기본 파일 시스템 브라우저로 엽니다" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "문제 ID를 클립보드로 복사(_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "선택된 문제 ID를 클립보드에 저장" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "이름 " + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "버전 " + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "보고됨 " + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "아무런 문제도 발견되지 않았습니다!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "선택된 소스가 없습니다!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "소스 없음" + +@@ -313,19 +317,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI 정의를 불러오는데 실패했습니다 " + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -339,35 +343,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} 문제가 감지되었습니다 " + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "해당 없음 " + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "보고할 수 없습니다 " + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "보고서" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -382,17 +386,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "예 " + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "아니요 " + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/ml.po b/po/ml.po +index f5323b2..dd7d0c9 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -52,6 +52,18 @@ msgstr "പു_റത്തു് കടക്കുക" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "പ്രയോഗത്തിന്റെ തകരാറുകള്‍ രേഖപ്പെടുത്തുക" +@@ -150,34 +162,26 @@ msgid "Submits selected problem" + msgstr "തെരഞ്ഞെടുത്ത പ്രശ്നം സമര്‍പ്പിയ്ക്കുന്നു" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "നിരീക്ഷിയ്ക്കു_ക" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "നിരിക്ഷിയ്ക്കുന്നതിനായി തെരഞ്ഞെടുത്ത പ്രശ്നം തുറക്കുക" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_എല്ലാ പ്രശ്നങ്ങളും" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "എല്ലാ ഉപയോക്താക്കളില്‍ നിന്നുള്ള പ്രശ്നങ്ങള്‍ കാണിയ്ക്കുക" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "പ്രശ്നത്തിനുള്ള ഡേറ്റാ ഡയറക്ടറി തു_റക്കുക" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -185,49 +189,49 @@ msgstr "" + "തെരഞ്ഞെടുത്ത പ്രശ്നത്തിന്റെ ഡേറ്റാ ഡയറക്ടറി സ്വതവേയുള്ള ഫയല്‍ സിസ്റ്റം " + "ബ്രൌസറില്‍ തുറക്കുന്നു" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "ക്ലിപ്പ്ബോര്‍ഡിലേക്കു് പ്രശ്നത്തിന്റെ ഐഡി _പകര്‍ത്തുക" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + "ക്ലിപ്പ്ബോര്‍ഡിലേക്കു് തെരഞ്ഞെടുത്ത പ്രശ്നത്തിന്റെ ഐഡി സൂക്ഷിയ്ക്കുന്നു" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "പേരു്" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "പതിപ്പു്" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "സമര്‍പ്പിച്ചു" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "ഒരു പ്രശ്നങ്ങളും ലഭ്യമായില്ല!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "ഒരു ശ്രോതസ്സും തെരഞ്ഞെടുത്തിട്ടില്ല!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "ശ്രോതസ്സ് ലഭ്യമല്ല" + +@@ -328,19 +332,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "യുഐ വിവരണം ലഭ്യമാക്കുന്നതില്‍ പരാജയം" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -354,35 +358,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} പ്രശ്നം കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "ലഭ്യമല്ല" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "രേഖപ്പെടുത്തുവാന്‍ സാധ്യമല്ല" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "രേഖകള്‍" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -398,17 +402,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ഉവ്വു്" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ഇല്ല" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/mr.po b/po/mr.po +index da1b913..974f83f 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -8,15 +8,16 @@ + # sandeeps , 2013 + # Bhagyashree Padalkar , 2016. #zanata + # Pravin Satpute , 2017. #zanata ++# Pravin Satpute , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-04-17 01:40-0400\n" ++"PO-Revision-Date: 2018-04-23 08:38-0400\n" + "Last-Translator: Pravin Satpute \n" + "Language-Team: Marathi (http://www.transifex.com/projects/p/gnome-abrt/" + "language/mr/)\n" +@@ -54,6 +55,18 @@ msgstr "बाहेर पडा (_Q)" + msgid "Problem Reporting" + msgstr " कळवताना अडचण" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "मजकूर दाखवा" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "निवडलेल्या अडचणीचा क्रमांक " ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "ऍप्लिकेशन क्रॅश पहा व कळवा" +@@ -148,82 +161,74 @@ msgid "Submits selected problem" + msgstr "नीवडलेल्या अडचणी सादर केले जातात" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "विश्लेषीत करा (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "विश्लेषणकरिता निवडलेली अडचण उघडा" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "तपशील (_e)" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "तांत्रिक तपशील दाखवा" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "सर्व अडचणी (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "सर्व प्रणाली वापरकर्त्यांपासून सर्व परिचीत अडचणी दाखवा" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "अडचणीचे डाटा डिरेक्ट्री उघडा (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + "पूर्वनिर्धारित फाइल प्रणाली ब्राऊजरमध्ये निवडलेली डाटा डिरेक्ट्री उघडतो" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "अडचण IDचे क्लिपबोर्डमध्ये प्रत बनवा (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "क्लिपबोर्डमध्ये निवडलेल्या अडचणीचे ID साठवतो" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "गाळ" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "चाळणी बॉक्स दाखवा" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "नाव" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "आवृत्ती" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "सर्वप्रथम आढळले" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "कळवलेले" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "अडचणी आढळले नाही!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "कोणतेही स्रोत निवडले नाही!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "स्रोत नाही" + +@@ -322,19 +327,19 @@ msgstr "गैरवर्तन" + msgid "Failed to load UI definition" + msgstr "UI वर्णन लोड करण्यास अपयशी" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "प्रणालीमध्ये अनपेक्षित त्रुटी" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "प्रणालीला अडचण आढळली व " + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr " प्रणाली घातक अपयश" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "प्रणालीला अडचण आढळली आणि पुढे जाऊ शकत नाही." + +@@ -348,35 +353,35 @@ msgstr "प्रणालीला अडचण आढळली आणि प + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} अडचण आढळली" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} अनपेक्षितरित्या बाहेर पडले" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "ऍप्लीकेशनला अडचण आढळली आणि पुढे जाऊ शकत नाही." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "कळवणे शक्य नाही" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "अहवाल" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -392,17 +397,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "होय" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "नाही" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/nb.po b/po/nb.po +index 14a14cb..c348042 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -49,6 +49,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Vis og rapporter krasj i programmer" +@@ -132,81 +144,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -305,19 +309,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -331,35 +335,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -371,17 +375,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/nl.po b/po/nl.po +index 52eda1c..c335d26 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -6,15 +6,16 @@ + # Geert Warrink , 2011 + # Jiří Moskovčák , 2011 + # Geert Warrink , 2017. #zanata ++# Geert Warrink , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-04-04 10:36-0400\n" ++"PO-Revision-Date: 2018-02-08 05:42-0500\n" + "Last-Translator: Geert Warrink \n" + "Language-Team: Dutch (http://www.transifex.com/projects/p/gnome-abrt/" + "language/nl/)\n" +@@ -52,6 +53,18 @@ msgstr "_Afsluiten" + msgid "Problem Reporting" + msgstr "Probleemrapportage" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Beschrijf uitgebreid" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "ID van geselecteerd probleem" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Bekijk en rapporteer crashes van toepassingen" +@@ -146,34 +159,26 @@ msgid "Submits selected problem" + msgstr "Dien geselecteerd probleen in" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Analy_seer" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Open geselecteerd probleem voor analyse" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etails" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Toon technische details" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Alle problemen" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Toon alle bekende problemen van alle systeemgebruikers" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Open datamap van het probleem" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -181,48 +186,48 @@ msgstr "" + "Opent de datamap van het geselecteerde probleem in de standaard " + "bestandssysteembrowser" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Kopieer ID van naar Clipboard" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Slaat de ID van het geselecteerde probleem op in Clibpoard" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filter" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Toon filtervenster" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Naam" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versie" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Voor het eerst gedetecteerd" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Gerapporteerd" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Geen problemen ontdekt!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Geen bron geselecteerd!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Geen bron" + +@@ -321,19 +326,19 @@ msgstr "Wangedrag" + msgid "Failed to load UI definition" + msgstr "Laden van UI definitie mislukte" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Onverwachte systeemfout" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Het systeem heeft een fout ondervonden en is hersteld." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Fatale systeemfout" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Het systeem heeft een fout ondervonden en kon niet verdergaan" + +@@ -347,35 +352,35 @@ msgstr "Het systeem heeft een fout ondervonden en kon niet verdergaan" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Er is een {0} probleem ontdekt" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} is onverwacht afgesloten" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "De toepassing heeft een fout ondervonden en kon niet verdergaan" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "Niet beschikbaar" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "kan niet gerapporteerd worden" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Rapporten" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -392,17 +397,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ja" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "nee" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/nn.po b/po/nn.po +index 8da2ef6..820b903 100644 +--- a/po/nn.po ++++ b/po/nn.po +@@ -3,7 +3,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -44,6 +44,18 @@ msgstr "_Avslutt" + msgid "Problem Reporting" + msgstr "Problemrapportering" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Syn og rapporter programkræsj" +@@ -132,81 +144,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -305,19 +309,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -331,35 +335,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -371,17 +375,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/or.po b/po/or.po +index 69b284a..1a540ce 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -52,6 +52,18 @@ msgstr "ବିଦାୟ ନିଅନ୍ତୁ (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "ପ୍ରୟୋଗ ନଷ୍ଟଗୁଡ଼ିକୁ ଦେଖନ୍ତୁ ଏବଂ ଖବର କରନ୍ତୁ" +@@ -142,34 +154,26 @@ msgid "Submits selected problem" + msgstr "ବଚ୍ଛିତ ସମସ୍ୟାକୁ ଦାଖଲ କରିଥାଏ" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "ବିଶ୍ଳେଷଣ କରନ୍ତୁ (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "ବିଶ୍ଳେଷଣ ପାଇଁ ବଚ୍ଛିତ ସମସ୍ୟା ଖୋଲନ୍ତୁ" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "ସମସ୍ତ ସମସ୍ଯାଗୁଡ଼ିକ (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "ସମସ୍ତ ତନ୍ତ୍ର ଚାଳକମାନଙ୍କ ପାଖରୁ ଜଣା ଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ଦର୍ଶାନ୍ତୁ" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "ସମସ୍ୟାର ତଥ୍ୟ ଡିରେକ୍ଟୋରୀ ଖୋଲନ୍ତୁ (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -177,48 +181,48 @@ msgstr "" + "ବଚ୍ଛିତ ସମସ୍ୟାର ତଥ୍ୟ ଡିରେକ୍ଟୋରୀକୁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଫାଇଲତନ୍ତ୍ର ବ୍ରାଉଜରରେ " + "ଖୋଲିଥାଏ" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "ସମସ୍ୟାର ID କୁ କ୍ଲିପବୋର୍ଡରେ ନକଲ କରନ୍ତୁ (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "ସମସ୍ୟାର ID କୁ କ୍ଲିପବୋର୍ଡରେ ସଂରକ୍ଷଣ କରିଥାଏ" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "ନାମ" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "ସଂସ୍କରଣ" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "ଖବର କରାହୋଇଥିବା" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "କୌଣସି ସମସ୍ୟା ଚିହ୍ନଟ ହୋଇ ନାହିଁ!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "କୌଣସି ଉତ୍ସ ବଛା ହୋଇନାହିଁ!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "କୌଣସି ଉତ୍ସ ନାହିଁ" + +@@ -319,19 +323,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI ସଂଜ୍ଞା ଧାରଣ କରିବାରେ ଅସଫଳ" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -345,35 +349,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} ସମସ୍ଯା ଦେଖା ଦେଇଛି" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "ଖବର କରାଯାଇ ପାରିବ ନାହିଁ" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "ବିବରଣୀଗୁଡ଼ିକ" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -389,17 +393,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ହଁ" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ନାଁ" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/pa.po b/po/pa.po +index c01c832..15849d6 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -52,6 +52,18 @@ msgstr "ਬੰਦ ਕਰੋ (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "ਐਪਲੀਕੇਸ਼ਨ ਕਰੈਸ਼ ਵੇਖੋ ਅਤੇ ਰਿਪੋਰਟ ਕਰੋ" +@@ -143,82 +155,74 @@ msgid "Submits selected problem" + msgstr "ਚੁਣੀ ਸਮੱਸਿਆ ਭੇਜੋ" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "ਵਿਸ਼ਲੇਸ਼ਣ (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "ਚੁਣੀ ਹੋਈ ਸਮੱਸਿਆ ਵਿਸ਼ਲੇਸ਼ਣ ਲਈ ਖੋਲ੍ਹੋ" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "ਸਭ ਸਮੱਸਿਆਵਾਂ(_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "ਸਭ ਸਿਸਟਮ ਯਜ਼ਰਾਂ ਤੋਂ ਸਭ ਸਮੱਸਿਆਵਾਂ ਵੇਖਾਓ" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "ਡਾਟਾ ਡਾਇਰੈਕਟਰੀ ਵਾਲੀ ਸਮੱਸਿਆ ਖੋਲ੍ਹੋ (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + "ਮੂਲ ਫ਼ਾਈਲ ਸਿਸਟਮ ਬਰਾਊਜ਼ਰ ਵਿੱਚ ਚੁਣੀ ਹੋਈ ਸਮੱਸਿਆ ਦੀ ਡਾਟਾ ਡਾਇਰੈਕਟਰੀ ਖੋਲ੍ਹਦਾ ਹੈ" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "ਸਮੱਸਿਆ ਦੀ ID ਕਲਿੱਪਬੋਰਡ ਤੇ ਨਕਲ ਕਰੋ (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "ਚੁਣੀ ਹੋਈ ਸਮੱਸਿਆ ਦੀ ID ਕਲਿੱਪਬੋਰਡ ਤੇ ਸਾਂਭਦਾ ਹੈ" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "ਨਾਂ" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "ਵਰਜਨ" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "ਰਿਪੋਰਟ ਕੀਤਾ" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "ਕੋਈ ਸਮੱਸਿਆਵਾਂ ਨਹੀਂ ਲੱਭੀਆਂ!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "ਕੋਈ ਸਰੋਤ ਨਹੀਂ ਚੁਣਿਆ ਗਿਆ!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "ਕੋਈ ਸਰੋਤ ਨਹੀਂ" + +@@ -319,19 +323,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI ਪਰਿਭਾਸ਼ਾ ਨੂੰ ਲੋਡ ਕਰਨ ਵਿੱਚ ਅਸਫਲ" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -345,35 +349,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} ਮੁਸ਼ਕਿਲ ਖੋਜ ਲਈ ਗਈ ਹੈ" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "ਸੂਚਿਤ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "ਸੂਚਨਾਵਾਂ" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -389,17 +393,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ਹਾਂ" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ਨਹੀਂ" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/pl.po b/po/pl.po +index a641450..db9dfe9 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -8,15 +8,17 @@ + # Piotr Drąg , 2015. #zanata + # Piotr Drąg , 2016. #zanata + # Rafał Lużyński , 2016. #zanata ++# Piotr Drąg , 2018. #zanata ++# Rafał Lużyński , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-10-14 12:16-0400\n" ++"PO-Revision-Date: 2018-02-08 12:49-0500\n" + "Last-Translator: Piotr Drąg \n" + "Language-Team: Polish (http://www.transifex.com/projects/p/gnome-abrt/" + "language/pl/)\n" +@@ -55,6 +57,18 @@ msgstr "Za_kończ" + msgid "Problem Reporting" + msgstr "Zgłaszanie problemów" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Więcej informacji" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Identyfikator wybranego problemu" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Wyświetlanie i zgłaszanie awarii aplikacji" +@@ -153,82 +167,74 @@ msgid "Submits selected problem" + msgstr "Wysyła zaznaczony problem" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Anali_zuj" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Otwiera zaznaczone problemy do analizy" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Szczegóły" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Wyświetla informacje techniczne" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Wszystkie problemy" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Wyświetla wszystkie znane problemy od wszystkich użytkowników systemu" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Otwórz katalog danych problemu" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + "Otwiera katalog danych zaznaczonego problemu w domyślnym menedżerze plików" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "S_kopiuj identyfikator problemu do schowka" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Umieszcza identyfikator zaznaczonego problemu w schowku" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtruj" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Wyświetla okno filtrowania" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nazwa" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Wersja" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Pierwsze wystąpienie" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Zgłoszono" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Nie wykryto żadnych problemów." + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nie wybrano źródła." + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Brak źródła" + +@@ -330,19 +336,19 @@ msgstr "Błędne zachowanie" + msgid "Failed to load UI definition" + msgstr "Wczytanie definicji interfejsu użytkownika się nie powiodło" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Nieoczekiwany błąd systemu" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "W systemie wystąpił problem, ale system został przywrócony." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Krytyczne niepowodzenie systemu" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "W systemie wystąpił problem i nie można kontynuować." + +@@ -356,35 +362,35 @@ msgstr "W systemie wystąpił problem i nie można kontynuować." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Wykryto problem {0}" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "Program {0} nieoczekiwanie zakończył działanie" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "W aplikacji wystąpił problem i nie można kontynuować." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "Niedostępna" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "nie można zgłosić" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Zgłoszenia" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -400,17 +406,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "tak" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "nie" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/pt.po b/po/pt.po +index b46d7e6..5d47067 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -50,6 +50,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Ver e reportar as falhas de aplicações" +@@ -133,81 +145,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -306,19 +310,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -332,35 +336,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -372,17 +376,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/pt_BR.po b/po/pt_BR.po +index a15a908..2c4e82e 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -13,12 +13,12 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2018-01-30 07:10-0500\n" +-"Last-Translator: Marco Aurélio Krause \n" ++"PO-Revision-Date: 2018-01-30 07:06-0500\n" ++"Last-Translator: Fabrício de Lima Farias \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" + "gnome-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" +@@ -55,6 +55,18 @@ msgstr "_Sair" + msgid "Problem Reporting" + msgstr "Relato de Problemas" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Visualizar e reportar travamentos de aplicativos" +@@ -155,35 +167,27 @@ msgid "Submits selected problem" + msgstr "Envia problema selecionado" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Analizar" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Abrir problemas selecionados para análise" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etalhes" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Mostrar detalhes técnicos" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "Todos os problemas" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + "Mostrar todos os problemas conhecidos para todos os usuários do sistema" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "Abrir diretório de dados de problemas" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -191,48 +195,48 @@ msgstr "" + "Abrir o diretório de dados de problemas selecionados no navegador de sistema " + "de arquivo padrão." + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Copiar ID de problema para o Clipboard" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Armazena o ID de problemas selecionados no Clipboard" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtrar" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Mostrar caixa de filtro" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Nome" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versão" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Primeiro Detectado" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Reportado" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Nenhum problema detectado!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nenhuma fonte selecionada!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Nenhuma fonte" + +@@ -331,19 +335,19 @@ msgstr "Comportamento estranho" + msgid "Failed to load UI definition" + msgstr "Falha ao carregar a definição da UI" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Erro inesperado do sistema" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "O sistema encontrou um problema e se recuperou." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Falha fatal do sistema" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "O sistema encontrou um problema e não pôde continuar." + +@@ -357,35 +361,35 @@ msgstr "O sistema encontrou um problema e não pôde continuar." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} problema foi detectado" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} saiu inesperadamente" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "O aplicativo encontrou um problema e não pôde continuar." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/D" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "não pode ser reportado" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Formulários" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -401,17 +405,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "sim" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "não" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/ru.po b/po/ru.po +index 85efeea..ff37ae9 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -7,16 +7,17 @@ + # Yulia , 2013-2014 + # yuliya , 2016. #zanata + # Julius Milan , 2017. #zanata ++# Igor Gorbounov , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-11-29 06:18-0500\n" +-"Last-Translator: yuliya \n" ++"PO-Revision-Date: 2018-03-03 04:20-0500\n" ++"Last-Translator: Igor Gorbounov \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/gnome-abrt/" + "language/ru/)\n" + "Language: ru\n" +@@ -54,6 +55,18 @@ msgstr "В_ыход" + msgid "Problem Reporting" + msgstr "Создание отчетов об ошибках" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Опишите подробно" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Идентификатор выбранной проблемы" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Просмотреть сбои и создать отчет" +@@ -146,81 +159,73 @@ msgid "Submits selected problem" + msgstr "Отправляет отчет о выбранной проблеме" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "_Анализ" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Открыть проблему для анализа" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "П_одробнее" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Показать подробную информацию" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Все проблемы" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Показать проблемы всех пользователей" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Открыть каталог" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "Открывает каталог с данными выбранной проблемы в менеджере файлов" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Копировать ID ошибки в буфер" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Копирует идентификатор выбранной проблемы в буфер обмена" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Фильтр" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Показать панель фильтра" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Имя" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Версия" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Впервые обнаружено" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Отправлено" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Ошибок не обнаружено" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Источник не выбран." + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Нет источника" + +@@ -323,19 +328,19 @@ msgid "Failed to load UI definition" + msgstr "" + "Не удалось загрузить определение графического интерфейса пользователя." + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Непредвиденная ошибка системы" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "В системе произошла ошибка, которая была успешно исправлена." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Критическая ошибка системы" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + "В системе произошла критическая ошибка: продолжение работы невозможно." +@@ -350,35 +355,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Обнаружена ошибка {0}." + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "Работа {0} была внезапно завершена" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Ошибка приложения: продолжение работы невозможно." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "нет" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "невозможно создать отчет" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Отчеты" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -392,17 +397,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "да" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "нет" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/sk.po b/po/sk.po +index 379c552..3d7c6bb 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -51,6 +51,18 @@ msgstr "_Ukončiť" + msgid "Problem Reporting" + msgstr "Nahlásenie problému" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Zobrazenie a nahlasovanie pádov aplikácií" +@@ -147,34 +159,26 @@ msgid "Submits selected problem" + msgstr "Odošle vybratý problém" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Analy_zovať" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Otvorí vybratý problém na analýzu" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Podrobnosti" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Zobrazí technické podrobnosti" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Všetky problémy" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Zobrazí všetky známe problémy od všetkých používateľov systému" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Otvoriť adresár s údajmi o probléme" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -182,48 +186,48 @@ msgstr "" + "Otvorí adresár s údajmi o vybratom probléme v predvolenom prehliadači " + "systémových súborov" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Kopírovať ID problému do schránky" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Uloží identifikátor vybratého problému do schránky" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtrovať" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Zobrazí kolónku filtrovania" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Názov" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Verzia" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Prvé zistenie" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Nahlásený" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Neboli zistené žiadne problémy!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nie je vybratý zdroj!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Žiadny zdroj" + +@@ -325,19 +329,19 @@ msgstr "Nevhodné správanie" + msgid "Failed to load UI definition" + msgstr "Zlyhalo načítanie definície používateľského rozhrania" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Neočakávaná systémová chyba" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Systém narazil na problém a opravil ho." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Závažné zlyhanie systému" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Systém narazil na problém a nemôže pokračovať." + +@@ -351,35 +355,35 @@ msgstr "Systém narazil na problém a nemôže pokračovať." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Bol zistený problém s programom {0}" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "Program {0} neočakávane skončil" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Aplikácia narazila na problém a nemôže pokračovať." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "Nedostupné" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "nemôže byť nahlásený" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Hlásenia" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -395,17 +399,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "áno" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "nie" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/sq.po b/po/sq.po +index 0502e7a..34f52d2 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -1,14 +1,15 @@ + # Anxhelo Lushka , 2016. #zanata ++# Jona Azizaj , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-06-18 03:33-0400\n" +-"Last-Translator: Anxhelo Lushka \n" ++"PO-Revision-Date: 2018-04-22 03:50-0400\n" ++"Last-Translator: Jona Azizaj \n" + "Language-Team: Albanian\n" + "Language: sq\n" + "X-Generator: Zanata 3.9.6\n" +@@ -44,6 +45,18 @@ msgstr "_Dil" + msgid "Problem Reporting" + msgstr "Raportimi i Problemeve" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Ji më i qartë" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "ID e problemit të përzgjedhur" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Shiko dhe raporto dështime të aplikacioneve" +@@ -140,35 +153,27 @@ msgid "Submits selected problem" + msgstr "Paraqet problemin e zgjedhur" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Anali_zo" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Hap problemin e zgjedhur për analizim" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etaje" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Trego detaje teknike" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Të gjitha problemet" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + "Trego të gjitha problemet e njohura nga të gjithë përdoruesit e sistemit" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Hap direktorinë e të dhënave të problemeve" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -176,48 +181,48 @@ msgstr "" + "Hap direktorinë e të dhënave të problemeve të zgjedhura në shfletuesin e " + "paravendosur të skedarëve të sistemit" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Kopjo ID e problemit në mbajtësin e shënimeve" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Ruan ID e problemit në mbajtësin e shënimeve" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtro" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Trego kutinë e filtrimit" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Emri" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Versioni" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "U zbulua fillimisht" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "U raportua" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Nuk u zbuluan probleme!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Nuk ka burim të përzgjedhur!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Nuk ka burim" + +@@ -316,19 +321,19 @@ msgstr "Sjellje e gabuar" + msgid "Failed to load UI definition" + msgstr "Dështoi ngarkimi i përcaktimit të ndërfaqes së përdoruesit" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Gabim i paparashikuar i sistemit" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Ky sistem ka hasur në një problem dhe është rikuperuar." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Dështim fatal sistemi" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Ky sistemi ka hasur në një problem dhe nuk mund të vazhdojë." + +@@ -342,35 +347,35 @@ msgstr "Ky sistemi ka hasur në një problem dhe nuk mund të vazhdojë." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} problem është zbuluar" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} u mbarua në mënyrë të papritur" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Ky aplikacion pësoi një problem dhe nuk mund të vazhdojë" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "nuk mund të raportohet" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Raportimet" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -387,17 +392,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "po" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "jo" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/sr.po b/po/sr.po +index 2fe417b..2d4394c 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -52,6 +52,18 @@ msgstr "_Излаз" + msgid "Problem Reporting" + msgstr "Пријављивање проблема" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Види и пријави програмски пад" +@@ -148,34 +160,26 @@ msgid "Submits selected problem" + msgstr "Шаље означени проблем" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Анали_зирај" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Отвори означени проблем за анализу" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "Пој_единости" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Прикажи стручне појединости" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Сви проблеми" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Прикажи све познате проблеме од свих системских корисника" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Отвори директоријум са подацима о проблему" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -183,48 +187,48 @@ msgstr "" + "Отвара директоријум са подацима о означеном проблему у подразумеваном " + "системском прегледачу датотека" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Копирај ИБ проблема у клипборд" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Смешта ИБ означеног проблема у клипборд" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Филтер" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Приказује оквир за филтере" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Назив" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Издање" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Први пут уочено" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Пријављено" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Нема откривених проблема!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Нема означених извора!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Нема извора" + +@@ -326,19 +330,19 @@ msgstr "Непредвиђен рад" + msgid "Failed to load UI definition" + msgstr "Неуспешно учитавање дефиниције корисничког окружења" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Неочекивана системска грешка" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Систем је наишао на проблем и опоравио се." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Фатални системски квар" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Систем је наишао на проблем и не може наставити." + +@@ -352,35 +356,35 @@ msgstr "Систем је наишао на проблем и не може на + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} проблема је откривено" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} је неочекивано престао са радом" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Програм је наишао на проблем и не може наставити." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "недоступно" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "не може бити пријављено" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Извештаји" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -396,17 +400,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "да" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "не" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/sr@latin.po b/po/sr@latin.po +index 3fdd554..233b078 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -50,6 +50,18 @@ msgstr "" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Vidi i prijavi programski pad" +@@ -133,81 +145,73 @@ msgid "Submits selected problem" + msgstr "" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "" + +@@ -309,19 +313,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -335,35 +339,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -375,17 +379,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/sv.po b/po/sv.po +index 831ee39..734f89f 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -10,16 +10,17 @@ + # Göran Uddeborg , 2015. #zanata + # Göran Uddeborg , 2016. #zanata + # Anders Jonsson , 2017. #zanata ++# Göran Uddeborg , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-09-30 07:38-0400\n" +-"Last-Translator: Anders Jonsson \n" ++"PO-Revision-Date: 2018-02-23 02:05-0500\n" ++"Last-Translator: Göran Uddeborg \n" + "Language-Team: Swedish (http://www.transifex.com/projects/p/gnome-abrt/" + "language/sv/)\n" + "Language: sv\n" +@@ -56,6 +57,18 @@ msgstr "_Avsluta" + msgid "Problem Reporting" + msgstr "Problemrapportering" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Var utförlig" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Valt problem-ID" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Visa och rapportera programkrascher" +@@ -151,82 +164,74 @@ msgid "Submits selected problem" + msgstr "Skickar in det valda problemet" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Analyse_ra" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Öppna valt problem för analysering" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "D_etaljer" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Visa tekniska detaljer" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Alla problem" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Visa alla kända problem från alla användare i systemet" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "_Öppna problemens data-mapp" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" + "Öppnar det valda problemets datakatalog i standardfilsystemsbläddraren" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Kopiera problem-ID:t till klippbordet" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Lagrar det valda problemets ID i klippbordet" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Filtrera" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Visa filterrutan" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Namn" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Version" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Först upptäckt" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Rapporterad" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Inga problem upptäcktes!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Ingen källa är vald!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Ingen källa" + +@@ -325,19 +330,19 @@ msgstr "Felbeteende" + msgid "Failed to load UI definition" + msgstr "Misslyckades att ladda UI-definitionen" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Oväntat systemfel" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Systemet har stött på ett problem och återhämtat sig." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Ödesdigert systemfel" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Systemet har stött på ett problem och kunde inte fortsätta." + +@@ -351,35 +356,35 @@ msgstr "Systemet har stött på ett problem och kunde inte fortsätta." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} problem har upptäckts" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} avslutade oväntat" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Programmet stötte på ett problem och kunde inte fortsätta." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "kan inte rapporteras" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Rapporter" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -396,17 +401,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ja" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "nej" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/ta.po b/po/ta.po +index c23eb20..c80b788 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -56,6 +56,18 @@ msgstr "வெளியேறு (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "பயன்பாட்டு கிரஷ்களை பார்த்து அறிக்கையிடவும் " +@@ -149,35 +161,27 @@ msgid "Submits selected problem" + msgstr "தேர்ந்தெடுத்த சிக்கலை சமர்ப்பி" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "பகுப்பாய்வு (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "தேர்ந்தெடுத்த சிக்கல்களை பகுப்பாய்வுக்காகத் திற" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "அனைத்து சிக்கல்களும் (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "" + "அனைத்து கணினி பயனர்களிடமிருந்துமான அனைத்து அறியப்பட்ட சிக்கல்களையும் காண்பி" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "சிக்கலின் தரவு கோப்பகத்தைத் திற (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -185,48 +189,48 @@ msgstr "" + "தேர்ந்தெடுத்த சிக்கலின் தரவுக் கோப்பகத்தை முன்னிருப்பு கோப்பு முறைமை " + "உலாவியில் திறக்கும்" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "சிக்கலின் ID ஐ கிளிப்போர்டுக்கு நகலெடு (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "தேர்ந்தெடுத்த சிக்கலின் ID ஐ கிளிப்போர்டுக்கு நகலெடுக்கும்" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "பெயர்" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "பதிப்பு" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "புகாரளிக்கப்பட்டது" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "சிக்கல் எதுவும் கண்டுபிடிக்கப்படவில்லை!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "மூலம் தேர்ந்தெடுக்கப்படவில்லை!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "மூலம் இல்லை" + +@@ -327,19 +331,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI வரையறையை ஏற்றுவதில் தோல்வியடைந்தது" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -353,35 +357,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} சிக்கல் கண்டுபிடிக்கப்பட்டது" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "பொருந்தாது " + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "அறிக்கையிட முடியவில்லை" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "அறிக்கைகள்" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -398,17 +402,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "ஆம்" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "இல்லை" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/te.po b/po/te.po +index 4aefa1d..e06b841 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -53,6 +53,18 @@ msgstr "నిష్క్రమించు (_Q)" + msgid "Problem Reporting" + msgstr "" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "అనువర్తనము క్రాషెస్‌ను దర్శించుము మరియు నివేదించుము" +@@ -146,34 +158,26 @@ msgid "Submits selected problem" + msgstr "ఎంపికచేసిన సమస్యను అప్పగించును" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "విశ్లేషించు (_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "విశ్లేషణ కొరకు యెంపికచేసిన సమస్యను తెరువుము" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "అన్ని సమస్యలు (_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "అన్ని వ్యవస్థ వాడుకరులనుండి అన్ని తెలిసిన సమస్యలను చూపుము" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "సమస్య యొక్క దత్తాంశ సంచయం తెరువుము (_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -181,48 +185,48 @@ msgstr "" + "అప్రమేయ ఫైల్ సిస్టమ్ బ్రౌజర్ నందు యెంపికచేసిన సమస్య దత్తాంశ డైరెక్టరీను " + "తెరుచును" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "సమస్య ఐడి ను క్లిప్‌బోర్డునకు నకలు తీయును (_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "ఎంపికచేసిన సమస్య ఐడిను క్లిప్‌బోర్డునందు నిల్వవుంచును" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "పేరు" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "వర్షన్" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "నివేదించిన" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "ఏ సమస్యలు గుర్తించబడెలేదు!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "ఏ మూలం ఎంపికచేయలేదు!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "ఏ మూలంలేదు" + +@@ -323,19 +327,19 @@ msgstr "" + msgid "Failed to load UI definition" + msgstr "UI నిర్వచనం లోడు చేయుటకు విఫలమైంది" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "" + +@@ -349,35 +353,35 @@ msgstr "" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} సమస్య గుర్తించబడెను" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "వర్తించదు" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "నివేదించలేదు" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "నివేదికలు" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -392,17 +396,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "అవును" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "కాదు" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/tr.po b/po/tr.po +index 2b1c384..d3d7a9c 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -5,15 +5,16 @@ + # Translators: + # Ahmet Sezgin Duran , 2013 + # Emin Tufan Çetin , 2017. #zanata ++# Emin Tufan Çetin , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-11-05 04:11-0500\n" ++"PO-Revision-Date: 2018-03-04 12:40-0500\n" + "Last-Translator: Emin Tufan Çetin \n" + "Language-Team: Turkish (http://www.transifex.com/projects/p/gnome-abrt/" + "language/tr/)\n" +@@ -51,6 +52,18 @@ msgstr "_Çık" + msgid "Problem Reporting" + msgstr "Sorun Bildirme" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Ayrıntılı ol" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Seçilen sorun kimliği" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Uygulama çökmelerini görüntüle ve bildir" +@@ -65,7 +78,7 @@ msgid "" + "reporting of software issues." + msgstr "" + "Yazılım sorunlarını toplamak, incelemek ve bildirmek için tasarlanmış " +-"yazılım araçları koleksiyonu" ++"yazılım araçları derlemi." + + #: ../src/gnome-abrt.appdata.xml.in.h:2 + msgid "" +@@ -76,21 +89,24 @@ msgstr "Asıl amacı sorunu bildirme ve çözüm bulma sürecini kolaylaştırma + #: ../src/gnome_abrt/dbus_problems.py:89 + #, python-brace-format + msgid "Can't add receiver of signal '{0}'on DBus system path '{1}': {2}" +-msgstr "" ++msgstr "DBus sistem yolu '{1}' üstüne '{0}' sinyal alıcısı eklenemiyor: {2}" + + #: ../src/gnome_abrt/dbus_problems.py:102 + #, python-brace-format + msgid "Can't connect to DBus system bus '{0}' path '{1}': {2}" +-msgstr "" ++msgstr "'{1}' yolu '{0}' DBus sistem veriyoluna bağlanılamıyor: {2}" + + #: ../src/gnome_abrt/dbus_problems.py:109 + #, python-brace-format + msgid "Can't get interface '{0}' on path '{1}' in bus '{2}': {3}" + msgstr "" ++"'{2}' veriyolunda bulunan '{1}' yolu üzerindeki '{0}' arayüzü alınamıyor: " ++"'{3}'" + + #: ../src/gnome_abrt/dbus_problems.py:153 + msgid "Can't chown problem '{0}' over DBus service: {1!s}" + msgstr "" ++"'{0}' sorunu DBus hizmeti üzerinden chown işlemine uğratılamıyor: {1!s}" + + #: ../src/gnome_abrt/dbus_problems.py:168 + msgid "Can't get problem data from DBus service: {0!s}" +@@ -102,7 +118,7 @@ msgstr "DBus servisinden sorunlar listelenemiyor: {0!s}" + + #: ../src/gnome_abrt/dbus_problems.py:192 + msgid "Can't delete problem over DBus service: {0!s}" +-msgstr "" ++msgstr "Sorun DBus hizmeti üzerinden silinemiyor: {0!s}" + + #: ../src/gnome_abrt/directory_problems.py:216 + #, python-brace-format +@@ -113,6 +129,11 @@ msgid "" + "about changes in problem data happening outside of this application. This " + "event do not affect any other functionality." + msgstr "" ++"Büyük olasılıkla inotify'nin '{0}' içindeki izleme sayısı sınırını geçtiniz. " ++"Sınır, inotify'nin uygun yapılandırılmasıyla artırılabilir. Daha çok ayrıntı " ++"için man inotify(7) incelenebilir. Bu eylem, bu uygulamanın dışında " ++"gerçekleşen sorun verisi değişikliklerinden haberdar olmamanıza neden olur. " ++"Bu eylem başka herhangi bir işlevi etkilemez." + + #: ../src/gnome_abrt/directory_problems.py:262 + #, python-brace-format +@@ -136,81 +157,74 @@ msgid "Submits selected problem" + msgstr "Seçili sorunu gönderir" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "_İncele" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Seçilen sorunu incelemek için aç" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "_Ayrıntılar" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Teknik ayrıntıları göster" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Tüm sorunlar" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Tüm sistem kullanıcıları için bilinen tüm sorunları göster" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" +-msgstr "" ++msgstr "Sorunun veri dizinini _aç" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "" ++"Seçilen sorunun veri dizinini öntanımlı dosya sistemi tarayıcısında açar" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" +-msgstr "" ++msgstr "Sorunun kimliğini panoya _kopyala" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" +-msgstr "" ++msgstr "Seçilen sorunun kimliğini panoda saklar" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" +-msgstr "" ++msgstr "_Süzgeç" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" +-msgstr "" ++msgstr "Süzgeç kutusunu göster" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Ad" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Sürüm" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "İlk Saptanma" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Bildirildi" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Sorun saptanmadı!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Kaynak seçilmedi!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Kaynak yok" + +@@ -303,25 +317,25 @@ msgstr "Sistem Arızası" + + #: ../src/gnome_abrt/views.py:160 + msgid "Misbehavior" +-msgstr "" ++msgstr "İstenmeyen davranış" + + #: ../src/gnome_abrt/views.py:320 + msgid "Failed to load UI definition" +-msgstr "" ++msgstr "Kullanıcı arayüzü tanımı yüklenemedi" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Beklenmedik sistem hatası" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "Sistem bir sorunla karşılaştı ve kurtarıldı." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Ölümcül sistem arızası" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "Sistem bir sorunla karşılaştı ve devam edemedi." + +@@ -335,57 +349,61 @@ msgstr "Sistem bir sorunla karşılaştı ve devam edemedi." + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "{0} sorun saptandı" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" +-msgstr "" ++msgstr "{0} beklenmedik biçimde çıktı" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "Uygulama bir sorunla karşılaştı ve devam edemedi." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" +-msgstr "" ++msgstr "YOK" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" +-msgstr "" ++msgstr "bildirilemez" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Bildirmeler" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" + "Please consider also reporting it to Bugzilla in order to provide " + "that. Thank you." + msgstr "" ++"Bu sorun bildirildi ancak Bugzilla çağrısı açılmadı. " ++"Geliştiricilerimiz sorunu çözmek için daha çok bilgiye gereksinebilir.\n" ++"Lütfen bunu sağlamak için Bugzilla'ya bildirmeyi düşünün. Teşekkürler." ++"" + + #. Translators: Displayed after 'Reported' if a problem + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "evet" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "hayır" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/uk.po b/po/uk.po +index 78ccb60..62e4892 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -7,15 +7,16 @@ + # Yuri Chornoivan , 2011 + # Yuri Chornoivan , 2015. #zanata + # Yuri Chornoivan , 2016. #zanata ++# Yuri Chornoivan , 2018. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-03-09 01:44-0500\n" ++"PO-Revision-Date: 2018-02-07 10:13-0500\n" + "Last-Translator: Yuri Chornoivan \n" + "Language-Team: Ukrainian (http://www.transifex.com/projects/p/gnome-abrt/" + "language/uk/)\n" +@@ -54,6 +55,18 @@ msgstr "Ви_йти" + msgid "Problem Reporting" + msgstr "Звітування щодо проблем" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "Докладні повідомлення" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "Ідентифікатор вибраної проблеми" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "Переглянути збої програми та створити звіт" +@@ -155,34 +168,26 @@ msgid "Submits selected problem" + msgstr "Надіслати дані щодо позначеної проблеми" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "Про_аналізувати" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "Відкрити позначену проблему для аналізу" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "П_одробиці" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "Показати технічні подробиці" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "_Усі проблеми" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "Показати усі відомі проблеми усіх користувачів системи" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "В_ідкрити каталог даних проблеми" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" +@@ -190,48 +195,48 @@ msgstr "" + "ВІдкрити каталог даних проблеми за допомогою типової програми для керування " + "файлами системи" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "_Копіювати ідентифікатор програми до буфера" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "Зберегти ідентифікатор позначеної проблеми до буфера" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "_Фільтрування" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "Показати панель фільтрування" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "Назва" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "Версія" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "Вперше виявлено" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "Повідомлено" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "Проблем не виявлено!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "Не позначено джерела!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "Немає джерела" + +@@ -333,19 +338,19 @@ msgstr "Неналежна поведінка" + msgid "Failed to load UI definition" + msgstr "Не вдалося завантажити визначення графічного інтерфейсу" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "Неочікувана помилка системи" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "У системі сталася проблема, роботу системи відновлено." + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "Критична помилка системи" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "У системі сталася проблема, роботу системи неможливо продовжити." + +@@ -359,36 +364,36 @@ msgstr "У системі сталася проблема, роботу сист + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "Виявлено проблему {0}" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} несподівано завершила роботу" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "" + "У роботі програми сталася проблема, роботу програми неможливо продовжити." + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "н/д" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "не можна звітувати" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "Звіти" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -405,17 +410,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "так" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "ні" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/zh_CN.po b/po/zh_CN.po +index 5917147..bbdbaed 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -14,7 +14,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -56,6 +56,18 @@ msgstr "退出(_Q)" + msgid "Problem Reporting" + msgstr "问题报告" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "查看并报告应用程序崩溃" +@@ -141,81 +153,73 @@ msgid "Submits selected problem" + msgstr "提交所选问题" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "分析(_Z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "打开所选问题进行分析" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "详情(_E)" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "显示技术详情" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "所有问题(_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "显示所有系统用户的所有已知问题" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "打开问题的数据目录(_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "在默认文件系统浏览器中打开所选问题的数据目录" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "在剪切版中辅助问题 ID(_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "在剪切版中保存所选问题的 ID" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "过滤(_F)" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "显示过滤器" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "名称" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "版本" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "检测到的第一个问题" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "已报告" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "未探测到问题!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "未选择资源!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "无资源" + +@@ -311,19 +315,19 @@ msgstr "违规行为" + msgid "Failed to load UI definition" + msgstr "载入 UI 定义失败" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "意外的系统错误" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "系统遇到了一个问题,但已经恢复。" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "致命系统故障" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "系统遇到了一个问题,无法继续运行。" + +@@ -337,35 +341,35 @@ msgstr "系统遇到了一个问题,无法继续运行。" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "检测到问题 {0}" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} 意外退出" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "应用程序遇到了一个问题,无法继续运行。" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "无" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "无法报告" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "报告" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -380,17 +384,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "是" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "无" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 07b8920..8260520 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2017-08-29 15:52+0200\n" ++"POT-Creation-Date: 2018-02-07 10:40+0100\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -52,6 +52,18 @@ msgstr "退出(_Q)" + msgid "Problem Reporting" + msgstr "問題回報" + ++#. Translators: This is a description of --verbose command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:407 ++msgid "Be verbose" ++msgstr "" ++ ++#. Translators: This is a description of --problem command line option ++#. displayed when a user runs: `gnome-abrt --help' ++#: ../src/gnome-abrt:415 ++msgid "Selected problem ID" ++msgstr "" ++ + #: ../src/gnome-abrt.desktop.in.h:2 + msgid "View and report application crashes" + msgstr "檢視與回報應用程式錯誤" +@@ -137,81 +149,73 @@ msgid "Submits selected problem" + msgstr "提交所選取的問題" + + #: ../src/gnome_abrt/oops.glade.h:5 +-msgid "Analy_ze" +-msgstr "分析(_z)" +- +-#: ../src/gnome_abrt/oops.glade.h:6 +-msgid "Open selected problem for analysis" +-msgstr "開啓選擇的問題以進行分析" +- +-#: ../src/gnome_abrt/oops.glade.h:7 + msgid "D_etails" + msgstr "細節(_E)" + +-#: ../src/gnome_abrt/oops.glade.h:8 ++#: ../src/gnome_abrt/oops.glade.h:6 + msgid "Show technical details" + msgstr "顯示技術細節" + +-#: ../src/gnome_abrt/oops.glade.h:9 ++#: ../src/gnome_abrt/oops.glade.h:7 + msgid "_All problems" + msgstr "所有問題(_A)" + +-#: ../src/gnome_abrt/oops.glade.h:10 ++#: ../src/gnome_abrt/oops.glade.h:8 + msgid "Show all known problems from all system users" + msgstr "從所有系統使用者顯示所有已知問題" + +-#: ../src/gnome_abrt/oops.glade.h:11 ++#: ../src/gnome_abrt/oops.glade.h:9 + msgid "_Open problem's data directory" + msgstr "開啓問題的資料目錄(_O)" + +-#: ../src/gnome_abrt/oops.glade.h:12 ++#: ../src/gnome_abrt/oops.glade.h:10 + msgid "" + "Opens the selected problem's data directory in the default file system " + "browser" + msgstr "在預設的檔案系統瀏覽器中開啓已選擇的問題的資料目錄" + +-#: ../src/gnome_abrt/oops.glade.h:13 ++#: ../src/gnome_abrt/oops.glade.h:11 + msgid "_Copy problem's ID to Clipboard" + msgstr "將問題的 ID 複製至剪貼簿(_C)" + +-#: ../src/gnome_abrt/oops.glade.h:14 ++#: ../src/gnome_abrt/oops.glade.h:12 + msgid "Stores the selected problem's ID in Clibpoard" + msgstr "將選擇的問題之 ID 儲存在剪貼簿中" + +-#: ../src/gnome_abrt/oops.glade.h:15 ++#: ../src/gnome_abrt/oops.glade.h:13 + msgid "_Filter" + msgstr "過濾(_F)" + +-#: ../src/gnome_abrt/oops.glade.h:16 ++#: ../src/gnome_abrt/oops.glade.h:14 + msgid "Show filter box" + msgstr "顯示過濾方塊" + +-#: ../src/gnome_abrt/oops.glade.h:17 ++#: ../src/gnome_abrt/oops.glade.h:15 + msgid "Name" + msgstr "名稱" + +-#: ../src/gnome_abrt/oops.glade.h:18 ++#: ../src/gnome_abrt/oops.glade.h:16 + msgid "Version" + msgstr "版本" + + #. Translators: A label for a date when the bug happened for the first time. Please keep this label short, below 156px if possible. +-#: ../src/gnome_abrt/oops.glade.h:20 ++#: ../src/gnome_abrt/oops.glade.h:18 + msgid "First Detected" + msgstr "第一次偵測到" + +-#: ../src/gnome_abrt/oops.glade.h:21 ../src/gnome_abrt/views.py:920 ++#: ../src/gnome_abrt/oops.glade.h:19 ../src/gnome_abrt/views.py:919 + msgid "Reported" + msgstr "已回報" + +-#: ../src/gnome_abrt/oops.glade.h:22 ++#: ../src/gnome_abrt/oops.glade.h:20 + msgid "No problems detected!" + msgstr "沒有偵測到問題!" + +-#: ../src/gnome_abrt/oops.glade.h:23 ++#: ../src/gnome_abrt/oops.glade.h:21 + msgid "No source selected!" + msgstr "未選擇來源!" + +-#: ../src/gnome_abrt/oops.glade.h:24 ++#: ../src/gnome_abrt/oops.glade.h:22 + msgid "No source" + msgstr "沒有來源" + +@@ -307,19 +311,19 @@ msgstr "行為錯誤" + msgid "Failed to load UI definition" + msgstr "載入 UI 定義失敗" + +-#: ../src/gnome_abrt/views.py:861 ++#: ../src/gnome_abrt/views.py:860 + msgid "Unexpected system error" + msgstr "未預期的系統錯誤" + +-#: ../src/gnome_abrt/views.py:863 ++#: ../src/gnome_abrt/views.py:862 + msgid "The system has encountered a problem and recovered." + msgstr "系統遭遇到問題,並從中恢復過來。" + +-#: ../src/gnome_abrt/views.py:866 ++#: ../src/gnome_abrt/views.py:865 + msgid "Fatal system failure" + msgstr "嚴重系統錯誤" + +-#: ../src/gnome_abrt/views.py:868 ++#: ../src/gnome_abrt/views.py:867 + msgid "The system has encountered a problem and could not continue." + msgstr "系統遭遇到問題,並且無法繼續。" + +@@ -333,35 +337,35 @@ msgstr "系統遭遇到問題,並且無法繼續。" + #. VMCore problem has been detected + #. AVC problem has been detected + #. Java problem has been detected +-#: ../src/gnome_abrt/views.py:882 ++#: ../src/gnome_abrt/views.py:881 + #, python-brace-format + msgid "{0} problem has been detected" + msgstr "找到 {0} 個問題" + +-#: ../src/gnome_abrt/views.py:886 ++#: ../src/gnome_abrt/views.py:885 + #, python-brace-format + msgid "{0} quit unexpectedly" + msgstr "{0} 未預期退出" + +-#: ../src/gnome_abrt/views.py:889 ++#: ../src/gnome_abrt/views.py:888 + msgid "The application encountered a problem and could not continue." + msgstr "應用程式遭遇到問題,並且無法繼續。" + + #. Translators: package name not available + #. Translators: package version not available +-#: ../src/gnome_abrt/views.py:893 ../src/gnome_abrt/views.py:896 ++#: ../src/gnome_abrt/views.py:892 ../src/gnome_abrt/views.py:895 + msgid "N/A" + msgstr "N/A" + +-#: ../src/gnome_abrt/views.py:923 ++#: ../src/gnome_abrt/views.py:922 + msgid "cannot be reported" + msgstr "無法回報" + +-#: ../src/gnome_abrt/views.py:928 ++#: ../src/gnome_abrt/views.py:927 + msgid "Reports" + msgstr "報告" + +-#: ../src/gnome_abrt/views.py:934 ++#: ../src/gnome_abrt/views.py:933 + msgid "" + "This problem has been reported, but a Bugzilla ticket has not been " + "opened. Our developers may need more information to fix the problem.\n" +@@ -375,17 +379,17 @@ msgstr "" + #. has been reported but we don't know where and when. + #. Probably a rare situation, usually if a problem is + #. reported we display a list of reports here. +-#: ../src/gnome_abrt/views.py:943 ++#: ../src/gnome_abrt/views.py:942 + msgid "yes" + msgstr "是" + + #. Translators: Displayed after 'Reported' if a problem + #. has not been reported. +-#: ../src/gnome_abrt/views.py:947 ++#: ../src/gnome_abrt/views.py:946 + msgid "no" + msgstr "無" + +-#: ../src/gnome_abrt/controller.py:78 ++#: ../src/gnome_abrt/controller.py:71 + msgid "" + "Failed to execute the requested action because of an error in new process " + "creation" +-- +2.17.1 + diff --git a/SOURCES/0005-Apply-the-new-packaging-guidelines.patch b/SOURCES/0005-Apply-the-new-packaging-guidelines.patch new file mode 100644 index 0000000..878d217 --- /dev/null +++ b/SOURCES/0005-Apply-the-new-packaging-guidelines.patch @@ -0,0 +1,46 @@ +From c5e51a8e4a6d36dc5550a5d5032427a9a2d2622c Mon Sep 17 00:00:00 2001 +From: Rafal Luzynski +Date: Thu, 26 Apr 2018 23:21:44 +0200 +Subject: [PATCH] Apply the new packaging guidelines + +Change appdata location according to the current guidelines: it should +be %{_datadir}/metainfo directory rather than %{_datadir}/appdata. + +Remove "Group:" tag according to the current guidelines. + +Closes: #185 +--- + gnome-abrt.spec.in | 7 +++++-- + src/Makefile.am | 2 +- + 2 files changed, 6 insertions(+), 3 deletions(-) + +diff --git a/src/Makefile.in b/src/Makefile.in +index bb0f07f..e61847a 100644 +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -395,7 +395,7 @@ top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + SUBDIRS = gnome_abrt + bin_SCRIPTS = gnome-abrt +-appdatadir = $(datadir)/appdata ++appdatadir = $(datadir)/metainfo + app_data_in_files = gnome-abrt.appdata.xml.in + appdata_DATA = $(app_data_in_files:.xml.in=.xml) + desktopdir = $(datadir)/applications + +diff --git a/src/Makefile.am b/src/Makefile.am +index 2b124f5..ccb02a1 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -4,7 +4,7 @@ bin_SCRIPTS=gnome-abrt + + @INTLTOOL_XML_RULE@ + +-appdatadir = $(datadir)/appdata ++appdatadir = $(datadir)/metainfo + app_data_in_files = gnome-abrt.appdata.xml.in + appdata_DATA = $(app_data_in_files:.xml.in=.xml) + +-- +2.17.1 + diff --git a/SOURCES/0007-pylint-fix-some-pylint-warnings.patch b/SOURCES/0007-pylint-fix-some-pylint-warnings.patch new file mode 100644 index 0000000..b5a6cd6 --- /dev/null +++ b/SOURCES/0007-pylint-fix-some-pylint-warnings.patch @@ -0,0 +1,158 @@ +From c8ae57408d8713f1b165f8da9f63bf55fb1427cc Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 31 May 2018 15:05:15 +0200 +Subject: [PATCH] pylint: fix some pylint warnings + +Signed-off-by: Matej Habrnal +--- + pylintrc | 2 +- + src/gnome_abrt/application.py | 2 +- + src/gnome_abrt/dbus_problems.py | 4 +--- + src/gnome_abrt/directory_problems.py | 4 ++-- + src/gnome_abrt/problems.py | 32 ++++++++-------------------- + src/gnome_abrt/views.py | 8 ++----- + 6 files changed, 16 insertions(+), 36 deletions(-) + +diff --git a/pylintrc b/pylintrc +index 934d7c0..0dc1c8e 100644 +--- a/pylintrc ++++ b/pylintrc +@@ -155,7 +155,7 @@ ignore-imports=no + [FORMAT] + + # Maximum number of characters on a single line. +-max-line-length=80 ++max-line-length=120 + + # Maximum number of lines in a module + max-module-lines=1000 +diff --git a/src/gnome_abrt/application.py b/src/gnome_abrt/application.py +index 3504b03..927262a 100644 +--- a/src/gnome_abrt/application.py ++++ b/src/gnome_abrt/application.py +@@ -16,7 +16,7 @@ + ## Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA + + import os +-import gnome_abrt.wrappers as wrappers ++from gnome_abrt import wrappers + + class Application(object): + +diff --git a/src/gnome_abrt/dbus_problems.py b/src/gnome_abrt/dbus_problems.py +index 89f092e..d6574aa 100644 +--- a/src/gnome_abrt/dbus_problems.py ++++ b/src/gnome_abrt/dbus_problems.py +@@ -22,9 +22,7 @@ import traceback + import dbus + from dbus.mainloop.glib import DBusGMainLoop + +-import gnome_abrt.problems as problems +-import gnome_abrt.config as config +-import gnome_abrt.errors as errors ++from gnome_abrt import problems, config, errors + from gnome_abrt.l10n import _ + + BUS_NAME = 'org.freedesktop.problems' +diff --git a/src/gnome_abrt/directory_problems.py b/src/gnome_abrt/directory_problems.py +index 02a06ed..3ec7fe5 100644 +--- a/src/gnome_abrt/directory_problems.py ++++ b/src/gnome_abrt/directory_problems.py +@@ -30,8 +30,8 @@ import pyinotify + from pyinotify import WatchManager, Notifier, ProcessEvent + + # gnome-abrt +-import gnome_abrt.problems as problems +-import gnome_abrt.errors as errors ++from gnome_abrt import problems ++from gnome_abrt import errors + from gnome_abrt.l10n import _ + + class INOTIFYGlibSource(GLib.Source): +diff --git a/src/gnome_abrt/problems.py b/src/gnome_abrt/problems.py +index fbde9ac..05a3fa7 100644 +--- a/src/gnome_abrt/problems.py ++++ b/src/gnome_abrt/problems.py +@@ -17,6 +17,7 @@ + + import datetime + import logging ++import re + + # gnome-abrt + import gnome_abrt.url +@@ -279,6 +280,7 @@ class Problem(object): + + def get_submission(self): + if not self.submission: ++ reg = re.compile(r'^(?P.*):\s*(?P\S*)=(?P.*)') + self.submission = [] + if self['reported_to']: + # Most common type of line in reported_to file +@@ -287,30 +289,14 @@ class Problem(object): + if not line: + continue + +- pfx_lst = [] +- i = 0 +- for i in range(0, len(line)): +- if line[i] == ':': +- break +- pfx_lst.append(line[i]) +- +- pfx = ''.join(pfx_lst) +- i += 1 +- +- for i in range(i, len(line)): +- if line[i] != ' ': +- break +- +- typ_lst = [] +- for i in range(i, len(line)): +- if line[i] == '=': +- break +- typ_lst.append(line[i]) +- +- typ = ''.join(typ_lst) +- i += 1 ++ parsed = reg.match(line) ++ if parsed: ++ pfx = parsed.group('pfx') ++ typ = parsed.group('typ') ++ data = parsed.group('data') ++ else: ++ continue + +- data = line[i:] + sbm = next((s for s in self.submission + if s.rtype == typ and s.name == pfx), None) + +diff --git a/src/gnome_abrt/views.py b/src/gnome_abrt/views.py +index ec7b211..1b62515 100644 +--- a/src/gnome_abrt/views.py ++++ b/src/gnome_abrt/views.py +@@ -40,12 +40,7 @@ from gi.repository import GLib + + import humanize + +-import gnome_abrt.problems as problems +-import gnome_abrt.config as config +-import gnome_abrt.wrappers as wrappers +-import gnome_abrt.errors as errors +-import gnome_abrt.desktop as desktop +-from gnome_abrt import GNOME_ABRT_UI_DIR ++from gnome_abrt import GNOME_ABRT_UI_DIR, problems, config, wrappers, errors, desktop + from gnome_abrt.tools import fancydate, smart_truncate, load_icon + from gnome_abrt.tools import set_icon_from_pixbuf_with_scale + from gnome_abrt.l10n import _, C_, GETTEXT_PROGNAME +@@ -1075,6 +1070,7 @@ _("This problem has been reported, but a Bugzilla ticket has not" + self._builder.lb_problems.select_row(problem_row) + self._builder.menu_problem_item.popup(None, None, + None, None, data.button, data.time) ++ return None + + def get_box_header_left_offset(self): + # Returns the offset of box_header_left relative to the main paned +-- +2.17.1 + diff --git a/SOURCES/0008-Fix-incorrect-parsing-of-reported_to-file.patch b/SOURCES/0008-Fix-incorrect-parsing-of-reported_to-file.patch new file mode 100644 index 0000000..d73d1ee --- /dev/null +++ b/SOURCES/0008-Fix-incorrect-parsing-of-reported_to-file.patch @@ -0,0 +1,39 @@ +From 36d381601a9823ed2c33e306959b974a050215c3 Mon Sep 17 00:00:00 2001 +From: Matej Marusak +Date: Fri, 13 Jul 2018 09:27:28 +0200 +Subject: [PATCH] Fix incorrect parsing of reported_to file + +Fixes BZ#1600809 + +Bug was introduced in commit 99578c5. +Adding lazy operator (?) makes sure, that first occurrences are found. +This did not work on following item: + Bugzilla: URL=https://bugzilla.redhat.com/show_bug.cgi?id=123456 +Without this fix, it was split as: + - Bugzilla: URL=https + - //bugzilla.redhat.com/show_bug.cgi + - id=123456 + +With this fix first ':' and '=' are found correctly. + +Signed-off-by: Matej Marusak +--- + src/gnome_abrt/problems.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/gnome_abrt/problems.py b/src/gnome_abrt/problems.py +index 05a3fa7..d9f579a 100644 +--- a/src/gnome_abrt/problems.py ++++ b/src/gnome_abrt/problems.py +@@ -280,7 +280,7 @@ class Problem(object): + + def get_submission(self): + if not self.submission: +- reg = re.compile(r'^(?P.*):\s*(?P\S*)=(?P.*)') ++ reg = re.compile(r'^(?P.*?):\s*(?P\S*?)=(?P.*)') + self.submission = [] + if self['reported_to']: + # Most common type of line in reported_to file +-- +2.17.1 + diff --git a/SOURCES/0010-pylint-R0205-Remove-explicit-object-inheritance.patch b/SOURCES/0010-pylint-R0205-Remove-explicit-object-inheritance.patch new file mode 100644 index 0000000..8aa5bf8 --- /dev/null +++ b/SOURCES/0010-pylint-R0205-Remove-explicit-object-inheritance.patch @@ -0,0 +1,246 @@ +From 301a5ca79ce3d738c08e4af0df686d16f5c95df3 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Tue, 17 Jul 2018 12:49:34 +0200 +Subject: [PATCH] pylint(R0205): Remove explicit object inheritance + +Classes in Python3 inherit from the object implicitly. + +Signed-off-by: Martin Kutlak +--- + src/gnome-abrt | 4 ++-- + src/gnome_abrt/application.py | 2 +- + src/gnome_abrt/config.py | 2 +- + src/gnome_abrt/controller.py.in | 2 +- + src/gnome_abrt/dbus_problems.py | 4 ++-- + src/gnome_abrt/directory_problems.py | 6 +++--- + src/gnome_abrt/problems.py | 8 ++++---- + src/gnome_abrt/url/gliburltitle.py | 4 ++-- + src/gnome_abrt/views.py | 10 +++++----- + 9 files changed, 21 insertions(+), 21 deletions(-) + +diff --git a/src/gnome-abrt b/src/gnome-abrt +index a99aecf..f193c96 100755 +--- a/src/gnome-abrt ++++ b/src/gnome-abrt +@@ -87,7 +87,7 @@ GNOME_ABRT_URL_POOL_CAPACITY = 10 + + + # because of https://bugzilla.gnome.org/show_bug.cgi?id=682331 +-class GtkAppDBUSImpl(object): ++class GtkAppDBUSImpl: + """A proxy for primary application + """ + +@@ -107,7 +107,7 @@ class GtkAppDBUSImpl(object): + """DBus service method accepting a new command line arguments + """ + +- class Arguments(object): ++ class Arguments: + """Adapter for Gtk class + """ + +diff --git a/src/gnome_abrt/application.py b/src/gnome_abrt/application.py +index 927262a..40a6f0c 100644 +--- a/src/gnome_abrt/application.py ++++ b/src/gnome_abrt/application.py +@@ -18,7 +18,7 @@ + import os + from gnome_abrt import wrappers + +-class Application(object): ++class Application: + + def __init__(self, executable, name=None, icon=None): + self.executable = executable or "N/A" +diff --git a/src/gnome_abrt/config.py b/src/gnome_abrt/config.py +index 94aea46..e5662de 100644 +--- a/src/gnome_abrt/config.py ++++ b/src/gnome_abrt/config.py +@@ -29,7 +29,7 @@ def singleton(cls): + return getinstance + + @singleton +-class Configuration(object): ++class Configuration: + + def __init__(self): + self.options = {} +diff --git a/src/gnome_abrt/controller.py.in b/src/gnome_abrt/controller.py.in +index 86db419..c2991ed 100644 +--- a/src/gnome_abrt/controller.py.in ++++ b/src/gnome_abrt/controller.py.in +@@ -24,7 +24,7 @@ import traceback + from gnome_abrt import errors + from gnome_abrt.l10n import _ + +-class Controller(object): ++class Controller: + + def __init__(self, sources, sigchld_assign=None): + self.sources = sources +diff --git a/src/gnome_abrt/dbus_problems.py b/src/gnome_abrt/dbus_problems.py +index d6574aa..4c584e7 100644 +--- a/src/gnome_abrt/dbus_problems.py ++++ b/src/gnome_abrt/dbus_problems.py +@@ -40,7 +40,7 @@ def get_foreign_problems_source(mainloop=None): + + class DBusProblemSource(problems.CachedSource): + +- class Driver(object): ++ class Driver: + """Handles differences in behaviour while working with different sets + of problems obtained from D-Bus service. + """ +@@ -198,7 +198,7 @@ class StandardProblems(DBusProblemSource.Driver): + def __init__(self, source): + super(StandardProblems, self).__init__(source) + +- class ConfigObserver(object): ++ class ConfigObserver: + def __init__(self, source): + self._source = source + +diff --git a/src/gnome_abrt/directory_problems.py b/src/gnome_abrt/directory_problems.py +index 3ec7fe5..96ddc72 100644 +--- a/src/gnome_abrt/directory_problems.py ++++ b/src/gnome_abrt/directory_problems.py +@@ -150,7 +150,7 @@ class INOTIFYSourceHandler(ProcessEvent): + .format(ex)) + + +-class INOTIFYWatcher(object): ++class INOTIFYWatcher: + + def __init__(self, source, directory, context): + # context is the instance variable because +@@ -219,7 +219,7 @@ _("You have probably reached inotify's limit on the number of watches in '{0}'." + "about changes in problem data happening outside of this application. This " + "event do not affect any other functionality.").format(self._directory)) + +-class NotInitializedDirectorySource(object): ++class NotInitializedDirectorySource: + + def __init__(self, parent): + self._parent = parent +@@ -245,7 +245,7 @@ class NotInitializedDirectorySource(object): + return True + + +-class InitializedDirectoryProblemSource(object): ++class InitializedDirectoryProblemSource: + + def __init__(self, parent, directory, context=None): + self._parent = parent +diff --git a/src/gnome_abrt/problems.py b/src/gnome_abrt/problems.py +index d9f579a..5285394 100644 +--- a/src/gnome_abrt/problems.py ++++ b/src/gnome_abrt/problems.py +@@ -26,7 +26,7 @@ from gnome_abrt.errors import (InvalidProblem, + UnavailableSource) + from gnome_abrt.l10n import _ + +-class ProblemSource(object): ++class ProblemSource: + NEW_PROBLEM = 0 + DELETED_PROBLEM = 1 + CHANGED_PROBLEM = 2 +@@ -64,13 +64,13 @@ class ProblemSource(object): + def refresh(self): + pass + +-class Problem(object): ++class Problem: + INITIAL_ELEMENTS = ['component', 'executable', 'cmdline', 'count', 'type', + 'last_occurrence', 'time', 'reason', 'pkg_arch', + 'pkg_epoch', 'pkg_name', 'pkg_release', 'pkg_version', + 'environ', 'pid'] + +- class Submission(object): ++ class Submission: + URL = "URL" + MSG = "MSG" + BTHASH = "BTHASH" +@@ -319,7 +319,7 @@ class MultipleSources(ProblemSource): + + self.sources = sources + +- class SourceObserver(object): ++ class SourceObserver: + def __init__(self, parent): + self.parent = parent + +diff --git a/src/gnome_abrt/url/gliburltitle.py b/src/gnome_abrt/url/gliburltitle.py +index 44c7a6c..e4cc0f9 100644 +--- a/src/gnome_abrt/url/gliburltitle.py ++++ b/src/gnome_abrt/url/gliburltitle.py +@@ -82,7 +82,7 @@ class GetURLTitleThreadSource(GLib.Source): + pass + + +-class GetURLTitleSourcePool(object): ++class GetURLTitleSourcePool: + """Pool for reducing number of running threads at time + """ + +@@ -115,7 +115,7 @@ class GetURLTitleSourcePool(object): + self._start_resolving(url, readycallback, userdata) + + +-class GetURLTitleSourceCache(object): ++class GetURLTitleSourceCache: + """Asynchronous cache for URL titles + """ + +diff --git a/src/gnome_abrt/views.py b/src/gnome_abrt/views.py +index 1b62515..a7eabb0 100644 +--- a/src/gnome_abrt/views.py ++++ b/src/gnome_abrt/views.py +@@ -55,7 +55,7 @@ def list_box_row_set_values(list_box_row, values): + return list_box_row.get_children()[0].set_values(values) + + +-class ProblemsFilter(object): ++class ProblemsFilter: + + def __init__(self, list_box, list_box_selection): + self._pattern = "" +@@ -201,7 +201,7 @@ def handle_problem_and_source_errors(func): + return wrapper_for_instance_function + + +-class ListBoxSelection(object): ++class ListBoxSelection: + + def __init__(self, list_box, selection_changed): + self._lb = list_box +@@ -288,7 +288,7 @@ class OopsWindow(Gtk.ApplicationWindow): + + _TITLE = _("Problem Reporting") + +- class OopsGtkBuilder(object): ++ class OopsGtkBuilder: + def __init__(self): + builder = None + # try to load the glade from git at first step +@@ -412,7 +412,7 @@ class OopsWindow(Gtk.ApplicationWindow): + return obj + + +- class SourceObserver(object): ++ class SourceObserver: + def __init__(self, wnd): + self.wnd = wnd + self._enabled = True +@@ -443,7 +443,7 @@ class OopsWindow(Gtk.ApplicationWindow): + self.wnd._disable_source(ex.source, ex.temporary) + + +- class OptionsObserver(object): ++ class OptionsObserver: + def __init__(self, wnd): + self.wnd = wnd + +-- +2.17.1 + diff --git a/SOURCES/0012-views-Allow-reporting-non-reportable-problems.patch b/SOURCES/0012-views-Allow-reporting-non-reportable-problems.patch new file mode 100644 index 0000000..d4cb58b --- /dev/null +++ b/SOURCES/0012-views-Allow-reporting-non-reportable-problems.patch @@ -0,0 +1,118 @@ +From 173d9435e04bc5af8b2ebea37df72c516c39bddd Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Thu, 16 Jan 2020 17:40:34 +0100 +Subject: [PATCH] views: Allow reporting non-reportable problems + +A bit of an oxymoron, but what can you do. Mostly targeted towards those +afflicted by warning taints. + +Resolves: rhbz#1791655 + +https://bugzilla.redhat.com/show_bug.cgi?id=1679314 +https://bugzilla.redhat.com/show_bug.cgi?id=1791655 +--- + src/gnome_abrt/controller.py.in | 10 ++++++-- + src/gnome_abrt/views.py | 41 +++++++++++++++++++++++++++++---- + 2 files changed, 45 insertions(+), 6 deletions(-) + +diff --git a/src/gnome_abrt/controller.py.in b/src/gnome_abrt/controller.py.in +index c2991ed..5060b89 100644 +--- a/src/gnome_abrt/controller.py.in ++++ b/src/gnome_abrt/controller.py.in +@@ -24,6 +24,9 @@ import traceback + from gnome_abrt import errors + from gnome_abrt.l10n import _ + ++import report ++ ++ + class Controller: + + def __init__(self, sources, sigchld_assign=None): +@@ -31,12 +34,15 @@ class Controller: + self.run_event_fn = self._first_event_run + self._sigchld_assign = sigchld_assign + +- def report(self, problem): ++ def report(self, problem, unsafe=False): + if not problem: + logging.error("BUG: Controller: Can't report None problem") + return + +- self.run_event_fn("report-gui", problem) ++ flags = 0 ++ if unsafe: ++ flags |= report.LIBREPORT_IGNORE_NOT_REPORTABLE ++ report.report_problem_in_dir(problem.problem_id, flags) + + def delete(self, problem): + if not problem: +diff --git a/src/gnome_abrt/views.py b/src/gnome_abrt/views.py +index a7eabb0..32f27a7 100644 +--- a/src/gnome_abrt/views.py ++++ b/src/gnome_abrt/views.py +@@ -840,8 +840,7 @@ class OopsWindow(Gtk.ApplicationWindow): + + sensitive_btn = problem is not None + self._builder.btn_delete.set_sensitive(sensitive_btn) +- self._builder.btn_report.set_sensitive( +- sensitive_btn and not problem['not-reportable']) ++ self._builder.btn_report.set_sensitive(sensitive_btn) + self._builder.vbx_links.foreach( + destroy_links, None) + self._builder.vbx_problem_messages.foreach( +@@ -939,6 +938,13 @@ _("This problem has been reported, but a Bugzilla ticket has not" + # Translators: Displayed after 'Reported' if a problem + # has not been reported. + self._builder.lbl_reported_value.set_text(_('no')) ++ ++ style_context = self._builder.btn_report.get_style_context() ++ ++ if problem['not-reportable']: ++ style_context.add_class('destructive-action') ++ else: ++ style_context.remove_class('destructive-action') + else: + if self._source is not None: + self._builder.nb_problem_layout.set_current_page(1) +@@ -998,8 +1004,35 @@ _("This problem has been reported, but a Bugzilla ticket has not" + @handle_problem_and_source_errors + def on_gac_report_activate(self, action): + selected = self._get_selected(self.lss_problems) +- if selected and not selected[0]['not-reportable']: +- self._controller.report(selected[0]) ++ if not selected: ++ return ++ ++ unsafe = False ++ ++ if selected[0]['not-reportable']: ++ dialog = Gtk.MessageDialog(self, ++ Gtk.DialogFlags.MODAL | Gtk.DialogFlags.DESTROY_WITH_PARENT, ++ Gtk.MessageType.QUESTION, ++ Gtk.ButtonsType.NONE, ++ _("This problem is marked as not reportable, thus reporting should only be forced if you know what it entails. Do you wish to continue?")) ++ button = Gtk.Button.new_with_label(_("No")) ++ ++ button.get_style_context().add_class("suggested-action") ++ button.show() ++ ++ dialog.add_action_widget(button, Gtk.ResponseType.NO) ++ dialog.add_button(_("Yes"), Gtk.ResponseType.YES) ++ ++ response = dialog.run() ++ ++ dialog.destroy() ++ ++ if response != Gtk.ResponseType.YES: ++ return ++ ++ unsafe = True ++ ++ self._controller.report(selected[0], unsafe) + + @handle_problem_and_source_errors + def on_se_problems_search_changed(self, entry): +-- +2.25.1 + diff --git a/SPECS/gnome-abrt.spec b/SPECS/gnome-abrt.spec new file mode 100644 index 0000000..ed8be49 --- /dev/null +++ b/SPECS/gnome-abrt.spec @@ -0,0 +1,608 @@ +# TODO: https://fedoraproject.org/wiki/Packaging:AutoProvidesAndRequiresFiltering +# rpmlint warns about private-shared-object-provides +# can't use filter because the package doesn't met any of the required criteria +# ! Noarch package ... caused by libreport wrappers shared library +# ! no binaries in $PATH ... caused by gnome-abrt python script in /usr/bin + +Name: gnome-abrt +Version: 1.2.6 + +Release: 6%{?dist} + +Summary: A utility for viewing problems that have occurred with the system + +License: GPLv2+ +URL: https://github.com/abrt/gnome-abrt +Source0: 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-Remove-Expert-mode-and-the-remaining-Analyze-code.patch +Patch0002: 0002-Mark-the-help-command-line-descriptions-for-translat.patch +Patch0003: 0003-Translation-updates.patch +Patch0004: 0004-Translation-updates.patch +Patch0005: 0005-Apply-the-new-packaging-guidelines.patch +# Patch0006: 0006-autogen-correctly-parse-buildrequires-from-spec-file.patch +Patch0007: 0007-pylint-fix-some-pylint-warnings.patch +Patch0008: 0008-Fix-incorrect-parsing-of-reported_to-file.patch +# Patch0009: 0009-spec-Fix-files-listed-twice.patch +Patch0010: 0010-pylint-R0205-Remove-explicit-object-inheritance.patch +# Patch0011: 0011-spec-Fix-python3-libreport-dependency.patch +Patch0012: 0012-views-Allow-reporting-non-reportable-problems.patch + +# git is need for '%%autosetup -S git' which automatically applies all the +# patches above. Please, be aware that the patches must be generated +# by 'git format-patch' +BuildRequires: git + +BuildRequires: intltool +BuildRequires: gettext +BuildRequires: libtool +BuildRequires: python3-devel +BuildRequires: desktop-file-utils +BuildRequires: asciidoc +BuildRequires: xmlto +BuildRequires: pygobject3-devel +BuildRequires: libreport-gtk-devel >= 2.6.0 +BuildRequires: python3-libreport +BuildRequires: abrt-gui-devel >= 2.6.0 +BuildRequires: gtk3-devel +BuildRequires: libX11-devel +BuildRequires: sed + +%if 0%{?fedora} +# 2015-11-12 : +# I temporarily disabled pylint after discussion with rkuska and kalev. pylint +# cannot be built for Python-3.5 and gnome-abrt uses it only for 'make check'. +%bcond_without pylint +BuildRequires: python3-six +BuildRequires: python3-inotify +BuildRequires: python3-gobject +BuildRequires: python3-dbus +BuildRequires: python3-humanize +%else +%bcond_with pylint +%endif + +%if %{with pylint} +BuildRequires: python3-pylint +%else +%define checkoption --with-nopylint +%endif + +Requires: python3-libreport +Requires: python3-inotify +Requires: python3-gobject +Requires: python3-dbus +Requires: xdg-utils +Requires: python3-humanize + +%description +A GNOME application allows users to browse through detected problems and +provides them with convenient way for managing these problems. + + +%prep +# http://www.rpm.org/wiki/PackagerDocs/Autosetup +# Default '__scm_apply_git' is 'git apply && git commit' but this workflow +# doesn't allow us to create a new file within a patch, so we have to use +# 'git am' (see /usr/lib/rpm/macros for more details) +%define __scm_apply_git(qp:m:) %{__git} am +%autosetup -S git + + +%build +autoconf +%configure %{?checkoption} +make + + +%install +make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} +%find_lang %{name} + +# remove all .la and .a files +find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f + +desktop-file-install \ + --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ + --delete-original \ + ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop + +# Switch hardcoded python3 shebangs into the %%{__python3} macro +sed -i '1s=^#!/usr/bin/python3\($\|\s\)=#!%{__python3}\1=' \ + %{buildroot}%{_bindir}/gnome-abrt + +%check +%if %{with pylint} +make check +%endif + + +%files -f %{name}.lang +%doc COPYING README.md +%{python3_sitearch}/gnome_abrt +%{_datadir}/%{name} +%{_bindir}/%{name} +%{_datadir}/applications/* +%{_datadir}/metainfo/* +%{_mandir}/man1/%{name}.1* +%{_datadir}/icons/hicolor/*/apps/* +%{_datadir}/icons/hicolor/*/status/* + + +%changelog +* Tue Mar 10 2020 Ernestas Kulik - 1.2.6-6 +- Add patch for rhbz#1791655 + +* Tue Jul 17 2018 Matej Habrnal - 1.2.6-5 +- pylint(R0205): Remove explicit object inheritance +- Fix incorrect parsing of reported_to file +- Apply the new packaging guidelines +- Mark the `--help' command line descriptions for translation +- Remove Expert mode and the remaining Analyze code + +* Mon Jul 16 2018 Matej Habrnal - 1.2.6-4 +- Switch hardcoded python3 shebangs into the %%{__python3} + +* Wed Feb 07 2018 Fedora Release Engineering - 1.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Jan 06 2018 Igor Gnatenko - 1.2.6-2 +- Remove obsolete scriptlets + +* Thu Nov 16 2017 Julius Milan 1.2.6-1 +- Translation updates +- Satisfy pylint v1.7.1 warnings +- pylintrc: disable pylint no-else-return warnings +- Add fur, kk, nn languages into LINGUAS + +* Wed Aug 02 2017 Fedora Release Engineering - 1.2.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Jul 12 2017 Rafal Luzynski 1.2.5-4 +- New translations: Friulian, Kazakh, Norwegian Nynorsk +- Translation updates: Dutch, Finnish, Marathi + +* Fri Feb 10 2017 Fedora Release Engineering - 1.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 1.2.5-2 +- Rebuild for Python 3.6 + +* Mon Oct 31 2016 Rafal Luzynski 1.2.5-1 +- Translation updates +- Fix some small issues to please pylint +- Fix padding of the list items +- Update the project URL + +* Tue Jul 19 2016 Fedora Release Engineering - 1.2.4-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Tue Jun 28 2016 Rafal Luzynski 1.2.4-2 +- Translation updates (Albanian) +- Resolves: #1347951 + +* Tue Jun 07 2016 Rafal Luzynski 1.2.4-1 +- Translation updates (Russian, Slovak) +- Add new translation languages - Albanian +- One more fix for the format of a package version +- Align the header buttons position to the sidebar size + +* Wed Apr 13 2016 Rafal Luzynski 1.2.3-3 +- Correct format of the package version +- Translation updates + +* Fri Apr 08 2016 Rafal Luzynski 1.2.3-2 +- Translation updates + +* Wed Mar 23 2016 Jakub Filak 1.2.3-1 +- Translation updates +- Let main title of the crash wrap +- Label all kernel oops problems with "System" +- Disambiguate the word "System" +- Use context gettext +- Reword "Detected" to "First Detected" +- Use "Problem Reporting" as the program name in the About box +- Remove "Report problem with ABRT" +- Fix dim-label being applied to proper app icons +- Make "Select" button unsensitive when list is empty +- Make titlebar blue in selection mode +- Use dim-label style, not hard-coded colours for labels +- Remove "ABRT Configuration" dialogue +- Add search button +- Add more keywords to .desktop + +* Thu Feb 18 2016 Jakub Filak - 1.2.2-1 +- Translation updates +- Fix the plural/singular translations for fancydate -Rafal Luzynski +- Details pane: new design - Rafal Luzynski + +* Wed Feb 03 2016 Fedora Release Engineering - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Dec 18 2015 Jan Beran - 1.2.1-2 +- Do not pass None to function expecting str object +- Add kudos to the AppData file +- Problem type included in the problem list: Rafal Luzynski +- Scroll whole details panel instead of its single widgets: Rafal Luzynski +- Fix broken build caused by pylint warning + +* Thu Nov 19 2015 Jakub Filak - 1.2.1-1 +- HTMLParseError replaced with generic Exception: Francesco Frassinelli +- Fix handling of the singular cases: Rafal Luzynski +- Don't scroll the sidebar horizontally: Rafal Luzynski +- Show HiDPI icons on HiDPI screens: Rafal Luzynski +- Get rid of the Gtk3 module loading warning +- Translation updates +- Resolves: #1283365 + +* Thu Nov 12 2015 Jakub Filak - 1.2.0-9 +- Fix build with Python 3.5 + +* Thu Nov 12 2015 Jakub Filak - 1.2.0-8 +- Temporarily stop using pylint and turn off 'make check' +- Rebuilt for Python3.5 rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 1.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Nov 6 2015 Jakub Filak - 1.2.0-6 +- Rebuilt for Python3.5 rebuild + +* Fri Aug 14 2015 Matej Habrnal - 1.2.0-5 +- Correct testing of return values from ABRT D-Bus API wrrapper + +* Mon Jul 13 2015 Jakub Filak - 1.2.0-4 +- Fix loading applicaton icons +- Fix an exception when searching for a bug ID +- Resolves: #1242080 + +* Thu Jun 18 2015 Matej Habrnal - 1.2.0-3 +- Use UTF-8 encoding when working with user files +- Remove the Details button from the top bar in non-GNOME desktops + +* Wed Jun 17 2015 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Jun 09 2015 Jakub Filak 1.2.0-1 +- Enabled the Details also for the System problems +- Do not crash in the testing of availabitlity of XServer +- Remove a debug print introduced with port to Python3 +- Fix 'Open problem's data directory' +- Quit Application on Ctrl+Q +- Translation updates +- Resolves: #1188002 + +* Mon May 11 2015 Matej Habrnal - 1.1.2-2 +- Translations update + +* Tue May 05 2015 Matej Habrnal - 1.1.2-1 +- Add symbolic icon +- Use own window header also in GNOME Classic +- Let the theme handle the colour in the problems list +- Remove border's custom style in the problems list +- Resolves: #1193656 + +* Thu Apr 09 2015 Jakub Filak - 1.1.1-1 +- Several bug fixes + +* Tue Mar 17 2015 Jakub Filak - 1.1.0-2 +- Fix a crash caused by i18n +- Fix a crash caused by problems without environment file +- Resolves: #1204524 + +* Tue Mar 17 2015 Jakub Filak - 1.1.0-1 +- Switch to Python3 +- Translation updates +- Search by Bug Tracker ID +- Always show an icon for problems +- Try to use environment to find the application +- Polished look + +* Mon Oct 13 2014 Jakub Filak - 1.0.0-1 +- New upstream release with updated look & feel + +* Sat Aug 16 2014 Fedora Release Engineering - 0.3.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Tue Jul 22 2014 Jakub Filak - 0.3.7-4 +- Teach the GUI to understand the Exec key format +- Put "About" and "Quit" into a section +- Do not close the report dialog with the main window +- Wrap words in "Report problem with ABRT" dialogue + +* Tue Jul 15 2014 Jakub Filak - 0.3.7-3 +- Properly handle UTF-8 problem filter input (apply the patch) + +* Mon Jun 23 2014 Jakub Filak - 0.3.7-2 +- Properly handle UTF-8 problem filter input + +* Wed Jun 11 2014 Jakub Filak 0.3.7-1 +- Fix XDG_RUNTIME_DIR not set messages by creating one +- Handle UTF-8 problem filter input +- Disable "no-member" check in pylintrc +- Fix issues uncovered by a newer version of pylint +- Do not crash in case of a DBus timeout +- Fix too long line +- Ignore problems without 'type' element +- Resolves: #1107429 + +* Sat Jun 07 2014 Fedora Release Engineering - 0.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed Mar 05 2014 Jakub Filak 0.3.6-1 +- Translation updates +- Merge pull request #51 from abrt/more_visual +- Use human readable type string everywhere +- Merge pull request #50 from abrt/visuals +- Display C/C++ instead of CCpp +- Truncate possibly long component name to 40 chars. +- Disable horizontal scrollbar on problem list +- Right-alignment of date entries +- Initialize gnome_abrt module before importing its submodules + +* Mon Jan 13 2014 Jakub Filak 0.3.5-1 +- Do not crash when a FileIcon cant be loaded +- Enable multiple problems selection +- Fix a typo in appdata - +- Update translations + +* Thu Dec 19 2013 Jakub Filak 0.3.4-1 +- Do not use deprecated GObject API +- Make gnome-abrt compatible with Python GObject < 3.7.2 +- Do not fail if there is no Problem D-Bus service +- Make all labels selectable +- Run xdg-open for problem directory nonblocking +- Resolves: #1043025 + +* Wed Dec 18 2013 Jakub Filak 0.3.3-3 +- Fix translations + +* Mon Nov 04 2013 Jakub Filak 0.3.3-2 +- Expand list of problems +- Resolves: #1025308 + +* Sat Oct 26 2013 Jakub Filak 0.3.3-1 +- Make problem list resizable +- Make info about Reported state of problem more clear +- Less confusing message about missing Bugzilla ticket +- Resolves: #1018285 + +* Fri Oct 04 2013 Jakub Filak 0.3.2-1 +- Fix a bug in SIGCHLD handler causing 100% CPU usage +- Show "yes" in Reported field only if no URL is available +- Load only the most recent reported to value +- Check if Application has valid name in filter fn +- Fix issues found by new pylint +- Resolves: #1009189, #1015609 + +* Thu Sep 12 2013 Jakub Filak 0.3.1-1 +- Improve user experience +- Make About dialog transient for the main window +- Add AppData file +- Ship the 256x256 icon in the right place +- Recover from fork errors +- Add ABRT configure application menu +- Use absolute path in python shebang +- Recover from invalid time stamp values +- Use wrapped text for the bug report link +- Resolves: #1004276 + +* Fri Jul 26 2013 Jakub Filak 0.3.0-1 +- Do not include url files twice +- Get rid of Stock Items usage +- Do not remove invalid problems while sorting the list +- Check if X display can be opened +- Fix a condition in the source changed notification handler +- Update Translations +- Skip inotify events for sub folders in dump location watcher +- Use GLib.io_add_watch() instead of IOChanell.add_watch() +- Fix a typo in macro name +- Remove shebang from non-executable scripts +- Remember missing elements and load them only once +- Download more problem elements in a single D-Bus call +- Improve data caching +- Display two sets of problems (My/System) +- Fix typo in dbus error message +- Don't crash if a new directory problem is invalid + +* Mon May 06 2013 Jakub Filak 0.2.12-3 +- Disable downloading of HTML titles + +* Mon May 06 2013 Jakub Filak 0.2.12-2 +- Fix a wrong path in contoller.py + +* Fri May 03 2013 Jakub Filak 0.2.12-1 +- Use 'N/A' instead of ?? +- Use package name is neither component nor executable items are available +- Don't try to select a problem if the list is empty +- Catch InvalidProblem exception in sort function +- Handle DBus initialization errors gracefully +- Show HTML titles of URLs from reported_to element +- Updated translation +- Continue in handling of SIGCHLD after the first one is handled +- Fix two comma splices +- Fix wrong dialog flag names + +* Mon Apr 22 2013 Jakub Filak 0.2.11-1 +- Enable pylint check only on Fedora +- Fix bogus dates in chagelog +- Introduce expert mode and show 'Analyze' button in that mode +- Use last occurrence item for problems sorting +- Fix broken keyboard shortcuts +- Fix missing space typo - Martin Milata +- Compare all DesktopEntry.*() return values to None +- Display 'component' name instead of 'executable' if desktop file is missing +- Do not show scrollbar for long links +- Allow to disable pylint check in configure.ac +- Move manpage to volume 1 - Chris Lockfort +- Move gnome_abrt module check to module's Makefile +- Disable 'Interface not implemented' pylint warning +- Configure pylint to produce parseable output + +* Tue Apr 9 2013 Jakub Filak 0.2.10-2 +- Make check only on fedora + +* Wed Mar 27 2013 Jakub Filak 0.2.10-1 +- Add the report dialog to the menu +- Add 'Report problem with ABRT' dialog +- Add VERSION and PACKAGE attributes to gnome_abrt module +- Rename attribute in errors.InvalidProblem +- Use IOChannel approach in order to make signal handling synchronous +- Add all python Requires to BuildRequires because of pylint +- Replace GNU style make pattern rules by implicit rules +- Remove left-over RELEASE varible from configure.ac +- Recover from DBus errors while sending command line +- Catch more exceptions and handle them correctly +- Add pylint check and fix problems uncoverend by pylint +- Filter out empyt strings from splitted cmdline +- Fix sytanx error +- Change the label "No oopses" to "No problems detected" +- Get rid of scrollbar around the text on the bottom of window in default size +- Fix appearance of scrolled widgets to no longer have white background +- Remove leftover shebang from non-executable script + +* Mon Mar 18 2013 Jakub Filak 0.2.9-1 +- Truncate long texts with ellipsis instead of auto-adjusting of window width +- Add a popopup menu for list of problems +- Use executable's basename as an application name instead of the full path +- Remove invalid problems from GUI tree view list +- Remove invalid problems from the dbus cache +- Robustize the processing of newly occurred problems +- Remove a left-over usage of the window member in OopsApplication +- Handle reaching inotify max watches better +- Update translation +- Don't allow reporting if the problem is not reportable +- Suggest reporting a bug if it wasn't reported yet +- Simplify the glade file and add a widget for messages +- Refactorize the function rendering a problem data +- A workaround for the bug in remote GtkApplications +- Allow only a single instance of gnome-abrt +- Fix bugs in main window in handler of configuration updates +- Resolves: #919796, #922656, #920417 + +* Mon Feb 25 2013 Jakub Filak 0.2.8-1 +- Try harder when looking for icon and don't cache weak results +- Make controller more robust against invalid arguments +- Check return value of the get selection function +- Require correct version of libreport +- Return an empty list instead of None from OopsWindow.get_selected() +- Return an empty list instead of None from get_problems() in case of DBus error +- Get rid of unnecessary variable from the directory source +- Add a cmd line argument for selected problem id + +* Fri Feb 08 2013 Jakub Filak - 0.2.7-1 +- Fix failure in processing of dump directories from user's home +- Resolves: #908712 + +* Tue Jan 08 2013 Jakub Filak - 0.2.6-1 +- Require libreport version 2.0.20 and greater +- Use DD api correctly +- Reflect changes in libreport +- Resolves: #890357 + +* Wed Nov 28 2012 Jakub Filak - 0.2.5-1 +- Add licenses to all files +- Refresh view's source if InvalidProblem exception is caught during GUI update +- Properly handle removal of the first and the last problem from the list +- Use right tree model in searching for problems +- Use theme backround color as background for the link buttons +- Make the links to servers less moving +- Keep user's selection even if a source has changed +- Destroy abrt-handle-event zombies + +* Mon Nov 12 2012 Jakub Filak - 0.2.4-1 +- Fix label fields size +- Assure ownership of reported problem +- Remove unnecessary GtkEventBox +- Fix appearance of link button widget to no longer have a white background +- Update translations + +* Fri Oct 05 2012 Jakub Filak - 0.2.3-1 +- Generate version +- Add GNOME3 application menu +- Use correct D-Bus path to listen on for Crash signal +- Make path to abrt-handle-event configurable +- Fix a bug in running of subprocesses +- Refactorize directory problems implementation +- Don't print weired debug message +- Don't show the 'reconnecting to dbus' warning +- Don't show new root's crashes by default +- Fix indentation + +* Fri Sep 21 2012 Jakub Filak - 0.2.2-1 +- Lazy initialization of directory source +- Don't utilize CPU for 99% +- Code refactorization +- Add translation from the ABRT project +- Properly log exceptions +- Delete directory problems marked as invalid after refresh in inotify handler +- Declare directory problems deleted if its directory doesn't exist +- Fix indentation bug in icon look up algorithm +- Add --verbose command line argument +- Add directory name to error messages + +* Mon Sep 17 2012 Jakub Filak - 0.2.1-4 +- Fix a problem with desktop items without icons +- A bit better handling of uncaght exceptions + +* Mon Sep 17 2012 Jakub Filak - 0.2.1-3 +- Add cs and et translations + +* Fri Sep 14 2012 Jakub Filak - 0.2.1-2 +- Fixed problem with selection of problem after start up +- Corrected application icon look up algorithm +- Fixed problem with missing problems directory + +* Fri Sep 14 2012 Jakub Filak - 0.2.1-1 +- Detail button replaced by list of reported_to links +- Improved look (margins, icons, wider window by default) +- Implemented multiple delete +- Changed window tiple +- Double click and keyboard shortcuts + +* Thu Sep 06 2012 Jakub Filak - 0.2-9 +- Remove noarch because of binary wrappers +- Added support for adjusting libreport preferences + +* Tue Aug 28 2012 Jakub Filak - 0.2-8 +- Take ownership of all installed directories +- Correct paths to translated files + +* Mon Aug 27 2012 Jakub Filak - 0.2-7 +- Dropped versions from requires +- Simplified spec +- Removed pylint check from configure.ac +- Whitespace cleanup (rmarko@redhat.com) + +* Fri Aug 24 2012 Jakub Filak - 0.2-6 +- Use own icons set + +* Fri Aug 24 2012 Jakub Filak - 0.2-5 +- Reorganize source files +- Get rid of all rpmlint complaints + +* Thu Aug 23 2012 Jakub Filak - 0.2-4 +- Update GUI on various signals (new problem, problem changed, etc.) +- Sort problems by time in descending order +- Correct internationalization in date string generator + +* Wed Aug 15 2012 Jakub Filak - 0.2-3 +- Reconnect to DBus bus +- Default values for missing items +- Correct field for 'is_reported' flag + +* Wed Aug 15 2012 Jakub Filak - 0.2-2 +- Add missing files + +* Wed Aug 15 2012 Jakub Filak - 0.2-1 +- Problems filtering +- Errors handling +- Localization support + +* Mon Aug 13 2012 Jakub Filak - 0.1-1 +- Initial version